X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=AssetTrait.php;h=5199ef26bbea0c6a1d3e637831ecf435b16f7471;hp=4075ee77d2e2244508926cea5f57ce04bb6f4511;hb=443623f47935eb52acd65a3ff0d84eab1fd5a98b;hpb=907938d9101e33e9cf5d1c79c4a09dfd69d869b3 diff --git a/AssetTrait.php b/AssetTrait.php index 4075ee77..5199ef26 100644 --- a/AssetTrait.php +++ b/AssetTrait.php @@ -1,7 +1,7 @@ - +\n"; + return; + } //$path = $this->rootURL ."/Pman/$mod/"; @@ -51,6 +56,9 @@ trait Pman_Core_Asset_Trait { $mtime = 0; foreach($ar as $fn) { $f = basename($fn); + if (!preg_match('/\.js$/', $f) || $fn == '.js' || !file_exists($dir . '/' . $f)) { // only javascript files... (so XXX.Dialog.YYY* works..) + continue; + } // got the 'module file..' $mtime = filemtime($dir . '/'. $f); $maxtime = max($mtime, $maxtime); @@ -60,23 +68,17 @@ trait Pman_Core_Asset_Trait { ksort($arfiles); // just sort by name so it's consistant for serialize.. - $ui = posix_getpwuid(posix_geteuid()); - - - $compiledir = session_save_path() . '/' . - $ui['name'] . '-' . $ff->project . '-' . $ff->version . '-jscompile'; - - if (!file_exists($compiledir)) { - mkdir($compiledir,0700,true); - } + require_once 'Pman/Core/Asset.php'; + $compiledir = Pman_Core_Asset::getCompileDir('js', '', true); - $lsort = create_function('$a,$b','return strlen($a) > strlen($b) ? 1 : -1;'); + $lsort = function($a,$b) { return strlen($a) > strlen($b) ? 1 : -1; }; usort($files, $lsort); + $ff = HTML_FlexyFramework::get(); - if (!empty($this->bootLoader->isDev) && !empty($_REQUEST['isDev'])) { + if (!empty($ff->Pman['isDev']) && !empty($_REQUEST['isDev'])) { echo "\n"; $this->assetArrayToHtml($files,'js'); return; @@ -87,7 +89,8 @@ trait Pman_Core_Asset_Trait { $output = date('Y-m-d-H-i-s-', $maxtime). $smod .'-'.md5(serialize($arfiles)) .'.js'; - + + // where are we going to write all of this.. // This has to be done via a @@ -107,9 +110,11 @@ trait Pman_Core_Asset_Trait { } else { // echo "\n"; } + + $asset = $ff->project == 'Pman' ? '/Core/Asset/js/' : '/Asset/js/'; //$this->arrayToJsInclude( $files); $this->assetArrayToHtml( array( - $this->baseURL.'/Asset/js/'. $output, + $this->baseURL.$asset. $output, ), 'js'); @@ -161,7 +166,10 @@ trait Pman_Core_Asset_Trait { } } - + if (empty($ar)) { + echo "\n"; + return; + } // cached version?? - how do we decide if it's expired? // while scanning the directory is slow... - it's faster than serving every file... @@ -204,24 +212,31 @@ trait Pman_Core_Asset_Trait { //print_r($relfiles); + + require_once 'Pman/Core/Asset.php'; + $compiledir = Pman_Core_Asset::getCompileDir('css', '', true); - $ui = posix_getpwuid(posix_geteuid()); - - - $compiledir = session_save_path() . '/' . - $ui['name'] . '-' . $ff->project . '-'. $ff->version . '-csscompile'; - + if (!file_exists($compiledir)) { mkdir($compiledir,0700,true); } - // no sorting??? - //$lsort = create_function('$a,$b','return strlen($a) > strlen($b) ? 1 : -1;'); - //usort($files, $lsort); - if (!empty($this->bootLoader->isDev) && !empty($_REQUEST['isDev'])) { + // yes sort... if includes are used - they have to be in the first file... + $lsort = function($a,$b ) { + return strlen($a) > strlen($b) ? 1 : -1; + }; + usort($files, $lsort); + usort($relfiles,$lsort); + // print_R($relfiles); + + $ff = HTML_FlexyFramework::get(); + + // isDev set + + if ((!empty($ff->Pman['isDev']) || $_SERVER['HTTP_HOST'] == 'localhost' )&& !empty($_REQUEST['isDev'])) { echo "\n"; $this->assetArrayToHtml($files,'css'); return; @@ -230,20 +245,20 @@ trait Pman_Core_Asset_Trait { $smod = str_replace('/','.',$path); - $output = date('Y-m-d-H-i-s-', $maxtime). $smod .'-'.md5(serialize($arfiles)) .'.css'; - + $output = date('Y-m-d-H-i-s-', $maxtime). $smod .'-'.md5(serialize(array($this->baseURL, $arfiles))) .'.css'; + $asset = $ff->project == 'Pman' ? '/Core/Asset/css/' : '/Asset/css/'; // where are we going to write all of this.. // This has to be done via a - if (true || !file_exists($compiledir.'/'.$output) || !filesize($compiledir.'/'.$output)) { - + if ( !file_exists($compiledir.'/'.$output) || !filesize($compiledir.'/'.$output)) { + //print_r($relfiles); require_once 'HTML/CSS/Minify.php'; $x = new HTML_CSS_Minify(substr($relpath,0,-1), $dir, $relfiles); - file_put_contents($compiledir.'/'.$output , $x->minify( $this->baseURL.'/Asset/css')); + file_put_contents($compiledir.'/'.$output , $x->minify( $this->baseURL.$asset)); clearstatcache(); if (!file_exists($compiledir.'/'.$output) || !filesize($compiledir.'/'.$routput)) { @@ -255,9 +270,11 @@ trait Pman_Core_Asset_Trait { } else { // echo "\n"; } + + //$this->arrayToJsInclude( $files); $this->assetArrayToHtml( array( - $this->baseURL.'/Asset/css/'. $output, + $this->baseURL.$asset. $output, ),'css');