X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=docs.js;h=a34e3efa3a3f9de1ab036488ef8fc171971db27e;hp=b8f98eda6870c735002e9555a67ac61fdb2d058b;hb=63ccc43e703a5a61980832c9f91ae92c62949c58;hpb=7a3a911d074a61c361ea862bdd12abac111dad51 diff --git a/docs.js b/docs.js index b8f98ed..a34e3ef 100644 --- a/docs.js +++ b/docs.js @@ -48,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, @@ -96,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));