JSDOC/TokenReader.js
[gnome.introspection-doc-generator] / docs.js
diff --git a/docs.js b/docs.js
index 18cce1c..c85a64a 100644 (file)
--- a/docs.js
+++ b/docs.js
@@ -1,5 +1,6 @@
 //<Script type="text/javascript">
 
+
 Gtk = imports.gi.Gtk;
 Gio = imports.gi.Gio;
 Gdk = imports.gi.Gdk;
@@ -44,10 +45,22 @@ 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(JSON.stringify(e));
+    }
+    
 });
+ns_list = ns_list_clean;
+
+
 
 // which languages do we want to output for.
 langs=[];
@@ -82,7 +95,7 @@ var cls_ix_template = new Template(__script_path__ + '/templates/class_ix.html')
 var reference_template = new Template(__script_path__ + '/templates/references.html');
 */
 
-
+print("Looping throught namespaces");
 var ns_idx = [];
 ns_list.forEach(function(ns_name) 
 {
@@ -99,13 +112,19 @@ ns_list.forEach(function(ns_name)
     if (File.exists(ns.gir_file)) {
         File.copyFile(ns.gir_file, outputdir + '/'+ ns.gir_filename, Gio.FileCopyFlags.OVERWRITE);
     }
-    
+
     
     
 
     langs.forEach(function(lang) {
         ns['left_bar'] = lang.cls_ix_template.process(ns);
         // namespace template
+        
+        if (!File.exists(outputdir + '/'+ lang.name)) {
+               File.mkdir(outputdir + '/'+ lang.name );
+        }
+      
+        
         Gio.simple_write(outputdir + '/'+ lang.name+ '/' +ns_name +  '.html', lang.cls_template.process(ns));
         
         // left bar index of elements in namespace...
@@ -122,14 +141,19 @@ ns_list.forEach(function(ns_name)
         'enums' : 'Enum'
         
     };
+    
     for (var i in actions) {
         // we flag GLib as a GObject lib...
         idx[i]= ns_name == 'GLib' ? 1 : ns[i].length ;
+        
         ns[i].forEach( function(n) {
+            
+            print('NameSpace.factory(' + actions[i] +','+ns_name+','+n);
             var odata = XObject.extend(
                 NameSpace.factory(actions[i], ns_name, n),
                 { 'left_bar' :ns['left_bar'] }
             );
+            
             langs.forEach(function(lang) {
                 Gio.simple_write(outputdir +  '/'+ lang.name + '/' + ns_name + '.' + n + '.html', 
                     lang.cls_template.process(odata)