X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=docs.js;h=a34e3efa3a3f9de1ab036488ef8fc171971db27e;hp=580331241e5c183b178ffd95cb0aba25eec64a05;hb=a67931117fc1f532da5016752f7dd3c625ce25d3;hpb=b923ff08896134c62252f40c7a9e63d3e7ae893d diff --git a/docs.js b/docs.js index 5803312..a34e3ef 100644 --- a/docs.js +++ b/docs.js @@ -4,15 +4,17 @@ 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; +Link = imports.Introspect.Link.Link; + + var outputdir = Seed.argv[2]; @@ -46,10 +48,10 @@ ns_list = ns_list.sort(); langs=[]; File.list(__script_path__ + '/templates/').forEach(function(f) { if (!File.isDirectory(__script_path__ + '/templates/' + f)) { - continue; + return; } if (f == 'resources') { - continue; + return; } langs.push({ name : f, @@ -59,11 +61,11 @@ File.list(__script_path__ + '/templates/').forEach(function(f) { }), cls_ix_template : new Template( { templateFile : __script_path__ + '/templates/' + f + '/class_ix.html', - Link : Link// links might be specific to languages.. + Link : Link // links might be specific to languages.. }), - reference_template : new Template( + reference_template : new Template({ templateFile : __script_path__ + '/templates/' + f + '/references.html', - Link : Link// links might be specific to languages.. + Link : Link // links might be specific to languages.. }), }); }); @@ -94,9 +96,10 @@ ns_list.forEach(function(ns_name) } - ns['left_bar'] = cls_ix_template.process(ns); + langs.forEach(function(lang) { + ns['left_bar'] = lang.cls_ix_template.process(ns); // namespace template Gio.simple_write(outputdir + '/'+ lang.name+ '/' +ns_name + '.html', lang.cls_template.process(ns)); @@ -167,7 +170,7 @@ langs.forEach(function(lang) { Gio.simple_write(html_file_path, html); } -); +}); // set up index and resources. langs.forEach(function(lang) { @@ -176,5 +179,6 @@ langs.forEach(function(lang) { 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