X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FOptions.js;h=ed4a1eb6b7c84760f1ac4f04177df38658711673;hp=beaeb45f40b9eb7fd57c3c009f7c3d12ce21c8c9;hb=730b246bf79d0c06ca211bb0fc1d12c94f22f466;hpb=6a1e2129b5675f41e4791b740cf86033d50ea48a diff --git a/JSDOC/Options.js b/JSDOC/Options.js index beaeb45..ed4a1eb 100644 --- a/JSDOC/Options.js +++ b/JSDOC/Options.js @@ -24,7 +24,7 @@ Options = { "--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)', @@ -50,7 +50,7 @@ Options = { "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', @@ -67,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 ); @@ -132,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; }