From b66f2b255e08613d4cdc4f1b5739b325b37d7be1 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 18 Aug 2011 12:11:28 +0800 Subject: [PATCH] JsCompile.php --- JsCompile.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/JsCompile.php b/JsCompile.php index c60974c6..a81c4255 100644 --- a/JsCompile.php +++ b/JsCompile.php @@ -221,7 +221,7 @@ class Pman_Core_JsCompile extends Pman * @param {String} $output name fo file to output * */ - function pack($files, $output) + function pack($files, $output, $translation_base=false) { @@ -258,7 +258,12 @@ class Pman_Core_JsCompile extends Pman $eoutput = escapeshellarg($output); - $toutput = "-t ". escapeshellarg(preg_replace('/\.js$/', '.__translation__.js', $output)); + if ($translation_base) { + $toutput = "-t ". escapeshellarg(preg_replace('/\.js$/', '.__translation__.js', $output)) . + " -p " . escapeshellarg($translation_base); + } + + $cmd = "$seed {$o['jspacker']}/pack.js -o $eoutput $toutput " . implode($ofiles, ' ') . ' 2>&1'; //echo "
$cmd\n";
-- 
2.39.2