X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=docs.js;h=8ff52d4e907dad4634d35c3dce10e805cfd7a3c9;hp=4cc2730a8b14cc6b173dd528077460e3d1420940;hb=10845623bdb15938ba76228c9adff46e5cca1560;hpb=eba1efa5ffedd094c77bb81a7009aa13a058a194 diff --git a/docs.js b/docs.js index 4cc2730..8ff52d4 100644 --- a/docs.js +++ b/docs.js @@ -10,9 +10,12 @@ XObject = imports.XObject.XObject; File = imports.File.File; console = imports.console.console; -NameSpace = imports.Introspect.NameSpace.NameSpace; Template = imports.JSDOC.Template.Template; +NameSpace = imports.Introspect.NameSpace.NameSpace; +Link = = imports.Introspect.Link.Link; + + var outputdir = Seed.argv[2]; @@ -53,9 +56,18 @@ File.list(__script_path__ + '/templates/').forEach(function(f) { } langs.push({ name : f, - cls_template : new Template(__script_path__ + '/templates/' + f + '/class.html'), - cls_ix_template : new Template(__script_path__ + '/templates/' + f + '/class_ix.html'), - reference_template : new Template(__script_path__ + '/templates/' + f + '/references.html'), + cls_template : new Template( { + templateFile : __script_path__ + '/templates/' + f + '/class.html', + Link : Link // links might be specific to languages.. + }), + cls_ix_template : new Template( { + templateFile : __script_path__ + '/templates/' + f + '/class_ix.html', + Link : Link// links might be specific to languages.. + }), + reference_template : new Template( + templateFile : __script_path__ + '/templates/' + f + '/references.html', + Link : Link// links might be specific to languages.. + }), }); }); @@ -162,7 +174,10 @@ langs.forEach(function(lang) { // set up index and resources. langs.forEach(function(lang) { - var ix_template = new Template(__script_path__ + '/templates/' + lang.name + '/index.html'); + var ix_template = new Template({ + templateFile : __script_path__ + '/templates/' + lang.name + '/index.html', + Link : Link, // lang specifc? + }); Gio.simple_write(outputdir + '/' + lang.name + '/index.html', ix_template.process(ns_idx)); File.silentRecursiveCopy(__script_path__ + '/templates/resources/', outputdir + '/' lang.name , Gio.FileCopyFlags.OVERWRITE); }); \ No newline at end of file