X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=docs.js;h=9f33ccb7f4253261c96fa952c1d2409c4f950634;hp=7a2a233b2e87a5b2023f6aae8b8ff538810061e7;hb=c96a604510741af191f06f47e2589be79939431a;hpb=c4e3c0758df5f61b4e95a827cd6fde549e0f1b44 diff --git a/docs.js b/docs.js index 7a2a233..9f33ccb 100644 --- a/docs.js +++ b/docs.js @@ -45,9 +45,17 @@ if (typeof(Seed.argv[3]) == 'string') { ns_list = ns_list.sort(); // let's try and load them, so we find out early what will fail. print("loading library to make sure it works."); +ns_list_clean = []; ns_list.forEach(function(ns_name) -{ - var core = imports.gi[ns_name]; +{ + try { + + var core = imports.gi[ns_name]; + ns_list_clean.push(ns_name); + } catch( e) { + print(e.toString()); + } + });