JSDOC/Options.js
[gnome.introspection-doc-generator] / JSDOC / Options.js
index 208011e..757ec91 100644 (file)
@@ -7,19 +7,21 @@ File = import.File.File;
 
 Options = {
     
-    "src" : [],  // array of source directories..
+    "baseDir" :  '',  // base directory - 
     "target" : '',   // was d. ?? source directory (needed to put temporary files..)
     "cacheDirectory" : '',
-    "conf" : '',       // was c.
+    "conf" : '',       // was c. - configuration file.. - parsed with JSON.parse
     "template": '',   // was t.
     // "recurse": false,   // was r. - not supported..
     "ext": '',   // was x.
+    "publishExt" : 'html',
     "private": '',   // was p
     "allfunctions": '',   // was a
     "encoding": '',   // was e.
     "nocode": '',  // was n
     "out": '',   // was o.
-    "suppress": '',  // was s
+    "suppress": '',  // was s ??? used?
+    "outputSource" : true,
     "testmode": '',  // was t
     "help": '',   // was h
     "verbose": '',   // was v
@@ -62,12 +64,19 @@ Options = {
             };
         }
          
-        if (!this.directory) {
+        if (!this.target) {
             throw {
                 name: "ArgumentError", 
                 message: "No directory specified" 
             };
         }
+        f (!this.baseDir) {
+            throw {
+                name: "ArgumentError", 
+                message: "No baseDir specified" 
+            };
+        }
+        
         // should cacheDirectory be a subdirectory of target??
         // if not set..
         if (!this.cacheDirectory) {