JSDOC/Packer.js
authorAlan Knowles <alan@akbkhome.com>
Thu, 18 Aug 2011 09:19:24 +0000 (17:19 +0800)
committerAlan Knowles <alan@akbkhome.com>
Thu, 18 Aug 2011 09:19:24 +0000 (17:19 +0800)
JSDOC/Packer.js

index d177630..851a45a 100644 (file)
@@ -446,19 +446,24 @@ Packer.prototype = {
      * -> this file will need inserting at the start of the application....
      * -> we need to generate 2 files, 
      * -> a reference used to do the translation, and the _T file..
+     *
+     *
+     * We store the trsum on the token...
      * 
      */
     
     writeTranslateFile : function(fn, minfile, toks) 
     {
         
-        var map = {};
+        var map = {};  // 'string=> md5sum'
         var _this = this;
         toks.forEach(function (t) {
             if (t.type == 'STRN' && t.name == 'DOUBLE_QUOTE') {
                 var sval = t.data.substring(1,t.data.length-1);
                 var ffn = fn.substring(_this.prefix.length);
-                map[sval] = _this.md5(ffn + '-' + sval);
+                
+                t.trsum = _this.md5(ffn + '-' + sval);
+                map[sval] = t.trsum;
             }
         })