X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=docs.js;h=c8faf5c1249e90ec57215cce48159a7fb3042090;hp=8ff52d4e907dad4634d35c3dce10e805cfd7a3c9;hb=c771d622ecdeccf2784529e63225936f44fb36d8;hpb=0fd045e0b35f891a98777afc75aaf9912a0e99f0 diff --git a/docs.js b/docs.js index 8ff52d4..c8faf5c 100644 --- a/docs.js +++ b/docs.js @@ -4,16 +4,15 @@ 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.JSDOC.Template.Template; +Template = imports.JsTemplate.Template.Template; +// Introspecion specific.. NameSpace = imports.Introspect.NameSpace.NameSpace; -Link = = imports.Introspect.Link.Link; +Link = imports.Introspect.Link.Link; @@ -62,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.. }), }); }); @@ -170,7 +169,7 @@ langs.forEach(function(lang) { Gio.simple_write(html_file_path, html); } -); +}); // set up index and resources. langs.forEach(function(lang) { @@ -179,5 +178,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