X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=pack.js;h=ea90e26b4fb9aa38765650c76d25a45238c05dc3;hp=1f28f0ef9ab3cc0d8279e2f7ed4949465613f65a;hb=c8377bbd183de807c4b8924f660c7a09cf842312;hpb=b581e71e18a5a42b6171d7fd0451ff8f61c3eca6 diff --git a/pack.js b/pack.js index 1f28f0e..ea90e26 100755 --- a/pack.js +++ b/pack.js @@ -4,20 +4,18 @@ * packer command line * * -o Output + * -O Output debug file here. * -t Translate json file. * -w Cache / working dir. - * -c force cleanup. (use with -w if you need to clean up temp) - * -C no cleanup - * + * -f File to read with a list of source paths / or class names. + * -C no cleanup (use with -w if you need are using a cache directory.) + * -p prefix for translation md5 generator (directory that files are in, and is removed + * from path when generating an md5 for the translated name. * compresses files listed as arguments and outputs result */ -TextStream = imports['JSDOC/TextStream.js'].TextStream; -TokenReader = imports['JSDOC/TokenReader.js'].TokenReader; -ScopeParser = imports['JSDOC/ScopeParser.js'].ScopeParser; -TokenStream = imports['JSDOC/TokenStream.js'].TokenStream; -CompressWhite = imports['JSDOC/CompressWhite.js'].CompressWhite; -CompressWhite = imports['JSDOC/Packer.js'].Packer; -File = imports.File.File; +File = imports.File.File; +Packer = imports.JSDOC.Packer.Packer; + @@ -36,6 +34,11 @@ for(var i =0; i < args.length;i++) { i++; continue; } + if (args[i] == '-O') { + cfg.debugTarget = args[i+1]; + i++; + continue; + } if (args[i] == '-t') { cfg.translateJSON = args[i+1]; i++; @@ -46,22 +49,32 @@ for(var i =0; i < args.length;i++) { i++; continue; } - if (args[i] == '-c') { - cfg.cleanup = true; + if (args[i] == '-p') { + cfg.prefix = args[i+1]; + i++; continue; } - if (args[i] == '-c') { + + if (args[i] == '-C') { cfg.cleanup = false; continue; } + if (args[i] == '-f') { + cfg.srcfile = args[i+1]; + i++; + continue; + } + if (cfg.files.indexOf(args[i]) > -1) { + continue; // remove dupes. + } cfg.files.push(args[i]); } var pack; try { pack = new Packer(cfg) } catch (e) { - print("ERROR " + e); - Seed.quit(); + print("ERROR " + e.toString()); + throw e; } if (!pack.target) { print(pack.out);