JSDOC/BuildDocs.js
[gnome.introspection-doc-generator] / JSDOC / BuildDocs.js
index e06e0a1..7793449 100644 (file)
@@ -201,6 +201,9 @@ BuildDocs = {
         Link.symbolSet = this.symbolSet;
         Link.base = "../";
         
+        Link.srcFileFlatName = this.srcFileFlatName;
+        Link.srcFileRelName = this.srcFileRelName;
+        
         var classTemplate = new Template({
              templateFile : Options.templateDir  + "/class.html",
              Link : Link
@@ -259,25 +262,34 @@ BuildDocs = {
         
         Options.LOG.inform("iterate classes");
         
+        var jsonAll = {}; 
+        
         for (var i = 0, l = classes.length; i < l; i++) {
             var symbol = classes[i];
             var output = "";
             
             Options.LOG.inform("classTemplate Process : " + symbol.alias);
             
-            File.write(Options.target+"/symbols/" +symbol.alias+'.' + Options.publishExt ,
-                    classTemplate.process(symbol));
             
             
             
-            // dump out a 
+            File.write(Options.target+"/symbols/" +symbol.alias+'.' + Options.publishExt ,
+                    classTemplate.process(symbol));
             
-            this.publishJSON(Options.target+"/json/" + symbol.alias+'.json', symbol)
+            jsonAll[symbol.alias] = this.publishJSON(symbol);
             
             
             
         }
         
+        File.write(Options.target+"/symbols/json/roodata.json",
+                JSON.stringify({
+                    success : true,
+                    data : jsonAll
+                }, null, 1);
+        );
+        
+        
         // regenrate the index with different relative links
         Link.base = "";
         //var classesIndex = classesTemplate.process(classes);
@@ -314,6 +326,9 @@ BuildDocs = {
             fileindexTemplate.process(allFiles)
         );
         
+        
+        
+        
     },
     /**
      * JSON files are lookup files for the documentation
@@ -373,7 +388,8 @@ BuildDocs = {
             props : props,
             events: events
         };
-        File.write(file, JSON.stringify(ret, null, 2 ));
+        return ret;
+        
         
         
         // b) methods
@@ -381,23 +397,31 @@ BuildDocs = {
         
         
     },
+    srcFileRelName : function(sourceFile)
+    {
+      return sourceFile.substring(Options.baseDir.length+1);
+    },
+    srcFileFlatName: function(sourceFile)
+    {
+        var name = this.srcFileRelName(sourceFile);
+        name = name.replace(/\.\.?[\\\/]/g, "").replace(/[\\\/]/g, "_");
+        return name.replace(/\:/g, "_") + '.html'; //??;
+        
+    },
+    
     makeSrcFile: function(sourceFile) 
     {
         // this stuff works...
-        return;
-        
-        
-        name = sourceFile.substring(Options.baseDir.length+1);
-        name = name.replace(/\.\.?[\\\/]/g, "").replace(/[\\\/]/g, "_");
+     
         
-        name = name.replace(/\:/g, "_"); //??
+        var name = this.srcFileFlatName(sourceFile);
         
         Options.LOG.inform("Write Source file : " + Options.target+"/symbols/src/" + name);
-        var pretty = imports.PrettyPrint.toPretty(File.read(sourceFile));
+        var pretty = imports.PrettyPrint.toPretty(File.read(  sourceFile));
         File.write(Options.target+"/symbols/src/" + name, 
             '<html><head>' +
             '<title>' + sourceFile + '</title>' +
-            '<link rel="stylesheet" type="text/css" href="../../../highlight-js.css"/>' + 
+            '<link rel="stylesheet" type="text/css" href="../../../css/highlight-js.css"/>' + 
             '</head><body class="highlightpage">' +
             pretty +
             '</body></html>');