From: alan Date: Wed, 21 Apr 2010 06:24:21 +0000 (+0800) Subject: JSDOC/Packer.js X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=commitdiff_plain;h=c1e4549f7e07ff00017459fb5acd03f48945daff JSDOC/Packer.js --- diff --git a/JSDOC/Packer.js b/JSDOC/Packer.js index f584207..80a26ec 100644 --- a/JSDOC/Packer.js +++ b/JSDOC/Packer.js @@ -132,7 +132,7 @@ Packer.prototype = { } if (this.debugTarget) { - File.append(this.debugTarget, File.read(files[i])); + File.append(this.debugTarget, File.read(file)); } // it's a good idea to check with 0 compression to see if the code can parse!! @@ -141,14 +141,14 @@ Packer.prototype = { - var minfile = this.tmpDir + '/' +files.replace(/\//g, '.'); + var minfile = this.tmpDir + '/' +file.replace(/\//g, '.'); // let's see if we have a min file already? // this might happen if tmpDir is set .. if (true && File.exists(minfile)) { var mt = File.mtime(minfile); - var ot = File.mtime(files); + var ot = File.mtime(file); print("compare : " + mt + "=>" + ot); if (mt >= ot) { continue; @@ -171,11 +171,10 @@ Packer.prototype = { if (File.exists(minfile)) { File.remove(minfile); } - var str = File.read(files); - var str = this.pack(str, files, minfile); + var str = File.read(file); + var str = this.pack(str, file, minfile); if (str.length) { File.write(minfile, str); - this.tmpFiles.push(minfile); } @@ -229,9 +228,9 @@ Packer.prototype = { print("MERGING SOURCE"); - for(var i=0; i < files.length; i++) { - - var minfile = bpath + '/' + this.files.replace(/\//g, '.'); + for(var i=0; i < this.files.length; i++) { + var file = this.files[i]; + var minfile = this.tmpDir + '/' + file.replace(/\//g, '.'); if (!File.exists(minfile)) {