X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=docs.js;h=4586039be1f31d94e02121cf5f51138fa1fb965c;hp=4cc2730a8b14cc6b173dd528077460e3d1420940;hb=227dd849f155422e0f6565fb227857fb38841fc4;hpb=eba1efa5ffedd094c77bb81a7009aa13a058a194 diff --git a/docs.js b/docs.js index 4cc2730..4586039 100644 --- a/docs.js +++ b/docs.js @@ -4,14 +4,16 @@ Gtk = imports.gi.Gtk; Gio = imports.gi.Gio; Gdk = imports.gi.Gdk; - -XObject = imports.XObject.XObject; - - +// generic libraries +XObject = imports.XObject.XObject; File = imports.File.File; console = imports.console.console; +Template = imports.JsTemplate.Template.Template; + +// Introspecion specific.. NameSpace = imports.Introspect.NameSpace.NameSpace; -Template = imports.JSDOC.Template.Template; +Link = imports.Introspect.Link.Link; + var outputdir = Seed.argv[2]; @@ -49,13 +51,22 @@ File.list(__script_path__ + '/templates/').forEach(function(f) { continue; } if (f == 'resources') { - continue; + return; } 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.. + }), }); }); @@ -158,11 +169,15 @@ langs.forEach(function(lang) { Gio.simple_write(html_file_path, html); } -); +}); // 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); + File.silentRecursiveCopy(__script_path__ + '/templates/resources/', + outputdir + '/' + lang.name , Gio.FileCopyFlags.OVERWRITE); }); \ No newline at end of file