JSDOC/Options.js
[gnome.introspection-doc-generator] / JSDOC / Options.js
index 448b6fe..beaeb45 100644 (file)
@@ -19,6 +19,7 @@ Options = {
     // options get defined like this..
     "--src"           :  "source directory (either absolute - starts with "/" or relative " + 
                         "- without, in which case it's added to baseDir",
+    "--exclude-src"       : 'Ex',   
     "--baseDir"       :  'Base Directory (root directory of code)',
     "--target"        :  'Target Directory (where html files go)',
     "--cacheDirectory": 'Cached Files Directory',
@@ -44,6 +45,7 @@ Options = {
     
     // and now the defaults.. (which type can be infered from..)
     "src" : [],
+    "exclude-src" : [],
     "baseDir" :  '',  // base directory - 
     "target" : '',   // was d. ?? source directory (needed to put temporary files..)
     "cacheDirectory" : '',
@@ -114,16 +116,19 @@ Options = {
         }
         // append full path to source directories.
         var _this= this;
-        this.src.forEach(function(v, i) {
+        var src = this.src;
+        this.src = [];
+        src.forEach(function(v, i) {
             if (!v.length || v[0] != '/') {
-                _this.src[i] = _this.baseDir + '/' + v;
+                v = _this.baseDir + (v.length ?  '/' + v : '');
             }
-            if (File.isDirectory(_this.src[i])) {
+            if (!File.isDirectory(v)) {
                 throw {
                     name: "ArgumentError", 
                     message: "invalid Source Directory : " +  v
                 };
             }
+            _this.src.push(v);
         });
         
         
@@ -133,7 +138,11 @@ Options = {
                 message: "No template Directory specified" 
             };
         }
-         
+        if (this.template[0] !='/') {
+            this.template = this.baseDir + '/' + this.template;
+        }
+        
+        
         if (!this.target) {
             throw {
                 name: "ArgumentError",