X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=AssetTrait.php;h=27b9c4b0b06b1fa228eca8785a72b3769359a074;hp=25e45ee461f86f212ffb2fcb1ee981332d8ccfc2;hb=HEAD;hpb=f8754baf4d9aa72f262a775c9f80a8fe0a2abc9e diff --git a/AssetTrait.php b/AssetTrait.php index 25e45ee4..0067d6f2 100644 --- a/AssetTrait.php +++ b/AssetTrait.php @@ -32,7 +32,9 @@ trait Pman_Core_AssetTrait { $ar = array_merge($ar , glob($dir . '/'. $f)); continue; } - + if (!preg_match('/\.js$/', $f)) { + $f .= ".js"; + } $ar[] = $dir .'/'. $f; } @@ -54,7 +56,7 @@ trait Pman_Core_AssetTrait { $mtime = 0; foreach($ar as $fn) { $f = basename($fn); - if (!preg_match('/\.js$/', $f)) { // only javascript files... (so XXX.Dialog.YYY* works..) + if (!preg_match('/\.js$/', $f) || $fn == '.js' || !file_exists($dir . '/' . $f)) { // only javascript files... (so XXX.Dialog.YYY* works..) continue; } // got the 'module file..' @@ -66,25 +68,18 @@ trait Pman_Core_AssetTrait { 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($ff->Pman['isDev']) && !empty($_REQUEST['isDev'])) { - echo "\n"; + if (empty($compiledir) || (!empty($ff->Pman['isDev']) && !empty($_REQUEST['isDev']))) { + echo "\n"; $this->assetArrayToHtml($files,'js'); return; } @@ -137,17 +132,16 @@ trait Pman_Core_AssetTrait { break; } - } } /** * usage in template - * {outputCssDir(#{Hydra/templates/images/css/#,#Hydra.js",#.......#)} + * {outputCSSDir(#{Hydra/templates/images/css/#,#Hydra.js",#.......#)} */ - function outputCssDir($path) + function outputCSSDir($path) { $relpath = $this->rootURL . '/' . $path .'/'; @@ -217,13 +211,11 @@ trait Pman_Core_AssetTrait { //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); } @@ -268,7 +260,7 @@ trait Pman_Core_AssetTrait { file_put_contents($compiledir.'/'.$output , $x->minify( $this->baseURL.$asset)); clearstatcache(); if (!file_exists($compiledir.'/'.$output) || - !filesize($compiledir.'/'.$routput)) { + !filesize($compiledir.'/'.$output)) { echo "\n"; $this->assetArrayToHtml($files,'css'); return; @@ -289,4 +281,122 @@ trait Pman_Core_AssetTrait { + function outputSCSS($smod) + { + // we cant output non-cached versions of this.... + + // this doesnt really look like it would work! + $this->outputSCSSDir("{$this->rootDir}/Pman/{$smod}/scss/{$smod}.scss", $smod); + + } + /* + * Pman projects - expect + * /Pman/MyProject/scss/MyProject.less << + * this should contain includes for the others? + * @import "fonts.less"; + * .... + * Then all the files go here. + * /Pman/MyProject/scss/*.less + * + * For a Non Pman project + * send: + * /MyProject/scss/base.less << could be anything really... + * + * + */ + + + function outputSCSSDir($file, $smod= '') + { + + + $ff = HTML_FlexyFramework::get(); + $asset = $ff->project == 'Pman' ? '/Core/Asset/css/' : '/Asset/css/'; + + + if (!file_exists($file)) { + return; + } + + $ar = glob(dirname($file). '/*.scss'); + $maxtime = filemtime($file); + foreach($ar as $fn) { + $maxtime= max($maxtime, filemtime($fn)); + } + + + + //print_r($relfiles); + + require_once 'Pman/Core/Asset.php'; + $compiledir = Pman_Core_Asset::getCompileDir('css', '', true); + + + if (!file_exists($compiledir)) { + mkdir($compiledir,0700,true); + } + + + $output = date('Y-m-d-H-i-s-', $maxtime). $smod .'-less-'.md5(serialize(array($this->baseURL, $ar))) .'.css'; + + + + // where are we going to write all of this.. + // This has to be done via a + + + if ( !file_exists($compiledir.'/'.$output) || !filesize($compiledir.'/'.$output)) { + + + + require_once 'System.php'; + static $sassc = false; + if ($sassc === false) { + $sassc = System::which("sassc"); + } + if (empty($sassc)) { + die("INSTALL sassc"); + } + + + $ver = `$sassc --version`; + $bits = explode("\n", trim($ver)); + foreach($bits as $b) { + + $lr = explode(":", $b); + $vers[trim($lr[0])] = trim($lr[1]); + } + + $sm = $vers['sass'] > 3.4 ? ' --sourcemap=auto ' : '--sourcemap'; + $cmd = "{$sassc} --style=compressed {$sm} -I ". dirname($file) . " -I {$this->rootDir}/roojs1/scss/bootstrap ". basename($file) . " {$compiledir}/{$output}"; + //echo "$cmd\n"; echo `$cmd`; + `$cmd`; + + + clearstatcache(); + if (!file_exists($compiledir.'/'.$output) || + !filesize($compiledir.'/'.$output)) { + echo "\n"; + echo "\n"; + return; + } + + } else { + // echo "\n"; + } + + + //$this->arrayToJsInclude( $files); + $this->assetArrayToHtml( array( + $this->baseURL.$asset. $output, + + ),'css'); + + } + + + + + + } \ No newline at end of file