X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=AssetTrait.php;h=6e8627ead2879c9c1292f7e790206bf673f5766e;hb=dff7116c31985c523f927df3e8e7cf50670ef428;hp=5199ef26bbea0c6a1d3e637831ecf435b16f7471;hpb=8cd2a9237c684aa16bc21e3ac6d3793c49c65400;p=Pman.Core diff --git a/AssetTrait.php b/AssetTrait.php index 5199ef26..6e8627ea 100644 --- a/AssetTrait.php +++ b/AssetTrait.php @@ -132,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 .'/'; @@ -282,4 +281,94 @@ trait Pman_Core_AssetTrait { + function outputSCSS($smod) + { + // we cant output non-cached versions of this.... + $ff = HTML_FlexyFramework::get(); + $fp = "{$this->rootDir}/Pman/$smod/scss/{$smod}.scss"; + // var_dump($fp); + if (!file_exists($fp)) { + return; + } + + $ar = glob(dirname($fp) . '/*.scss'); + $maxtime = 0; + 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 .'-'.md5(serialize(array($this->baseURL, $ar))) .'.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 ( !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"); + } + + $fd = dirname($fp); + + $ver = `$sassc --version`; + $bits = explode("\n", $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 {$fd} -I {$this->rootDir}/roojs1/scss/bootstrap $smod.scss {$compiledir}/{$output}"; + //echo "$cmd\n"; echo `$cmd`; + `$cmd`; + + + clearstatcache(); + if (!file_exists($compiledir.'/'.$output) || + !filesize($compiledir.'/'.$routput)) { + 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