178a6aeb1SAndreas Gohr<?php 278a6aeb1SAndreas Gohr/** 378a6aeb1SAndreas Gohr * DokuWiki StyleSheet creator 478a6aeb1SAndreas Gohr * 578a6aeb1SAndreas Gohr * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 678a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 778a6aeb1SAndreas Gohr */ 878a6aeb1SAndreas Gohr 9d0a27cb0SAndreas Gohrif(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../'); 101c2d1019SAndreas Gohrif(!defined('NOSESSION')) define('NOSESSION',true); // we do not use a session or authentication here (better caching) 1198bda4fdSAndreas Gohrif(!defined('DOKU_DISABLE_GZIP_OUTPUT')) define('DOKU_DISABLE_GZIP_OUTPUT',1); // we gzip ourself here 126c47a78cSAnika Henkeif(!defined('NL')) define('NL',"\n"); 1378a6aeb1SAndreas Gohrrequire_once(DOKU_INC.'inc/init.php'); 1478a6aeb1SAndreas Gohr 1578a6aeb1SAndreas Gohr// Main (don't run when UNIT test) 1678a6aeb1SAndreas Gohrif(!defined('SIMPLE_TEST')){ 1778a6aeb1SAndreas Gohr header('Content-Type: text/css; charset=utf-8'); 1878a6aeb1SAndreas Gohr css_out(); 1978a6aeb1SAndreas Gohr} 2078a6aeb1SAndreas Gohr 2178a6aeb1SAndreas Gohr 2278a6aeb1SAndreas Gohr// ---------------------- functions ------------------------------ 2378a6aeb1SAndreas Gohr 2478a6aeb1SAndreas Gohr/** 2578a6aeb1SAndreas Gohr * Output all needed Styles 2678a6aeb1SAndreas Gohr * 2778a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 2878a6aeb1SAndreas Gohr */ 2978a6aeb1SAndreas Gohrfunction css_out(){ 3078a6aeb1SAndreas Gohr global $conf; 3178a6aeb1SAndreas Gohr global $lang; 3209edb711SAndreas Gohr global $config_cascade; 33bfd0f597STom N Harris global $INPUT; 3409edb711SAndreas Gohr 35de4634ecSGerry Weißbach if ($INPUT->str('s') == 'feed') { 36de4634ecSGerry Weißbach $mediatypes = array('feed'); 37de4634ecSGerry Weißbach $type = 'feed'; 38de4634ecSGerry Weißbach } else { 395d48a5eaSGerry Weißbach $mediatypes = array('screen', 'all', 'print', 'speech'); 40de4634ecSGerry Weißbach $type = ''; 41de4634ecSGerry Weißbach } 42de4634ecSGerry Weißbach 4320a2375aSAndreas Gohr // decide from where to get the template 4420a2375aSAndreas Gohr $tpl = trim(preg_replace('/[^\w-]+/','',$INPUT->str('t'))); 4520a2375aSAndreas Gohr if(!$tpl) $tpl = $conf['template']; 4620a2375aSAndreas Gohr 4714cd40ecSChang Zhao // load style.ini 48fb1f9089SMichael Große $styleUtil = new \dokuwiki\StyleUtils(); 49fb1f9089SMichael Große $styleini = $styleUtil->cssStyleini($tpl, $INPUT->bool('preview')); 5020a2375aSAndreas Gohr 51afb2c082SAndreas Gohr // cache influencers 52259571aaSMichal Koutný $tplinc = tpl_incdir($tpl); 53afb2c082SAndreas Gohr $cache_files = getConfigFiles('main'); 54afb2c082SAndreas Gohr $cache_files[] = $tplinc.'style.ini'; 55afb2c082SAndreas Gohr $cache_files[] = DOKU_CONF."tpl/$tpl/style.ini"; 56afb2c082SAndreas Gohr $cache_files[] = __FILE__; 574d6524b8SAndreas Gohr if($INPUT->bool('preview')) $cache_files[] = $conf['cachedir'].'/preview.ini'; 58afb2c082SAndreas Gohr 5978a6aeb1SAndreas Gohr // Array of needed files and their web locations, the latter ones 6078a6aeb1SAndreas Gohr // are needed to fix relative paths in the stylesheets 61ef36714bSGerry Weißbach $media_files = array(); 6214977bd2SMichael Hamann foreach($mediatypes as $mediatype) { 63ef36714bSGerry Weißbach $files = array(); 643e32b194SGerry Weißbach 65318cd03eSAnika Henke // load core styles 66ef36714bSGerry Weißbach $files[DOKU_INC.'lib/styles/'.$mediatype.'.css'] = DOKU_BASE.'lib/styles/'; 67af4684acSAndreas Gohr 6843576758SAndreas Gohr // load jQuery-UI theme 696c47a78cSAnika Henke if ($mediatype == 'screen') { 70ef36714bSGerry Weißbach $files[DOKU_INC.'lib/scripts/jquery/jquery-ui-theme/smoothness.css'] = DOKU_BASE.'lib/scripts/jquery/jquery-ui-theme/'; 716c47a78cSAnika Henke } 72318cd03eSAnika Henke // load plugin styles 73ef36714bSGerry Weißbach $files = array_merge($files, css_pluginstyles($mediatype)); 74318cd03eSAnika Henke // load template styles 75afb2c082SAndreas Gohr if (isset($styleini['stylesheets'][$mediatype])) { 76ef36714bSGerry Weißbach $files = array_merge($files, $styleini['stylesheets'][$mediatype]); 7709edb711SAndreas Gohr } 78318cd03eSAnika Henke // load user styles 79*60764596SAndreas Gohr if(is_array($config_cascade['userstyle'][$mediatype])) { 807b909d5eSGerrit Uitslag foreach($config_cascade['userstyle'][$mediatype] as $userstyle) { 81ef36714bSGerry Weißbach $files[$userstyle] = DOKU_BASE; 827b909d5eSGerrit Uitslag } 83318cd03eSAnika Henke } 8478a6aeb1SAndreas Gohr 85ef36714bSGerry Weißbach // Let plugins decide to either put more styles here or to remove some 863e32b194SGerry Weißbach $media_files[$mediatype] = css_filewrapper($mediatype, $files); 87ef36714bSGerry Weißbach $CSSEvt = new Doku_Event('CSS_STYLES_INCLUDED', $media_files[$mediatype]); 88ef36714bSGerry Weißbach 89ef36714bSGerry Weißbach // Make it preventable. 90ef36714bSGerry Weißbach if ( $CSSEvt->advise_before() ) { 91ef36714bSGerry Weißbach $cache_files = array_merge($cache_files, array_keys($media_files[$mediatype]['files'])); 92ef36714bSGerry Weißbach } else { 93ef36714bSGerry Weißbach // unset if prevented. Nothing will be printed for this mediatype. 94ef36714bSGerry Weißbach unset($media_files[$mediatype]); 9514977bd2SMichael Hamann } 966619f42eSAdrian Lang 97ef36714bSGerry Weißbach // finish event. 98ef36714bSGerry Weißbach $CSSEvt->advise_after(); 99ef36714bSGerry Weißbach } 100ef36714bSGerry Weißbach 101ef36714bSGerry Weißbach // The generated script depends on some dynamic options 10285319150SGerry Weißbach $cache = new cache('styles'.$_SERVER['HTTP_HOST'].$_SERVER['SERVER_PORT'].$INPUT->bool('preview').DOKU_BASE.$tpl.$type,'.css'); 103ef36714bSGerry Weißbach $cache->_event = 'CSS_CACHE_USE'; 104ef36714bSGerry Weißbach 10538f56bffSBen Coburn // check cache age & handle conditional request 1066619f42eSAdrian Lang // This may exit if a cache can be used 107e7c68c4dSGerry Weißbach $cache_ok = $cache->useCache(array('files' => $cache_files)); 108e7c68c4dSGerry Weißbach http_cached($cache->cache, $cache_ok); 10978a6aeb1SAndreas Gohr 1103899c2ecSMichael Hamann // start output buffering 1113899c2ecSMichael Hamann ob_start(); 1123899c2ecSMichael Hamann 113ef36714bSGerry Weißbach // Fire CSS_STYLES_INCLUDED for one last time to let the 114ef36714bSGerry Weißbach // plugins decide whether to include the DW default styles. 115ef36714bSGerry Weißbach // This can be done by preventing the Default. 116ef36714bSGerry Weißbach $media_files['DW_DEFAULT'] = css_filewrapper('DW_DEFAULT'); 117ef36714bSGerry Weißbach trigger_event('CSS_STYLES_INCLUDED', $media_files['DW_DEFAULT'], 'css_defaultstyles'); 118ef36714bSGerry Weißbach 1196c47a78cSAnika Henke // build the stylesheet 12014977bd2SMichael Hamann foreach ($mediatypes as $mediatype) { 12178a6aeb1SAndreas Gohr 122ef36714bSGerry Weißbach // Check if there is a wrapper set for this type. 123ef36714bSGerry Weißbach if ( !isset($media_files[$mediatype]) ) { 124ef36714bSGerry Weißbach continue; 12578a6aeb1SAndreas Gohr } 12678a6aeb1SAndreas Gohr 127ef36714bSGerry Weißbach $cssData = $media_files[$mediatype]; 128ef36714bSGerry Weißbach 129ef36714bSGerry Weißbach // Print the styles. 130ef36714bSGerry Weißbach print NL; 131ef36714bSGerry Weißbach if ( $cssData['encapsulate'] === true ) print $cssData['encapsulationPrefix'] . ' {'; 132ef36714bSGerry Weißbach print '/* START '.$cssData['mediatype'].' styles */'.NL; 133ef36714bSGerry Weißbach 1346c47a78cSAnika Henke // load files 135ef36714bSGerry Weißbach foreach($cssData['files'] as $file => $location){ 13672a66eb7SAndreas Gohr $display = str_replace(fullpath(DOKU_INC), '', fullpath($file)); 137ef36714bSGerry Weißbach print "\n/* XXXXXXXXX $display XXXXXXXXX */\n"; 138ef36714bSGerry Weißbach print css_loadfile($file, $location); 1396c47a78cSAnika Henke } 140ef36714bSGerry Weißbach 141ef36714bSGerry Weißbach print NL; 142ef36714bSGerry Weißbach if ( $cssData['encapsulate'] === true ) print '} /* /@media '; 143ef36714bSGerry Weißbach else print '/*'; 144ef36714bSGerry Weißbach print ' END '.$cssData['mediatype'].' styles */'.NL; 1456c47a78cSAnika Henke } 146ef36714bSGerry Weißbach 14778a6aeb1SAndreas Gohr // end output buffering and get contents 14878a6aeb1SAndreas Gohr $css = ob_get_contents(); 14978a6aeb1SAndreas Gohr ob_end_clean(); 15078a6aeb1SAndreas Gohr 151f8fb2d18SAndreas Gohr // strip any source maps 152f8fb2d18SAndreas Gohr stripsourcemaps($css); 153f8fb2d18SAndreas Gohr 1546e69c1baSAndreas Gohr // apply style replacements 155afb2c082SAndreas Gohr $css = css_applystyle($css, $styleini['replacements']); 1566e69c1baSAndreas Gohr 15772a66eb7SAndreas Gohr // parse less 15872a66eb7SAndreas Gohr $css = css_parseless($css); 159d4a1ece8SAndreas Gohr 16078a6aeb1SAndreas Gohr // compress whitespace and comments 16178a6aeb1SAndreas Gohr if($conf['compress']){ 16278a6aeb1SAndreas Gohr $css = css_compress($css); 16378a6aeb1SAndreas Gohr } 16478a6aeb1SAndreas Gohr 165809d3ba5SAndreas Gohr // embed small images right into the stylesheet 166809d3ba5SAndreas Gohr if($conf['cssdatauri']){ 167809d3ba5SAndreas Gohr $base = preg_quote(DOKU_BASE,'#'); 168809d3ba5SAndreas Gohr $css = preg_replace_callback('#(url\([ \'"]*)('.$base.')(.*?(?:\.(png|gif)))#i','css_datauri',$css); 169809d3ba5SAndreas Gohr } 170809d3ba5SAndreas Gohr 1716619f42eSAdrian Lang http_cached_finish($cache->cache, $css); 17278a6aeb1SAndreas Gohr} 17378a6aeb1SAndreas Gohr 17478a6aeb1SAndreas Gohr/** 17572a66eb7SAndreas Gohr * Uses phpless to parse LESS in our CSS 17672a66eb7SAndreas Gohr * 17772a66eb7SAndreas Gohr * most of this function is error handling to show a nice useful error when 17872a66eb7SAndreas Gohr * LESS compilation fails 17972a66eb7SAndreas Gohr * 180253d4b48SGerrit Uitslag * @param string $css 18172a66eb7SAndreas Gohr * @return string 18272a66eb7SAndreas Gohr */ 18372a66eb7SAndreas Gohrfunction css_parseless($css) { 1847d247a3cSGerrit Uitslag global $conf; 1857d247a3cSGerrit Uitslag 18672a66eb7SAndreas Gohr $less = new lessc(); 187343a31d8SAndreas Gohr $less->importDir = array(DOKU_INC); 1887d247a3cSGerrit Uitslag $less->setPreserveComments(!$conf['compress']); 18930f686ebSChristopher Smith 19030f686ebSChristopher Smith if (defined('DOKU_UNITTEST')){ 19130f686ebSChristopher Smith $less->importDir[] = TMP_DIR; 19230f686ebSChristopher Smith } 19330f686ebSChristopher Smith 19472a66eb7SAndreas Gohr try { 19572a66eb7SAndreas Gohr return $less->compile($css); 19672a66eb7SAndreas Gohr } catch(Exception $e) { 19772a66eb7SAndreas Gohr // get exception message 19872a66eb7SAndreas Gohr $msg = str_replace(array("\n", "\r", "'"), array(), $e->getMessage()); 19972a66eb7SAndreas Gohr 20072a66eb7SAndreas Gohr // try to use line number to find affected file 20172a66eb7SAndreas Gohr if(preg_match('/line: (\d+)$/', $msg, $m)){ 20272a66eb7SAndreas Gohr $msg = substr($msg, 0, -1* strlen($m[0])); //remove useless linenumber 20372a66eb7SAndreas Gohr $lno = $m[1]; 20472a66eb7SAndreas Gohr 20572a66eb7SAndreas Gohr // walk upwards to last include 20672a66eb7SAndreas Gohr $lines = explode("\n", $css); 20772a66eb7SAndreas Gohr for($i=$lno-1; $i>=0; $i--){ 20872a66eb7SAndreas Gohr if(preg_match('/\/(\* XXXXXXXXX )(.*?)( XXXXXXXXX \*)\//', $lines[$i], $m)){ 20972a66eb7SAndreas Gohr // we found it, add info to message 21072a66eb7SAndreas Gohr $msg .= ' in '.$m[2].' at line '.($lno-$i); 21172a66eb7SAndreas Gohr break; 21272a66eb7SAndreas Gohr } 21372a66eb7SAndreas Gohr } 21472a66eb7SAndreas Gohr } 21572a66eb7SAndreas Gohr 21672a66eb7SAndreas Gohr // something went wrong 21772a66eb7SAndreas Gohr $error = 'A fatal error occured during compilation of the CSS files. '. 21872a66eb7SAndreas Gohr 'If you recently installed a new plugin or template it '. 21972a66eb7SAndreas Gohr 'might be broken and you should try disabling it again. ['.$msg.']'; 22072a66eb7SAndreas Gohr 22172a66eb7SAndreas Gohr echo ".dokuwiki:before { 22272a66eb7SAndreas Gohr content: '$error'; 22372a66eb7SAndreas Gohr background-color: red; 22472a66eb7SAndreas Gohr display: block; 22572a66eb7SAndreas Gohr background-color: #fcc; 22672a66eb7SAndreas Gohr border-color: #ebb; 22772a66eb7SAndreas Gohr color: #000; 22872a66eb7SAndreas Gohr padding: 0.5em; 22972a66eb7SAndreas Gohr }"; 23072a66eb7SAndreas Gohr 23172a66eb7SAndreas Gohr exit; 23272a66eb7SAndreas Gohr } 23372a66eb7SAndreas Gohr} 23472a66eb7SAndreas Gohr 23572a66eb7SAndreas Gohr/** 2366e69c1baSAndreas Gohr * Does placeholder replacements in the style according to 2376e69c1baSAndreas Gohr * the ones defined in a templates style.ini file 2386e69c1baSAndreas Gohr * 239d4a1ece8SAndreas Gohr * This also adds the ini defined placeholders as less variables 240d4a1ece8SAndreas Gohr * (sans the surrounding __ and with a ini_ prefix) 241d4a1ece8SAndreas Gohr * 2426e69c1baSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 243253d4b48SGerrit Uitslag * 244253d4b48SGerrit Uitslag * @param string $css 245253d4b48SGerrit Uitslag * @param array $replacements array(placeholder => value) 246253d4b48SGerrit Uitslag * @return string 2476e69c1baSAndreas Gohr */ 248afb2c082SAndreas Gohrfunction css_applystyle($css, $replacements) { 249cbe37079SAndreas Gohr // we convert ini replacements to LESS variable names 250cbe37079SAndreas Gohr // and build a list of variable: value; pairs 251d4a1ece8SAndreas Gohr $less = ''; 252afb2c082SAndreas Gohr foreach((array) $replacements as $key => $value) { 253cbe37079SAndreas Gohr $lkey = trim($key, '_'); 254cbe37079SAndreas Gohr $lkey = '@ini_'.$lkey; 255cbe37079SAndreas Gohr $less .= "$lkey: $value;\n"; 256cbe37079SAndreas Gohr 257afb2c082SAndreas Gohr $replacements[$key] = $lkey; 258d4a1ece8SAndreas Gohr } 259c51b334eSAndreas Gohr 260cbe37079SAndreas Gohr // we now replace all old ini replacements with LESS variables 261afb2c082SAndreas Gohr $css = strtr($css, $replacements); 262cbe37079SAndreas Gohr 263cbe37079SAndreas Gohr // now prepend the list of LESS variables as the very first thing 264c51b334eSAndreas Gohr $css = $less.$css; 2656e69c1baSAndreas Gohr return $css; 2666e69c1baSAndreas Gohr} 2676e69c1baSAndreas Gohr 2686e69c1baSAndreas Gohr/** 269ef36714bSGerry Weißbach * Wrapper for the files, content and mediatype for the event CSS_STYLES_INCLUDED 270ef36714bSGerry Weißbach * 271ef36714bSGerry Weißbach * @author Gerry Weißbach <gerry.w@gammaproduction.de> 272ef36714bSGerry Weißbach * 273ef36714bSGerry Weißbach * @param string $mediatype type ofthe current media files/content set 274ef36714bSGerry Weißbach * @param array $files set of files that define the current mediatype 275ef36714bSGerry Weißbach * @return array 276ef36714bSGerry Weißbach */ 2773e32b194SGerry Weißbachfunction css_filewrapper($mediatype, $files=array()){ 278ef36714bSGerry Weißbach return array( 279ef36714bSGerry Weißbach 'files' => $files, 280ef36714bSGerry Weißbach 'mediatype' => $mediatype, 281cf35519cSGerry Weißbach 'encapsulate' => $mediatype != 'all', 282ef36714bSGerry Weißbach 'encapsulationPrefix' => '@media '.$mediatype 283ef36714bSGerry Weißbach ); 284ef36714bSGerry Weißbach} 285ef36714bSGerry Weißbach 286ef36714bSGerry Weißbach/** 287ef36714bSGerry Weißbach * Prints the @media encapsulated default styles of DokuWiki 288ef36714bSGerry Weißbach * 289ef36714bSGerry Weißbach * @author Gerry Weißbach <gerry.w@gammaproduction.de> 290ef36714bSGerry Weißbach * 291ef36714bSGerry Weißbach * This function is being called by a CSS_STYLES_INCLUDED event 292ef36714bSGerry Weißbach * The event can be distinguished by the mediatype which is: 293ef36714bSGerry Weißbach * DW_DEFAULT 294ef36714bSGerry Weißbach */ 295ef36714bSGerry Weißbachfunction css_defaultstyles(){ 296ef36714bSGerry Weißbach // print the default classes for interwiki links and file downloads 297ef36714bSGerry Weißbach print '@media screen {'; 298ef36714bSGerry Weißbach css_interwiki(); 299ef36714bSGerry Weißbach css_filetypes(); 300ef36714bSGerry Weißbach print '}'; 301ef36714bSGerry Weißbach} 302ef36714bSGerry Weißbach 303ef36714bSGerry Weißbach/** 3041c2d1019SAndreas Gohr * Prints classes for interwikilinks 3051c2d1019SAndreas Gohr * 3061c2d1019SAndreas Gohr * Interwiki links have two classes: 'interwiki' and 'iw_$name>' where 3071c2d1019SAndreas Gohr * $name is the identifier given in the config. All Interwiki links get 3081c2d1019SAndreas Gohr * an default style with a default icon. If a special icon is available 3091c2d1019SAndreas Gohr * for an interwiki URL it is set in it's own class. Both classes can be 3101c2d1019SAndreas Gohr * overwritten in the template or userstyles. 3111c2d1019SAndreas Gohr * 3121c2d1019SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 3131c2d1019SAndreas Gohr */ 3141c2d1019SAndreas Gohrfunction css_interwiki(){ 3151c2d1019SAndreas Gohr 3161c2d1019SAndreas Gohr // default style 3171c2d1019SAndreas Gohr echo 'a.interwiki {'; 3181c2d1019SAndreas Gohr echo ' background: transparent url('.DOKU_BASE.'lib/images/interwiki.png) 0px 1px no-repeat;'; 3197b4ea081Smarklundeberg echo ' padding: 1px 0px 1px 16px;'; 3201c2d1019SAndreas Gohr echo '}'; 3211c2d1019SAndreas Gohr 3221c2d1019SAndreas Gohr // additional styles when icon available 3231c2d1019SAndreas Gohr $iwlinks = getInterwiki(); 3241c2d1019SAndreas Gohr foreach(array_keys($iwlinks) as $iw){ 3259d2ddea4SAndreas Gohr $class = preg_replace('/[^_\-a-z0-9]+/i','_',$iw); 32679e79377SAndreas Gohr if(file_exists(DOKU_INC.'lib/images/interwiki/'.$iw.'.png')){ 3279d2ddea4SAndreas Gohr echo "a.iw_$class {"; 3281c2d1019SAndreas Gohr echo ' background-image: url('.DOKU_BASE.'lib/images/interwiki/'.$iw.'.png)'; 3291c2d1019SAndreas Gohr echo '}'; 33079e79377SAndreas Gohr }elseif(file_exists(DOKU_INC.'lib/images/interwiki/'.$iw.'.gif')){ 3319d2ddea4SAndreas Gohr echo "a.iw_$class {"; 3321c2d1019SAndreas Gohr echo ' background-image: url('.DOKU_BASE.'lib/images/interwiki/'.$iw.'.gif)'; 3331c2d1019SAndreas Gohr echo '}'; 3341c2d1019SAndreas Gohr } 3351c2d1019SAndreas Gohr } 336d15166e5SAndreas Gohr} 3371c2d1019SAndreas Gohr 338d15166e5SAndreas Gohr/** 339d15166e5SAndreas Gohr * Prints classes for file download links 340d15166e5SAndreas Gohr * 341d15166e5SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 342d15166e5SAndreas Gohr */ 343d15166e5SAndreas Gohrfunction css_filetypes(){ 344d15166e5SAndreas Gohr 345d15166e5SAndreas Gohr // default style 346035e07f1SKate Arzamastseva echo '.mediafile {'; 347d15166e5SAndreas Gohr echo ' background: transparent url('.DOKU_BASE.'lib/images/fileicons/file.png) 0px 1px no-repeat;'; 3485b77caf4SAndreas Gohr echo ' padding-left: 18px;'; 3495b77caf4SAndreas Gohr echo ' padding-bottom: 1px;'; 350d15166e5SAndreas Gohr echo '}'; 351d15166e5SAndreas Gohr 352d15166e5SAndreas Gohr // additional styles when icon available 35327bf7924STom N Harris // scan directory for all icons 35427bf7924STom N Harris $exts = array(); 35527bf7924STom N Harris if($dh = opendir(DOKU_INC.'lib/images/fileicons')){ 35627bf7924STom N Harris while(false !== ($file = readdir($dh))){ 35727bf7924STom N Harris if(preg_match('/([_\-a-z0-9]+(?:\.[_\-a-z0-9]+)*?)\.(png|gif)/i',$file,$match)){ 35827bf7924STom N Harris $ext = strtolower($match[1]); 35927bf7924STom N Harris $type = '.'.strtolower($match[2]); 36027bf7924STom N Harris if($ext!='file' && (!isset($exts[$ext]) || $type=='.png')){ 36127bf7924STom N Harris $exts[$ext] = $type; 362d15166e5SAndreas Gohr } 363d15166e5SAndreas Gohr } 3641c2d1019SAndreas Gohr } 36527bf7924STom N Harris closedir($dh); 36627bf7924STom N Harris } 36727bf7924STom N Harris foreach($exts as $ext=>$type){ 36827bf7924STom N Harris $class = preg_replace('/[^_\-a-z0-9]+/','_',$ext); 369035e07f1SKate Arzamastseva echo ".mf_$class {"; 37027bf7924STom N Harris echo ' background-image: url('.DOKU_BASE.'lib/images/fileicons/'.$ext.$type.')'; 37127bf7924STom N Harris echo '}'; 37227bf7924STom N Harris } 37327bf7924STom N Harris} 3741c2d1019SAndreas Gohr 3751c2d1019SAndreas Gohr/** 37678a6aeb1SAndreas Gohr * Loads a given file and fixes relative URLs with the 37778a6aeb1SAndreas Gohr * given location prefix 378253d4b48SGerrit Uitslag * 379253d4b48SGerrit Uitslag * @param string $file file system path 380253d4b48SGerrit Uitslag * @param string $location 381253d4b48SGerrit Uitslag * @return string 38278a6aeb1SAndreas Gohr */ 38378a6aeb1SAndreas Gohrfunction css_loadfile($file,$location=''){ 38412ffbbc3SChristopher Smith $css_file = new DokuCssFile($file); 38512ffbbc3SChristopher Smith return $css_file->load($location); 38612ffbbc3SChristopher Smith} 38712ffbbc3SChristopher Smith 3881e2c5948SChristopher Smith/** 3891e2c5948SChristopher Smith * Helper class to abstract loading of css/less files 3901e2c5948SChristopher Smith * 3911e2c5948SChristopher Smith * @author Chris Smith <chris@jalakai.co.uk> 3921e2c5948SChristopher Smith */ 39312ffbbc3SChristopher Smithclass DokuCssFile { 39412ffbbc3SChristopher Smith 3951e2c5948SChristopher Smith protected $filepath; // file system path to the CSS/Less file 3961e2c5948SChristopher Smith protected $location; // base url location of the CSS/Less file 397fd18b5f4SGerrit Uitslag protected $relative_path = null; 39812ffbbc3SChristopher Smith 39912ffbbc3SChristopher Smith public function __construct($file) { 40012ffbbc3SChristopher Smith $this->filepath = $file; 40112ffbbc3SChristopher Smith } 40212ffbbc3SChristopher Smith 4031e2c5948SChristopher Smith /** 4041e2c5948SChristopher Smith * Load the contents of the css/less file and adjust any relative paths/urls (relative to this file) to be 4051e2c5948SChristopher Smith * relative to the dokuwiki root: the web root (DOKU_BASE) for most files; the file system root (DOKU_INC) 4061e2c5948SChristopher Smith * for less files. 4071e2c5948SChristopher Smith * 4081e2c5948SChristopher Smith * @param string $location base url for this file 4091e2c5948SChristopher Smith * @return string the CSS/Less contents of the file 4101e2c5948SChristopher Smith */ 41112ffbbc3SChristopher Smith public function load($location='') { 41279e79377SAndreas Gohr if (!file_exists($this->filepath)) return ''; 41312ffbbc3SChristopher Smith 41412ffbbc3SChristopher Smith $css = io_readFile($this->filepath); 41578a6aeb1SAndreas Gohr if (!$location) return $css; 41678a6aeb1SAndreas Gohr 41712ffbbc3SChristopher Smith $this->location = $location; 418de737055SChristopher Smith 41912ffbbc3SChristopher Smith $css = preg_replace_callback('#(url\( *)([\'"]?)(.*?)(\2)( *\))#',array($this,'replacements'),$css); 42012ffbbc3SChristopher Smith $css = preg_replace_callback('#(@import\s+)([\'"])(.*?)(\2)#',array($this,'replacements'),$css); 421809d3ba5SAndreas Gohr 42278a6aeb1SAndreas Gohr return $css; 42378a6aeb1SAndreas Gohr } 42478a6aeb1SAndreas Gohr 4251e2c5948SChristopher Smith /** 4261e2c5948SChristopher Smith * Get the relative file system path of this file, relative to dokuwiki's root folder, DOKU_INC 4271e2c5948SChristopher Smith * 4281e2c5948SChristopher Smith * @return string relative file system path 4291e2c5948SChristopher Smith */ 430fd18b5f4SGerrit Uitslag protected function getRelativePath(){ 43112ffbbc3SChristopher Smith 43212ffbbc3SChristopher Smith if (is_null($this->relative_path)) { 43312ffbbc3SChristopher Smith $basedir = array(DOKU_INC); 4341e2c5948SChristopher Smith 4351e2c5948SChristopher Smith // during testing, files may be found relative to a second base dir, TMP_DIR 43612ffbbc3SChristopher Smith if (defined('DOKU_UNITTEST')) { 43712ffbbc3SChristopher Smith $basedir[] = realpath(TMP_DIR); 43812ffbbc3SChristopher Smith } 43912ffbbc3SChristopher Smith 44073f25ac0SAndreas Gohr $basedir = array_map('preg_quote_cb', $basedir); 44173f25ac0SAndreas Gohr $regex = '/^('.join('|',$basedir).')/'; 44212ffbbc3SChristopher Smith $this->relative_path = preg_replace($regex, '', dirname($this->filepath)); 44312ffbbc3SChristopher Smith } 44412ffbbc3SChristopher Smith 44512ffbbc3SChristopher Smith return $this->relative_path; 44612ffbbc3SChristopher Smith } 44712ffbbc3SChristopher Smith 4481e2c5948SChristopher Smith /** 4491e2c5948SChristopher Smith * preg_replace callback to adjust relative urls from relative to this file to relative 4501e2c5948SChristopher Smith * to the appropriate dokuwiki root location as described in the code 4511e2c5948SChristopher Smith * 4521e2c5948SChristopher Smith * @param array see http://php.net/preg_replace_callback 4531e2c5948SChristopher Smith * @return string see http://php.net/preg_replace_callback 4541e2c5948SChristopher Smith */ 45512ffbbc3SChristopher Smith public function replacements($match) { 456de737055SChristopher Smith 4571e2c5948SChristopher Smith // not a relative url? - no adjustment required 458de737055SChristopher Smith if (preg_match('#^(/|data:|https?://)#',$match[3])) { 459de737055SChristopher Smith return $match[0]; 460de737055SChristopher Smith } 4611e2c5948SChristopher Smith // a less file import? - requires a file system location 462de737055SChristopher Smith else if (substr($match[3],-5) == '.less') { 463de737055SChristopher Smith if ($match[3]{0} != '/') { 46412ffbbc3SChristopher Smith $match[3] = $this->getRelativePath() . '/' . $match[3]; 465de737055SChristopher Smith } 466de737055SChristopher Smith } 4671e2c5948SChristopher Smith // everything else requires a url adjustment 468de737055SChristopher Smith else { 46912ffbbc3SChristopher Smith $match[3] = $this->location . $match[3]; 470de737055SChristopher Smith } 471de737055SChristopher Smith 472de737055SChristopher Smith return join('',array_slice($match,1)); 473de737055SChristopher Smith } 47412ffbbc3SChristopher Smith} 475de737055SChristopher Smith 476809d3ba5SAndreas Gohr/** 4774eb5f931SChristopher Smith * Convert local image URLs to data URLs if the filesize is small 478809d3ba5SAndreas Gohr * 479809d3ba5SAndreas Gohr * Callback for preg_replace_callback 480253d4b48SGerrit Uitslag * 481253d4b48SGerrit Uitslag * @param array $match 482253d4b48SGerrit Uitslag * @return string 483809d3ba5SAndreas Gohr */ 484809d3ba5SAndreas Gohrfunction css_datauri($match){ 48528f4004cSAndreas Gohr global $conf; 48628f4004cSAndreas Gohr 487809d3ba5SAndreas Gohr $pre = unslash($match[1]); 488809d3ba5SAndreas Gohr $base = unslash($match[2]); 489809d3ba5SAndreas Gohr $url = unslash($match[3]); 490809d3ba5SAndreas Gohr $ext = unslash($match[4]); 491809d3ba5SAndreas Gohr 492809d3ba5SAndreas Gohr $local = DOKU_INC.$url; 493809d3ba5SAndreas Gohr $size = @filesize($local); 49428f4004cSAndreas Gohr if($size && $size < $conf['cssdatauri']){ 495809d3ba5SAndreas Gohr $data = base64_encode(file_get_contents($local)); 496809d3ba5SAndreas Gohr } 4978f34cf3dSMichael Große if (!empty($data)){ 4986a5d6817SAnika Henke $url = 'data:image/'.$ext.';base64,'.$data; 499809d3ba5SAndreas Gohr }else{ 500809d3ba5SAndreas Gohr $url = $base.$url; 501809d3ba5SAndreas Gohr } 502809d3ba5SAndreas Gohr return $pre.$url; 503809d3ba5SAndreas Gohr} 504809d3ba5SAndreas Gohr 50515c394afSAndreas Gohr 50678a6aeb1SAndreas Gohr/** 50778a6aeb1SAndreas Gohr * Returns a list of possible Plugin Styles (no existance check here) 50878a6aeb1SAndreas Gohr * 50978a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 510253d4b48SGerrit Uitslag * 511253d4b48SGerrit Uitslag * @param string $mediatype 512253d4b48SGerrit Uitslag * @return array 51378a6aeb1SAndreas Gohr */ 514318cd03eSAnika Henkefunction css_pluginstyles($mediatype='screen'){ 51578a6aeb1SAndreas Gohr $list = array(); 51678a6aeb1SAndreas Gohr $plugins = plugin_list(); 51778a6aeb1SAndreas Gohr foreach ($plugins as $p){ 518318cd03eSAnika Henke $list[DOKU_PLUGIN."$p/$mediatype.css"] = DOKU_BASE."lib/plugins/$p/"; 519d4a1ece8SAndreas Gohr $list[DOKU_PLUGIN."$p/$mediatype.less"] = DOKU_BASE."lib/plugins/$p/"; 520318cd03eSAnika Henke // alternative for screen.css 521318cd03eSAnika Henke if ($mediatype=='screen') { 52278a6aeb1SAndreas Gohr $list[DOKU_PLUGIN."$p/style.css"] = DOKU_BASE."lib/plugins/$p/"; 523d4a1ece8SAndreas Gohr $list[DOKU_PLUGIN."$p/style.less"] = DOKU_BASE."lib/plugins/$p/"; 52478a6aeb1SAndreas Gohr } 52578a6aeb1SAndreas Gohr } 52678a6aeb1SAndreas Gohr return $list; 52778a6aeb1SAndreas Gohr} 52878a6aeb1SAndreas Gohr 52978a6aeb1SAndreas Gohr/** 53078a6aeb1SAndreas Gohr * Very simple CSS optimizer 53178a6aeb1SAndreas Gohr * 53278a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 533253d4b48SGerrit Uitslag * 534253d4b48SGerrit Uitslag * @param string $css 535253d4b48SGerrit Uitslag * @return string 53678a6aeb1SAndreas Gohr */ 53778a6aeb1SAndreas Gohrfunction css_compress($css){ 538fd7c2db0SAndreas Gohr //strip comments through a callback 539fd7c2db0SAndreas Gohr $css = preg_replace_callback('#(/\*)(.*?)(\*/)#s','css_comment_cb',$css); 540fd7c2db0SAndreas Gohr 541247c1c5dSAndreas Gohr //strip (incorrect but common) one line comments 542fe5a50c3SAndreas Gohr $css = preg_replace_callback('/^.*\/\/.*$/m','css_onelinecomment_cb',$css); 543247c1c5dSAndreas Gohr 54478a6aeb1SAndreas Gohr // strip whitespaces 54578a6aeb1SAndreas Gohr $css = preg_replace('![\r\n\t ]+!',' ',$css); 546f5379589SChristopher Smith $css = preg_replace('/ ?([;,{}\/]) ?/','\\1',$css); 547f5379589SChristopher Smith $css = preg_replace('/ ?: /',':',$css); 54878a6aeb1SAndreas Gohr 549205907a7Sfurun // number compression 550205907a7Sfurun $css = preg_replace('/([: ])0+(\.\d+?)0*((?:pt|pc|in|mm|cm|em|ex|px)\b|%)(?=[^\{]*[;\}])/', '$1$2$3', $css); // "0.1em" to ".1em", "1.10em" to "1.1em" 551205907a7Sfurun $css = preg_replace('/([: ])\.(0)+((?:pt|pc|in|mm|cm|em|ex|px)\b|%)(?=[^\{]*[;\}])/', '$1$2', $css); // ".0em" to "0" 552205907a7Sfurun $css = preg_replace('/([: ]0)0*(\.0*)?((?:pt|pc|in|mm|cm|em|ex|px)(?=[^\{]*[;\}])\b|%)/', '$1', $css); // "0.0em" to "0" 553205907a7Sfurun $css = preg_replace('/([: ]\d+)(\.0*)((?:pt|pc|in|mm|cm|em|ex|px)(?=[^\{]*[;\}])\b|%)/', '$1$3', $css); // "1.0em" to "1em" 554205907a7Sfurun $css = preg_replace('/([: ])0+(\d+|\d*\.\d+)((?:pt|pc|in|mm|cm|em|ex|px)(?=[^\{]*[;\}])\b|%)/', '$1$2$3', $css); // "001em" to "1em" 555205907a7Sfurun 556205907a7Sfurun // shorten attributes (1em 1em 1em 1em -> 1em) 557205907a7Sfurun $css = preg_replace('/(?<![\w\-])((?:margin|padding|border|border-(?:width|radius)):)([\w\.]+)( \2)+(?=[;\}]| !)/', '$1$2', $css); // "1em 1em 1em 1em" to "1em" 558205907a7Sfurun $css = preg_replace('/(?<![\w\-])((?:margin|padding|border|border-(?:width)):)([\w\.]+) ([\w\.]+) \2 \3(?=[;\}]| !)/', '$1$2 $3', $css); // "1em 2em 1em 2em" to "1em 2em" 559205907a7Sfurun 56078a6aeb1SAndreas Gohr // shorten colors 561205907a7Sfurun $css = preg_replace("/#([0-9a-fA-F]{1})\\1([0-9a-fA-F]{1})\\2([0-9a-fA-F]{1})\\3(?=[^\{]*[;\}])/", "#\\1\\2\\3", $css); 56278a6aeb1SAndreas Gohr 56378a6aeb1SAndreas Gohr return $css; 56478a6aeb1SAndreas Gohr} 56578a6aeb1SAndreas Gohr 566c00aef76SAndreas Gohr/** 567c00aef76SAndreas Gohr * Callback for css_compress() 568c00aef76SAndreas Gohr * 569c00aef76SAndreas Gohr * Keeps short comments (< 5 chars) to maintain typical browser hacks 570c00aef76SAndreas Gohr * 571c00aef76SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 572253d4b48SGerrit Uitslag * 573253d4b48SGerrit Uitslag * @param array $matches 574253d4b48SGerrit Uitslag * @return string 575c00aef76SAndreas Gohr */ 576c00aef76SAndreas Gohrfunction css_comment_cb($matches){ 577c00aef76SAndreas Gohr if(strlen($matches[2]) > 4) return ''; 578c00aef76SAndreas Gohr return $matches[0]; 579c00aef76SAndreas Gohr} 58078a6aeb1SAndreas Gohr 581fe5a50c3SAndreas Gohr/** 582fe5a50c3SAndreas Gohr * Callback for css_compress() 583fe5a50c3SAndreas Gohr * 584fe5a50c3SAndreas Gohr * Strips one line comments but makes sure it will not destroy url() constructs with slashes 585fe5a50c3SAndreas Gohr * 586253d4b48SGerrit Uitslag * @param array $matches 587fe5a50c3SAndreas Gohr * @return string 588fe5a50c3SAndreas Gohr */ 589fe5a50c3SAndreas Gohrfunction css_onelinecomment_cb($matches) { 590fe5a50c3SAndreas Gohr $line = $matches[0]; 591fe5a50c3SAndreas Gohr 592fe5a50c3SAndreas Gohr $i = 0; 593fe5a50c3SAndreas Gohr $len = strlen($line); 594918a4468SAndreas Gohr 595fe5a50c3SAndreas Gohr while ($i< $len){ 596fe5a50c3SAndreas Gohr $nextcom = strpos($line, '//', $i); 597fe5a50c3SAndreas Gohr $nexturl = stripos($line, 'url(', $i); 598fe5a50c3SAndreas Gohr 599fe5a50c3SAndreas Gohr if($nextcom === false) { 600fe5a50c3SAndreas Gohr // no more comments, we're done 601918a4468SAndreas Gohr $i = $len; 602fe5a50c3SAndreas Gohr break; 603fe5a50c3SAndreas Gohr } 604fe5a50c3SAndreas Gohr 605918a4468SAndreas Gohr // keep any quoted string that starts before a comment 606918a4468SAndreas Gohr $nextsqt = strpos($line, "'", $i); 607918a4468SAndreas Gohr $nextdqt = strpos($line, '"', $i); 608918a4468SAndreas Gohr if(min($nextsqt, $nextdqt) < $nextcom) { 609918a4468SAndreas Gohr $skipto = false; 610918a4468SAndreas Gohr if($nextsqt !== false && ($nextdqt === false || $nextsqt < $nextdqt)) { 611918a4468SAndreas Gohr $skipto = strpos($line, "'", $nextsqt+1) +1; 612918a4468SAndreas Gohr } else if ($nextdqt !== false) { 613918a4468SAndreas Gohr $skipto = strpos($line, '"', $nextdqt+1) +1; 614918a4468SAndreas Gohr } 615918a4468SAndreas Gohr 616918a4468SAndreas Gohr if($skipto !== false) { 617918a4468SAndreas Gohr $i = $skipto; 618918a4468SAndreas Gohr continue; 619918a4468SAndreas Gohr } 620918a4468SAndreas Gohr } 621918a4468SAndreas Gohr 622918a4468SAndreas Gohr if($nexturl === false || $nextcom < $nexturl) { 623918a4468SAndreas Gohr // no url anymore, strip comment and be done 624918a4468SAndreas Gohr $i = $nextcom; 625918a4468SAndreas Gohr break; 626918a4468SAndreas Gohr } 627918a4468SAndreas Gohr 628918a4468SAndreas Gohr // we have an upcoming url 629918a4468SAndreas Gohr $i = strpos($line, ')', $nexturl); 630918a4468SAndreas Gohr } 631918a4468SAndreas Gohr 632918a4468SAndreas Gohr return substr($line, 0, $i); 633fe5a50c3SAndreas Gohr} 634fe5a50c3SAndreas Gohr 635e3776c06SMichael Hamann//Setup VIM: ex: et ts=4 : 636