2015-02-26 18:38:12 -05:00
|
|
|
require('../../tools/transpiler/index.js').init();
|
|
|
|
|
2014-12-04 09:02:03 -05:00
|
|
|
var Package = require('dgeni').Package;
|
|
|
|
var jsdocPackage = require('dgeni-packages/jsdoc');
|
|
|
|
var nunjucksPackage = require('dgeni-packages/nunjucks');
|
|
|
|
var path = require('canonical-path');
|
|
|
|
|
|
|
|
var PARTIAL_PATH = 'partials';
|
|
|
|
var MODULES_DOCS_PATH = PARTIAL_PATH + '/modules';
|
|
|
|
var GUIDES_PATH = PARTIAL_PATH + '/guides';
|
|
|
|
|
|
|
|
// Define the dgeni package for generating the docs
|
|
|
|
module.exports = new Package('angular', [jsdocPackage, nunjucksPackage])
|
|
|
|
|
|
|
|
// Register the services and file readers
|
2015-03-17 12:41:54 -04:00
|
|
|
.factory(require('./services/modules'))
|
2014-12-04 09:02:03 -05:00
|
|
|
.factory(require('./services/atParser'))
|
|
|
|
.factory(require('./services/getJSDocComment'))
|
2014-12-06 06:25:17 -05:00
|
|
|
.factory(require('./services/SourceFile'))
|
|
|
|
.factory(require('./services/TraceurParser'))
|
|
|
|
.factory(require('./services/traceurOptions'))
|
|
|
|
.factory(require('./services/ParseTreeVisitor'))
|
|
|
|
.factory(require('./services/AttachCommentTreeVisitor'))
|
2014-12-04 09:02:03 -05:00
|
|
|
.factory(require('./services/ExportTreeVisitor'))
|
2014-12-06 06:25:17 -05:00
|
|
|
|
2014-12-04 09:02:03 -05:00
|
|
|
.factory(require('./readers/atScript'))
|
|
|
|
.factory(require('./readers/ngdoc'))
|
|
|
|
|
2015-03-19 10:48:47 -04:00
|
|
|
.factory('EXPORT_DOC_TYPES', function() {
|
|
|
|
return [
|
|
|
|
'class',
|
|
|
|
'function',
|
|
|
|
'var',
|
|
|
|
'const'
|
|
|
|
];
|
|
|
|
})
|
|
|
|
|
2014-12-04 09:02:03 -05:00
|
|
|
|
|
|
|
// Register the processors
|
2015-04-10 06:45:02 -04:00
|
|
|
.processor(require('./processors/captureModuleExports'))
|
|
|
|
.processor(require('./processors/captureClassMembers'))
|
|
|
|
.processor(require('./processors/captureModuleDocs'))
|
|
|
|
.processor(require('./processors/attachModuleDocs'))
|
|
|
|
.processor(require('./processors/cloneExportedFromDocs'))
|
2014-12-04 09:02:03 -05:00
|
|
|
.processor(require('./processors/generateNavigationDoc'))
|
2015-02-17 03:08:24 -05:00
|
|
|
.processor(require('./processors/extractTitleFromGuides'))
|
2015-03-31 17:12:34 -04:00
|
|
|
.processor(require('./processors/createOverviewDump'))
|
2014-12-04 09:02:03 -05:00
|
|
|
|
2015-04-10 06:45:02 -04:00
|
|
|
|
2014-12-04 09:02:03 -05:00
|
|
|
// Configure the log service
|
|
|
|
.config(function(log) {
|
2015-05-07 05:26:23 -04:00
|
|
|
log.level = 'warn';
|
2014-12-04 09:02:03 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
// Configure file reading
|
|
|
|
.config(function(readFilesProcessor, atScriptFileReader, ngdocFileReader) {
|
|
|
|
readFilesProcessor.fileReaders = [atScriptFileReader, ngdocFileReader];
|
|
|
|
readFilesProcessor.basePath = path.resolve(__dirname, '../..');
|
|
|
|
readFilesProcessor.sourceFiles = [
|
2015-03-17 12:41:54 -04:00
|
|
|
{ include: 'modules/*/*.js', basePath: 'modules' },
|
2014-12-04 09:02:03 -05:00
|
|
|
{ include: 'modules/*/src/**/*.js', basePath: 'modules' },
|
2015-04-18 03:35:38 -04:00
|
|
|
{ include: 'modules/*/*.es6', basePath: 'modules' },
|
|
|
|
{ include: 'modules/*/src/**/*.es6', basePath: 'modules' },
|
2015-05-07 05:26:23 -04:00
|
|
|
{ include: 'modules/*/*.ts', basePath: 'modules' },
|
|
|
|
{ include: 'modules/*/src/**/*.ts', basePath: 'modules' },
|
2014-12-04 09:02:03 -05:00
|
|
|
{ include: 'modules/*/docs/**/*.md', basePath: 'modules' },
|
|
|
|
{ include: 'docs/content/**/*.md', basePath: 'docs/content' }
|
|
|
|
];
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2015-04-10 06:45:02 -04:00
|
|
|
.config(function(parseTagsProcessor, getInjectables) {
|
|
|
|
parseTagsProcessor.tagDefinitions.push(require('./tag-defs/public'));
|
2015-04-14 15:24:07 -04:00
|
|
|
parseTagsProcessor.tagDefinitions.push(require('./tag-defs/private'));
|
2015-04-10 06:45:02 -04:00
|
|
|
parseTagsProcessor.tagDefinitions.push(require('./tag-defs/exportedAs'));
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2014-12-04 09:02:03 -05:00
|
|
|
// Configure file writing
|
|
|
|
.config(function(writeFilesProcessor) {
|
2014-12-05 19:26:30 -05:00
|
|
|
writeFilesProcessor.outputFolder = 'dist/docs';
|
2014-12-04 09:02:03 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
// Configure rendering
|
|
|
|
.config(function(templateFinder, templateEngine) {
|
|
|
|
|
|
|
|
// Nunjucks and Angular conflict in their template bindings so change Nunjucks
|
|
|
|
templateEngine.config.tags = {
|
|
|
|
variableStart: '{$',
|
|
|
|
variableEnd: '$}'
|
|
|
|
};
|
|
|
|
|
|
|
|
templateFinder.templateFolders
|
|
|
|
.unshift(path.resolve(__dirname, 'templates'));
|
|
|
|
|
|
|
|
templateFinder.templatePatterns = [
|
|
|
|
'${ doc.template }',
|
|
|
|
'${ doc.id }.${ doc.docType }.template.html',
|
|
|
|
'${ doc.id }.template.html',
|
|
|
|
'${ doc.docType }.template.html',
|
|
|
|
'common.template.html'
|
|
|
|
];
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
// Configure ids and paths
|
2015-03-19 10:48:47 -04:00
|
|
|
.config(function(computeIdsProcessor, computePathsProcessor, EXPORT_DOC_TYPES) {
|
2014-12-04 09:02:03 -05:00
|
|
|
|
|
|
|
computeIdsProcessor.idTemplates.push({
|
2015-03-19 10:48:47 -04:00
|
|
|
docTypes: EXPORT_DOC_TYPES,
|
2014-12-04 09:02:03 -05:00
|
|
|
idTemplate: '${moduleDoc.id}.${name}',
|
2015-04-17 08:50:04 -04:00
|
|
|
getAliases: function(doc) { return [doc.id, doc.name]; }
|
2014-12-04 09:02:03 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
computeIdsProcessor.idTemplates.push({
|
|
|
|
docTypes: ['member'],
|
|
|
|
idTemplate: '${classDoc.id}.${name}',
|
|
|
|
getAliases: function(doc) { return [doc.id]; }
|
|
|
|
});
|
|
|
|
|
|
|
|
computeIdsProcessor.idTemplates.push({
|
|
|
|
docTypes: ['guide'],
|
|
|
|
getId: function(doc) {
|
|
|
|
return doc.fileInfo.relativePath
|
|
|
|
// path should be relative to `modules` folder
|
|
|
|
.replace(/.*\/?modules\//, '')
|
|
|
|
// path should not include `/docs/`
|
|
|
|
.replace(/\/docs\//, '/')
|
|
|
|
// path should not have a suffix
|
|
|
|
.replace(/\.\w*$/, '');
|
|
|
|
},
|
|
|
|
getAliases: function(doc) { return [doc.id]; }
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
computePathsProcessor.pathTemplates.push({
|
|
|
|
docTypes: ['module'],
|
|
|
|
pathTemplate: '${id}',
|
|
|
|
outputPathTemplate: MODULES_DOCS_PATH + '/${id}/index.html'
|
|
|
|
});
|
|
|
|
|
|
|
|
computePathsProcessor.pathTemplates.push({
|
2015-03-19 10:48:47 -04:00
|
|
|
docTypes: EXPORT_DOC_TYPES,
|
2014-12-04 09:02:03 -05:00
|
|
|
pathTemplate: '${moduleDoc.path}/${name}',
|
|
|
|
outputPathTemplate: MODULES_DOCS_PATH + '/${path}/index.html'
|
|
|
|
});
|
|
|
|
|
|
|
|
computePathsProcessor.pathTemplates.push({
|
|
|
|
docTypes: ['member'],
|
|
|
|
pathTemplate: '${classDoc.path}/${name}',
|
|
|
|
getOutputPath: function() {} // These docs are not written to their own file, instead they are part of their class doc
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
computePathsProcessor.pathTemplates.push({
|
|
|
|
docTypes: ['guide'],
|
|
|
|
pathTemplate: '${id}',
|
|
|
|
outputPathTemplate: GUIDES_PATH + '/${id}.html'
|
|
|
|
});
|
2015-03-26 04:20:43 -04:00
|
|
|
});
|