JSDOC/Packer.js
authoralan <alan@alanfast.akbkhome.com>
Wed, 21 Apr 2010 05:50:33 +0000 (13:50 +0800)
committeralan <alan@alanfast.akbkhome.com>
Wed, 21 Apr 2010 05:50:33 +0000 (13:50 +0800)
JSDOC/Packer.js

index 59cc4c9..911ca8c 100644 (file)
@@ -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;
         }