JSDOC/Options.js
[gnome.introspection-doc-generator] / JSDOC / Options.js
1 //<script type="text/javascript">
2 /**
3  * Options management...
4  */
5
6
7 Options = {
8     
9     
10     "directory" : '',
11     "conf" : '',
12     "template": '',
13     "recurse": '',
14     "ext": '',
15     "private": '',
16     "allfunctions": '', 
17     "encoding": '',
18     "nocode": '',
19     "out": '',
20     "suppress": '',
21     "testmode": '',
22     "help": '',
23     "verbose": '',
24     "disablecache": '',
25     "define" : [],
26     "handler" : [],
27     LOG : {
28         warn : function(str) {
29             print("Warn: " +str );
30         },
31         inform : function(str) {
32             print("Inform: " +str );
33         },
34         close : function() { },
35         flush : function() { },
36         out: false,
37         warnings : [],
38         verbose : false    
39     }
40     
41 }