From 1a958167b6e2e48c5fea8f8c0a8d80b02016fc0c Mon Sep 17 00:00:00 2001 From: alan Date: Wed, 21 Apr 2010 13:50:33 +0800 Subject: [PATCH] JSDOC/Packer.js --- JSDOC/Packer.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/JSDOC/Packer.js b/JSDOC/Packer.js index 59cc4c9..911ca8c 100644 --- a/JSDOC/Packer.js +++ b/JSDOC/Packer.js @@ -25,7 +25,7 @@ var x = new Packer({ files : [ "/location/of/file1.js", "/location/of/file2.js", ... ], target : "/tmp/output.js", debugTarget : "/tmp/output.debug.js", // merged file without compression. - translateJson : "/tmp/translate.json", + translateJSON: "/tmp/translate.json", ); @@ -102,7 +102,7 @@ Packer.prototype = { */ tmpDir : '/tmp', - translateJson : '', // json based list of strings in all files. + translateJSON : '', // json based list of strings in all files. /** * @prop cleanup {Boolean} (optional) clean up temp files after done - @@ -179,14 +179,14 @@ Packer.prototype = { } - if (this.translateJson) { + if (this.translateJSON) { print("MERGING LANGUAGE"); File.write(this.target, "if (typeof(_T) == 'undefined') { _T={};}\n"); - File.write(this.translateJson, ""); + File.write(this.translateJSON, ""); for(var i=0; i < this.files.length; i++) { var file = this.files[i]; var transfile= this.tmpDir + '/' +file.replace(/\//g, '.') +'.lang.trans'; @@ -203,7 +203,7 @@ Packer.prototype = { if (File.exists(transfile)) { var str = File.read(transfile); if (str.length) { - File.append(this.translateJson, str); + File.append(this.translateJSON, str); } if (this.cleanup) { File.remove(transfile); @@ -259,7 +259,7 @@ Packer.prototype = { var toks = tr.tokenize(new TextStream(str)); // dont merge xxx + . + yyyy etc. // at this point we can write a language file... - if (this.translateJson) { + if (this.translateJSON) { this.writeTranslateFile(fn, minfile, tr.translateMap); } @@ -347,7 +347,7 @@ Packer.prototype = { { //print("STRING HANDLER"); // callback when outputing compressed file, - if (!this.translate) { + if (!this.translateJSON) { // print("TURNED OFF"); return tok.outData; } -- 2.39.2