X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=docs.js;h=64f516147a303ef93389ea3138530533dc86319b;hp=713b7234395cb43d657349a500bf727c2f0141c5;hb=09832b7df75cc80a659a516b9a6502b0681028dd;hpb=1606c580dbad6aa7c14aabcb5bdfa7a647579367 diff --git a/docs.js b/docs.js index 713b723..64f5161 100644 --- a/docs.js +++ b/docs.js @@ -4,15 +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]; @@ -54,9 +55,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.. + }), }); }); @@ -163,7 +173,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