X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FOptions.js;h=7fac06f828ce910e0e993102eb49a33a1043e086;hp=a85908a970f5e61ab63c1ba5b3fde4fe050a13de;hb=a67931117fc1f532da5016752f7dd3c625ce25d3;hpb=6c33a64bdf2ad401f71febf88ce8cfae5476e839 diff --git a/JSDOC/Options.js b/JSDOC/Options.js index a85908a..7fac06f 100644 --- a/JSDOC/Options.js +++ b/JSDOC/Options.js @@ -19,11 +19,12 @@ 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', "--conf" : 'Read From a Configuration file', // was c. - configuration file.. - parsed with JSON.parse - "--template" : 'Template Directory', // was t. + "--templateDir" : 'Template Directory', // was t. // "recurse": false, // was r. - not supported.. "--ext" : 'Extension of code files to read (normally js)', // was x. "--publishExt" : 'Extension of html files to write (normally html)', @@ -44,11 +45,12 @@ 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" : '', "conf" : '', // was c. - configuration file.. - parsed with JSON.parse - "template": '', // was t. + "templateDir": '', // was t. // "recurse": false, // was r. - not supported.. "ext": 'js', // was x. "publishExt" : 'html', @@ -65,6 +67,11 @@ Options = { "disablecache": '', // was C "define" : [], // was D. "handler" : [], // was H -- not supported.. + + + "version" : "1.0", + "copyright" : "LGPL", + LOG : { warn : function(str) { print("Warn: " +str ); @@ -130,14 +137,14 @@ Options = { }); - if (!this.template) { + if (!this.templateDir) { throw { name: "ArgumentError", - message: "No template Directory specified" + message: "No templateDir Directory specified" }; } - if (this.template[0] !='/') { - this.template = this.baseDir + '/' + this.template; + if (this.templateDir[0] !='/') { + this.templateDir = this.baseDir + '/' + this.templateDir; } @@ -147,7 +154,8 @@ Options = { message: "No directory specified" }; } - + + //print(JSON.stringify(this, null,4)); // should cacheDirectory be a subdirectory of target?? // if not set..