JSDOC/BuildDocs.js
[gnome.introspection-doc-generator] / JSDOC / BuildDocs.js
index d0de627..024d628 100644 (file)
@@ -386,15 +386,16 @@ BuildDocs = {
         // this stuff works...
      
         
-        print(sourceFile);
+        print("SF: " + sourceFile);
         var name = sourceFile.substring(Options.baseDir.length+1);
-        print(name);
+        print("SHORT NAME: " + name);
         name = name.replace(/\.\.?[\\\/]/g, "").replace(/[\\\/]/g, "_");
-        
+        print("SHORT NAME _: " + name);
         name = name.replace(/\:/g, "_"); //??
+        print("SHORT NAME :: " + name);
         
         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>' +