From d7a73e41eddf3b8f06b87535c5ba6cc3196cbffd Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 20 Feb 2014 10:57:40 +0000 Subject: chore(doc-gen): add formatted error messages to error pages This got missed in the doc migration: When there is an error in an Angular app, extra information is placed in the URL, which can be used by the docs application to display a more useful message. This fix adds that back in. The error message templates are extracted by the minerr tool during build and put into the errors.json file. The errors-doc processor will load this up and attach these message templates to the error docs. The display of these templates was already in place, via the errorDisplay directive in docs/app/js/errors.js. (Also, moved the error.template.html file into the angular.js repository from the dgeni-packages repository as this is specific to the angular.js project and all the other error related stuff is in here. Finally, also, added an e2e test that checks that minerr formatted messages are displayed correctly. Closes #6363 --- docs/docs.config.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'docs/docs.config.js') diff --git a/docs/docs.config.js b/docs/docs.config.js index 536728fb..afe982fd 100644 --- a/docs/docs.config.js +++ b/docs/docs.config.js @@ -31,6 +31,9 @@ module.exports = function(config) { }); config.set('processing.examples.dependencyPath', '../../..'); + + config.set('processing.errors.minerrInfoPath', path.resolve(basePath, '../build/errors.json')); + config.set('rendering.outputFolder', '../build/docs'); config.set('logging.level', 'info'); -- cgit v1.2.3