xref: /dokuwiki/lib/exe/css.php (revision 64159a61e94d0ce680071c8890e144982c3a8cbe)
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') {
70*64159a61SAndreas Gohr            $files[DOKU_INC.'lib/scripts/jquery/jquery-ui-theme/smoothness.css'] =
71*64159a61SAndreas Gohr                DOKU_BASE.'lib/scripts/jquery/jquery-ui-theme/';
726c47a78cSAnika Henke        }
73318cd03eSAnika Henke        // load plugin styles
74ef36714bSGerry Weißbach        $files = array_merge($files, css_pluginstyles($mediatype));
75318cd03eSAnika Henke        // load template styles
76afb2c082SAndreas Gohr        if (isset($styleini['stylesheets'][$mediatype])) {
77ef36714bSGerry Weißbach            $files = array_merge($files, $styleini['stylesheets'][$mediatype]);
7809edb711SAndreas Gohr        }
79318cd03eSAnika Henke        // load user styles
807b909d5eSGerrit Uitslag        if(!empty($config_cascade['userstyle'][$mediatype])) {
817b909d5eSGerrit Uitslag            foreach($config_cascade['userstyle'][$mediatype] as $userstyle) {
82ef36714bSGerry Weißbach                $files[$userstyle] = DOKU_BASE;
837b909d5eSGerrit Uitslag            }
84318cd03eSAnika Henke        }
8578a6aeb1SAndreas Gohr
86ef36714bSGerry Weißbach        // Let plugins decide to either put more styles here or to remove some
873e32b194SGerry Weißbach        $media_files[$mediatype] = css_filewrapper($mediatype, $files);
88ef36714bSGerry Weißbach        $CSSEvt = new Doku_Event('CSS_STYLES_INCLUDED', $media_files[$mediatype]);
89ef36714bSGerry Weißbach
90ef36714bSGerry Weißbach        // Make it preventable.
91ef36714bSGerry Weißbach        if ( $CSSEvt->advise_before() ) {
92ef36714bSGerry Weißbach            $cache_files = array_merge($cache_files, array_keys($media_files[$mediatype]['files']));
93ef36714bSGerry Weißbach        } else {
94ef36714bSGerry Weißbach            // unset if prevented. Nothing will be printed for this mediatype.
95ef36714bSGerry Weißbach            unset($media_files[$mediatype]);
9614977bd2SMichael Hamann        }
976619f42eSAdrian Lang
98ef36714bSGerry Weißbach        // finish event.
99ef36714bSGerry Weißbach        $CSSEvt->advise_after();
100ef36714bSGerry Weißbach    }
101ef36714bSGerry Weißbach
102ef36714bSGerry Weißbach    // The generated script depends on some dynamic options
103*64159a61SAndreas Gohr    $cache = new cache(
104*64159a61SAndreas Gohr        'styles' .
105*64159a61SAndreas Gohr        $_SERVER['HTTP_HOST'] .
106*64159a61SAndreas Gohr        $_SERVER['SERVER_PORT'] .
107*64159a61SAndreas Gohr        $INPUT->bool('preview') .
108*64159a61SAndreas Gohr        DOKU_BASE .
109*64159a61SAndreas Gohr        $tpl .
110*64159a61SAndreas Gohr        $type,
111*64159a61SAndreas Gohr        '.css'
112*64159a61SAndreas Gohr    );
113ef36714bSGerry Weißbach    $cache->_event = 'CSS_CACHE_USE';
114ef36714bSGerry Weißbach
11538f56bffSBen Coburn    // check cache age & handle conditional request
1166619f42eSAdrian Lang    // This may exit if a cache can be used
117e7c68c4dSGerry Weißbach    $cache_ok = $cache->useCache(array('files' => $cache_files));
118e7c68c4dSGerry Weißbach    http_cached($cache->cache, $cache_ok);
11978a6aeb1SAndreas Gohr
1203899c2ecSMichael Hamann    // start output buffering
1213899c2ecSMichael Hamann    ob_start();
1223899c2ecSMichael Hamann
123ef36714bSGerry Weißbach    // Fire CSS_STYLES_INCLUDED for one last time to let the
124ef36714bSGerry Weißbach    // plugins decide whether to include the DW default styles.
125ef36714bSGerry Weißbach    // This can be done by preventing the Default.
126ef36714bSGerry Weißbach    $media_files['DW_DEFAULT'] = css_filewrapper('DW_DEFAULT');
127ef36714bSGerry Weißbach    trigger_event('CSS_STYLES_INCLUDED', $media_files['DW_DEFAULT'], 'css_defaultstyles');
128ef36714bSGerry Weißbach
1296c47a78cSAnika Henke    // build the stylesheet
13014977bd2SMichael Hamann    foreach ($mediatypes as $mediatype) {
13178a6aeb1SAndreas Gohr
132ef36714bSGerry Weißbach        // Check if there is a wrapper set for this type.
133ef36714bSGerry Weißbach        if ( !isset($media_files[$mediatype]) ) {
134ef36714bSGerry Weißbach            continue;
13578a6aeb1SAndreas Gohr        }
13678a6aeb1SAndreas Gohr
137ef36714bSGerry Weißbach        $cssData = $media_files[$mediatype];
138ef36714bSGerry Weißbach
139ef36714bSGerry Weißbach        // Print the styles.
140ef36714bSGerry Weißbach        print NL;
141ef36714bSGerry Weißbach        if ( $cssData['encapsulate'] === true ) print $cssData['encapsulationPrefix'] . ' {';
142ef36714bSGerry Weißbach        print '/* START '.$cssData['mediatype'].' styles */'.NL;
143ef36714bSGerry Weißbach
1446c47a78cSAnika Henke        // load files
145ef36714bSGerry Weißbach        foreach($cssData['files'] as $file => $location){
14672a66eb7SAndreas Gohr            $display = str_replace(fullpath(DOKU_INC), '', fullpath($file));
147ef36714bSGerry Weißbach            print "\n/* XXXXXXXXX $display XXXXXXXXX */\n";
148ef36714bSGerry Weißbach            print css_loadfile($file, $location);
1496c47a78cSAnika Henke        }
150ef36714bSGerry Weißbach
151ef36714bSGerry Weißbach        print NL;
152ef36714bSGerry Weißbach        if ( $cssData['encapsulate'] === true ) print '} /* /@media ';
153ef36714bSGerry Weißbach        else print '/*';
154ef36714bSGerry Weißbach        print ' END '.$cssData['mediatype'].' styles */'.NL;
1556c47a78cSAnika Henke    }
156ef36714bSGerry Weißbach
15778a6aeb1SAndreas Gohr    // end output buffering and get contents
15878a6aeb1SAndreas Gohr    $css = ob_get_contents();
15978a6aeb1SAndreas Gohr    ob_end_clean();
16078a6aeb1SAndreas Gohr
161f8fb2d18SAndreas Gohr    // strip any source maps
162f8fb2d18SAndreas Gohr    stripsourcemaps($css);
163f8fb2d18SAndreas Gohr
1646e69c1baSAndreas Gohr    // apply style replacements
165afb2c082SAndreas Gohr    $css = css_applystyle($css, $styleini['replacements']);
1666e69c1baSAndreas Gohr
16772a66eb7SAndreas Gohr    // parse less
16872a66eb7SAndreas Gohr    $css = css_parseless($css);
169d4a1ece8SAndreas Gohr
17078a6aeb1SAndreas Gohr    // compress whitespace and comments
17178a6aeb1SAndreas Gohr    if($conf['compress']){
17278a6aeb1SAndreas Gohr        $css = css_compress($css);
17378a6aeb1SAndreas Gohr    }
17478a6aeb1SAndreas Gohr
175809d3ba5SAndreas Gohr    // embed small images right into the stylesheet
176809d3ba5SAndreas Gohr    if($conf['cssdatauri']){
177809d3ba5SAndreas Gohr        $base = preg_quote(DOKU_BASE,'#');
178809d3ba5SAndreas Gohr        $css = preg_replace_callback('#(url\([ \'"]*)('.$base.')(.*?(?:\.(png|gif)))#i','css_datauri',$css);
179809d3ba5SAndreas Gohr    }
180809d3ba5SAndreas Gohr
1816619f42eSAdrian Lang    http_cached_finish($cache->cache, $css);
18278a6aeb1SAndreas Gohr}
18378a6aeb1SAndreas Gohr
18478a6aeb1SAndreas Gohr/**
18572a66eb7SAndreas Gohr * Uses phpless to parse LESS in our CSS
18672a66eb7SAndreas Gohr *
18772a66eb7SAndreas Gohr * most of this function is error handling to show a nice useful error when
18872a66eb7SAndreas Gohr * LESS compilation fails
18972a66eb7SAndreas Gohr *
190253d4b48SGerrit Uitslag * @param string $css
19172a66eb7SAndreas Gohr * @return string
19272a66eb7SAndreas Gohr */
19372a66eb7SAndreas Gohrfunction css_parseless($css) {
1947d247a3cSGerrit Uitslag    global $conf;
1957d247a3cSGerrit Uitslag
19672a66eb7SAndreas Gohr    $less = new lessc();
197343a31d8SAndreas Gohr    $less->importDir = array(DOKU_INC);
1987d247a3cSGerrit Uitslag    $less->setPreserveComments(!$conf['compress']);
19930f686ebSChristopher Smith
20030f686ebSChristopher Smith    if (defined('DOKU_UNITTEST')){
20130f686ebSChristopher Smith        $less->importDir[] = TMP_DIR;
20230f686ebSChristopher Smith    }
20330f686ebSChristopher Smith
20472a66eb7SAndreas Gohr    try {
20572a66eb7SAndreas Gohr        return $less->compile($css);
20672a66eb7SAndreas Gohr    } catch(Exception $e) {
20772a66eb7SAndreas Gohr        // get exception message
20872a66eb7SAndreas Gohr        $msg = str_replace(array("\n", "\r", "'"), array(), $e->getMessage());
20972a66eb7SAndreas Gohr
21072a66eb7SAndreas Gohr        // try to use line number to find affected file
21172a66eb7SAndreas Gohr        if(preg_match('/line: (\d+)$/', $msg, $m)){
21272a66eb7SAndreas Gohr            $msg = substr($msg, 0, -1* strlen($m[0])); //remove useless linenumber
21372a66eb7SAndreas Gohr            $lno = $m[1];
21472a66eb7SAndreas Gohr
21572a66eb7SAndreas Gohr            // walk upwards to last include
21672a66eb7SAndreas Gohr            $lines = explode("\n", $css);
21772a66eb7SAndreas Gohr            for($i=$lno-1; $i>=0; $i--){
21872a66eb7SAndreas Gohr                if(preg_match('/\/(\* XXXXXXXXX )(.*?)( XXXXXXXXX \*)\//', $lines[$i], $m)){
21972a66eb7SAndreas Gohr                    // we found it, add info to message
22072a66eb7SAndreas Gohr                    $msg .= ' in '.$m[2].' at line '.($lno-$i);
22172a66eb7SAndreas Gohr                    break;
22272a66eb7SAndreas Gohr                }
22372a66eb7SAndreas Gohr            }
22472a66eb7SAndreas Gohr        }
22572a66eb7SAndreas Gohr
22672a66eb7SAndreas Gohr        // something went wrong
22772a66eb7SAndreas Gohr        $error = 'A fatal error occured during compilation of the CSS files. '.
22872a66eb7SAndreas Gohr            'If you recently installed a new plugin or template it '.
22972a66eb7SAndreas Gohr            'might be broken and you should try disabling it again. ['.$msg.']';
23072a66eb7SAndreas Gohr
23172a66eb7SAndreas Gohr        echo ".dokuwiki:before {
23272a66eb7SAndreas Gohr            content: '$error';
23372a66eb7SAndreas Gohr            background-color: red;
23472a66eb7SAndreas Gohr            display: block;
23572a66eb7SAndreas Gohr            background-color: #fcc;
23672a66eb7SAndreas Gohr            border-color: #ebb;
23772a66eb7SAndreas Gohr            color: #000;
23872a66eb7SAndreas Gohr            padding: 0.5em;
23972a66eb7SAndreas Gohr        }";
24072a66eb7SAndreas Gohr
24172a66eb7SAndreas Gohr        exit;
24272a66eb7SAndreas Gohr    }
24372a66eb7SAndreas Gohr}
24472a66eb7SAndreas Gohr
24572a66eb7SAndreas Gohr/**
2466e69c1baSAndreas Gohr * Does placeholder replacements in the style according to
2476e69c1baSAndreas Gohr * the ones defined in a templates style.ini file
2486e69c1baSAndreas Gohr *
249d4a1ece8SAndreas Gohr * This also adds the ini defined placeholders as less variables
250d4a1ece8SAndreas Gohr * (sans the surrounding __ and with a ini_ prefix)
251d4a1ece8SAndreas Gohr *
2526e69c1baSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
253253d4b48SGerrit Uitslag *
254253d4b48SGerrit Uitslag * @param string $css
255253d4b48SGerrit Uitslag * @param array $replacements  array(placeholder => value)
256253d4b48SGerrit Uitslag * @return string
2576e69c1baSAndreas Gohr */
258afb2c082SAndreas Gohrfunction css_applystyle($css, $replacements) {
259cbe37079SAndreas Gohr    // we convert ini replacements to LESS variable names
260cbe37079SAndreas Gohr    // and build a list of variable: value; pairs
261d4a1ece8SAndreas Gohr    $less = '';
262afb2c082SAndreas Gohr    foreach((array) $replacements as $key => $value) {
263cbe37079SAndreas Gohr        $lkey = trim($key, '_');
264cbe37079SAndreas Gohr        $lkey = '@ini_'.$lkey;
265cbe37079SAndreas Gohr        $less .= "$lkey: $value;\n";
266cbe37079SAndreas Gohr
267afb2c082SAndreas Gohr        $replacements[$key] = $lkey;
268d4a1ece8SAndreas Gohr    }
269c51b334eSAndreas Gohr
270cbe37079SAndreas Gohr    // we now replace all old ini replacements with LESS variables
271afb2c082SAndreas Gohr    $css = strtr($css, $replacements);
272cbe37079SAndreas Gohr
273cbe37079SAndreas Gohr    // now prepend the list of LESS variables as the very first thing
274c51b334eSAndreas Gohr    $css = $less.$css;
2756e69c1baSAndreas Gohr    return $css;
2766e69c1baSAndreas Gohr}
2776e69c1baSAndreas Gohr
2786e69c1baSAndreas Gohr/**
279ef36714bSGerry Weißbach * Wrapper for the files, content and mediatype for the event CSS_STYLES_INCLUDED
280ef36714bSGerry Weißbach *
281ef36714bSGerry Weißbach * @author Gerry Weißbach <gerry.w@gammaproduction.de>
282ef36714bSGerry Weißbach *
283ef36714bSGerry Weißbach * @param string $mediatype type ofthe current media files/content set
284ef36714bSGerry Weißbach * @param array $files set of files that define the current mediatype
285ef36714bSGerry Weißbach * @return array
286ef36714bSGerry Weißbach */
2873e32b194SGerry Weißbachfunction css_filewrapper($mediatype, $files=array()){
288ef36714bSGerry Weißbach    return array(
289ef36714bSGerry Weißbach            'files'                 => $files,
290ef36714bSGerry Weißbach            'mediatype'             => $mediatype,
291cf35519cSGerry Weißbach            'encapsulate'           => $mediatype != 'all',
292ef36714bSGerry Weißbach            'encapsulationPrefix'   => '@media '.$mediatype
293ef36714bSGerry Weißbach        );
294ef36714bSGerry Weißbach}
295ef36714bSGerry Weißbach
296ef36714bSGerry Weißbach/**
297ef36714bSGerry Weißbach * Prints the @media encapsulated default styles of DokuWiki
298ef36714bSGerry Weißbach *
299ef36714bSGerry Weißbach * @author Gerry Weißbach <gerry.w@gammaproduction.de>
300ef36714bSGerry Weißbach *
301ef36714bSGerry Weißbach * This function is being called by a CSS_STYLES_INCLUDED event
302ef36714bSGerry Weißbach * The event can be distinguished by the mediatype which is:
303ef36714bSGerry Weißbach *   DW_DEFAULT
304ef36714bSGerry Weißbach */
305ef36714bSGerry Weißbachfunction css_defaultstyles(){
306ef36714bSGerry Weißbach    // print the default classes for interwiki links and file downloads
307ef36714bSGerry Weißbach    print '@media screen {';
308ef36714bSGerry Weißbach    css_interwiki();
309ef36714bSGerry Weißbach    css_filetypes();
310ef36714bSGerry Weißbach    print '}';
311ef36714bSGerry Weißbach}
312ef36714bSGerry Weißbach
313ef36714bSGerry Weißbach/**
3141c2d1019SAndreas Gohr * Prints classes for interwikilinks
3151c2d1019SAndreas Gohr *
3161c2d1019SAndreas Gohr * Interwiki links have two classes: 'interwiki' and 'iw_$name>' where
3171c2d1019SAndreas Gohr * $name is the identifier given in the config. All Interwiki links get
3181c2d1019SAndreas Gohr * an default style with a default icon. If a special icon is available
3191c2d1019SAndreas Gohr * for an interwiki URL it is set in it's own class. Both classes can be
3201c2d1019SAndreas Gohr * overwritten in the template or userstyles.
3211c2d1019SAndreas Gohr *
3221c2d1019SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
3231c2d1019SAndreas Gohr */
3241c2d1019SAndreas Gohrfunction css_interwiki(){
3251c2d1019SAndreas Gohr
3261c2d1019SAndreas Gohr    // default style
3271c2d1019SAndreas Gohr    echo 'a.interwiki {';
3281c2d1019SAndreas Gohr    echo ' background: transparent url('.DOKU_BASE.'lib/images/interwiki.png) 0px 1px no-repeat;';
3297b4ea081Smarklundeberg    echo ' padding: 1px 0px 1px 16px;';
3301c2d1019SAndreas Gohr    echo '}';
3311c2d1019SAndreas Gohr
3321c2d1019SAndreas Gohr    // additional styles when icon available
3331c2d1019SAndreas Gohr    $iwlinks = getInterwiki();
3341c2d1019SAndreas Gohr    foreach(array_keys($iwlinks) as $iw){
3359d2ddea4SAndreas Gohr        $class = preg_replace('/[^_\-a-z0-9]+/i','_',$iw);
33679e79377SAndreas Gohr        if(file_exists(DOKU_INC.'lib/images/interwiki/'.$iw.'.png')){
3379d2ddea4SAndreas Gohr            echo "a.iw_$class {";
3381c2d1019SAndreas Gohr            echo '  background-image: url('.DOKU_BASE.'lib/images/interwiki/'.$iw.'.png)';
3391c2d1019SAndreas Gohr            echo '}';
34079e79377SAndreas Gohr        }elseif(file_exists(DOKU_INC.'lib/images/interwiki/'.$iw.'.gif')){
3419d2ddea4SAndreas Gohr            echo "a.iw_$class {";
3421c2d1019SAndreas Gohr            echo '  background-image: url('.DOKU_BASE.'lib/images/interwiki/'.$iw.'.gif)';
3431c2d1019SAndreas Gohr            echo '}';
3441c2d1019SAndreas Gohr        }
3451c2d1019SAndreas Gohr    }
346d15166e5SAndreas Gohr}
3471c2d1019SAndreas Gohr
348d15166e5SAndreas Gohr/**
349d15166e5SAndreas Gohr * Prints classes for file download links
350d15166e5SAndreas Gohr *
351d15166e5SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
352d15166e5SAndreas Gohr */
353d15166e5SAndreas Gohrfunction css_filetypes(){
354d15166e5SAndreas Gohr
355d15166e5SAndreas Gohr    // default style
356035e07f1SKate Arzamastseva    echo '.mediafile {';
357d15166e5SAndreas Gohr    echo ' background: transparent url('.DOKU_BASE.'lib/images/fileicons/file.png) 0px 1px no-repeat;';
3585b77caf4SAndreas Gohr    echo ' padding-left: 18px;';
3595b77caf4SAndreas Gohr    echo ' padding-bottom: 1px;';
360d15166e5SAndreas Gohr    echo '}';
361d15166e5SAndreas Gohr
362d15166e5SAndreas Gohr    // additional styles when icon available
36327bf7924STom N Harris    // scan directory for all icons
36427bf7924STom N Harris    $exts = array();
36527bf7924STom N Harris    if($dh = opendir(DOKU_INC.'lib/images/fileicons')){
36627bf7924STom N Harris        while(false !== ($file = readdir($dh))){
36727bf7924STom N Harris            if(preg_match('/([_\-a-z0-9]+(?:\.[_\-a-z0-9]+)*?)\.(png|gif)/i',$file,$match)){
36827bf7924STom N Harris                $ext = strtolower($match[1]);
36927bf7924STom N Harris                $type = '.'.strtolower($match[2]);
37027bf7924STom N Harris                if($ext!='file' && (!isset($exts[$ext]) || $type=='.png')){
37127bf7924STom N Harris                    $exts[$ext] = $type;
372d15166e5SAndreas Gohr                }
373d15166e5SAndreas Gohr            }
3741c2d1019SAndreas Gohr        }
37527bf7924STom N Harris        closedir($dh);
37627bf7924STom N Harris    }
37727bf7924STom N Harris    foreach($exts as $ext=>$type){
37827bf7924STom N Harris        $class = preg_replace('/[^_\-a-z0-9]+/','_',$ext);
379035e07f1SKate Arzamastseva        echo ".mf_$class {";
38027bf7924STom N Harris        echo '  background-image: url('.DOKU_BASE.'lib/images/fileicons/'.$ext.$type.')';
38127bf7924STom N Harris        echo '}';
38227bf7924STom N Harris    }
38327bf7924STom N Harris}
3841c2d1019SAndreas Gohr
3851c2d1019SAndreas Gohr/**
38678a6aeb1SAndreas Gohr * Loads a given file and fixes relative URLs with the
38778a6aeb1SAndreas Gohr * given location prefix
388253d4b48SGerrit Uitslag *
389253d4b48SGerrit Uitslag * @param string $file file system path
390253d4b48SGerrit Uitslag * @param string $location
391253d4b48SGerrit Uitslag * @return string
39278a6aeb1SAndreas Gohr */
39378a6aeb1SAndreas Gohrfunction css_loadfile($file,$location=''){
39412ffbbc3SChristopher Smith    $css_file = new DokuCssFile($file);
39512ffbbc3SChristopher Smith    return $css_file->load($location);
39612ffbbc3SChristopher Smith}
39712ffbbc3SChristopher Smith
3981e2c5948SChristopher Smith/**
3991e2c5948SChristopher Smith *  Helper class to abstract loading of css/less files
4001e2c5948SChristopher Smith *
4011e2c5948SChristopher Smith *  @author Chris Smith <chris@jalakai.co.uk>
4021e2c5948SChristopher Smith */
40312ffbbc3SChristopher Smithclass DokuCssFile {
40412ffbbc3SChristopher Smith
4051e2c5948SChristopher Smith    protected $filepath;             // file system path to the CSS/Less file
4061e2c5948SChristopher Smith    protected $location;             // base url location of the CSS/Less file
407fd18b5f4SGerrit Uitslag    protected $relative_path = null;
40812ffbbc3SChristopher Smith
40912ffbbc3SChristopher Smith    public function __construct($file) {
41012ffbbc3SChristopher Smith        $this->filepath = $file;
41112ffbbc3SChristopher Smith    }
41212ffbbc3SChristopher Smith
4131e2c5948SChristopher Smith    /**
4141e2c5948SChristopher Smith     * Load the contents of the css/less file and adjust any relative paths/urls (relative to this file) to be
4151e2c5948SChristopher Smith     * relative to the dokuwiki root: the web root (DOKU_BASE) for most files; the file system root (DOKU_INC)
4161e2c5948SChristopher Smith     * for less files.
4171e2c5948SChristopher Smith     *
4181e2c5948SChristopher Smith     * @param   string   $location   base url for this file
4191e2c5948SChristopher Smith     * @return  string               the CSS/Less contents of the file
4201e2c5948SChristopher Smith     */
42112ffbbc3SChristopher Smith    public function load($location='') {
42279e79377SAndreas Gohr        if (!file_exists($this->filepath)) return '';
42312ffbbc3SChristopher Smith
42412ffbbc3SChristopher Smith        $css = io_readFile($this->filepath);
42578a6aeb1SAndreas Gohr        if (!$location) return $css;
42678a6aeb1SAndreas Gohr
42712ffbbc3SChristopher Smith        $this->location = $location;
428de737055SChristopher Smith
42912ffbbc3SChristopher Smith        $css = preg_replace_callback('#(url\( *)([\'"]?)(.*?)(\2)( *\))#',array($this,'replacements'),$css);
43012ffbbc3SChristopher Smith        $css = preg_replace_callback('#(@import\s+)([\'"])(.*?)(\2)#',array($this,'replacements'),$css);
431809d3ba5SAndreas Gohr
43278a6aeb1SAndreas Gohr        return $css;
43378a6aeb1SAndreas Gohr    }
43478a6aeb1SAndreas Gohr
4351e2c5948SChristopher Smith    /**
4361e2c5948SChristopher Smith     * Get the relative file system path of this file, relative to dokuwiki's root folder, DOKU_INC
4371e2c5948SChristopher Smith     *
4381e2c5948SChristopher Smith     * @return string   relative file system path
4391e2c5948SChristopher Smith     */
440fd18b5f4SGerrit Uitslag    protected function getRelativePath(){
44112ffbbc3SChristopher Smith
44212ffbbc3SChristopher Smith        if (is_null($this->relative_path)) {
44312ffbbc3SChristopher Smith            $basedir = array(DOKU_INC);
4441e2c5948SChristopher Smith
4451e2c5948SChristopher Smith            // during testing, files may be found relative to a second base dir, TMP_DIR
44612ffbbc3SChristopher Smith            if (defined('DOKU_UNITTEST')) {
44712ffbbc3SChristopher Smith                $basedir[] = realpath(TMP_DIR);
44812ffbbc3SChristopher Smith            }
44912ffbbc3SChristopher Smith
45073f25ac0SAndreas Gohr            $basedir = array_map('preg_quote_cb', $basedir);
45173f25ac0SAndreas Gohr            $regex = '/^('.join('|',$basedir).')/';
45212ffbbc3SChristopher Smith            $this->relative_path = preg_replace($regex, '', dirname($this->filepath));
45312ffbbc3SChristopher Smith        }
45412ffbbc3SChristopher Smith
45512ffbbc3SChristopher Smith        return $this->relative_path;
45612ffbbc3SChristopher Smith    }
45712ffbbc3SChristopher Smith
4581e2c5948SChristopher Smith    /**
4591e2c5948SChristopher Smith     * preg_replace callback to adjust relative urls from relative to this file to relative
4601e2c5948SChristopher Smith     * to the appropriate dokuwiki root location as described in the code
4611e2c5948SChristopher Smith     *
4621e2c5948SChristopher Smith     * @param  array    see http://php.net/preg_replace_callback
4631e2c5948SChristopher Smith     * @return string   see http://php.net/preg_replace_callback
4641e2c5948SChristopher Smith     */
46512ffbbc3SChristopher Smith    public function replacements($match) {
466de737055SChristopher Smith
4671e2c5948SChristopher Smith        // not a relative url? - no adjustment required
468de737055SChristopher Smith        if (preg_match('#^(/|data:|https?://)#',$match[3])) {
469de737055SChristopher Smith            return $match[0];
470de737055SChristopher Smith        }
4711e2c5948SChristopher Smith        // a less file import? - requires a file system location
472de737055SChristopher Smith        else if (substr($match[3],-5) == '.less') {
473de737055SChristopher Smith            if ($match[3]{0} != '/') {
47412ffbbc3SChristopher Smith                $match[3] = $this->getRelativePath() . '/' . $match[3];
475de737055SChristopher Smith            }
476de737055SChristopher Smith        }
4771e2c5948SChristopher Smith        // everything else requires a url adjustment
478de737055SChristopher Smith        else {
47912ffbbc3SChristopher Smith            $match[3] = $this->location . $match[3];
480de737055SChristopher Smith        }
481de737055SChristopher Smith
482de737055SChristopher Smith        return join('',array_slice($match,1));
483de737055SChristopher Smith    }
48412ffbbc3SChristopher Smith}
485de737055SChristopher Smith
486809d3ba5SAndreas Gohr/**
4874eb5f931SChristopher Smith * Convert local image URLs to data URLs if the filesize is small
488809d3ba5SAndreas Gohr *
489809d3ba5SAndreas Gohr * Callback for preg_replace_callback
490253d4b48SGerrit Uitslag *
491253d4b48SGerrit Uitslag * @param array $match
492253d4b48SGerrit Uitslag * @return string
493809d3ba5SAndreas Gohr */
494809d3ba5SAndreas Gohrfunction css_datauri($match){
49528f4004cSAndreas Gohr    global $conf;
49628f4004cSAndreas Gohr
497809d3ba5SAndreas Gohr    $pre   = unslash($match[1]);
498809d3ba5SAndreas Gohr    $base  = unslash($match[2]);
499809d3ba5SAndreas Gohr    $url   = unslash($match[3]);
500809d3ba5SAndreas Gohr    $ext   = unslash($match[4]);
501809d3ba5SAndreas Gohr
502809d3ba5SAndreas Gohr    $local = DOKU_INC.$url;
503809d3ba5SAndreas Gohr    $size  = @filesize($local);
50428f4004cSAndreas Gohr    if($size && $size < $conf['cssdatauri']){
505809d3ba5SAndreas Gohr        $data = base64_encode(file_get_contents($local));
506809d3ba5SAndreas Gohr    }
5078f34cf3dSMichael Große    if (!empty($data)){
5086a5d6817SAnika Henke        $url = 'data:image/'.$ext.';base64,'.$data;
509809d3ba5SAndreas Gohr    }else{
510809d3ba5SAndreas Gohr        $url = $base.$url;
511809d3ba5SAndreas Gohr    }
512809d3ba5SAndreas Gohr    return $pre.$url;
513809d3ba5SAndreas Gohr}
514809d3ba5SAndreas Gohr
51515c394afSAndreas Gohr
51678a6aeb1SAndreas Gohr/**
51778a6aeb1SAndreas Gohr * Returns a list of possible Plugin Styles (no existance check here)
51878a6aeb1SAndreas Gohr *
51978a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
520253d4b48SGerrit Uitslag *
521253d4b48SGerrit Uitslag * @param string $mediatype
522253d4b48SGerrit Uitslag * @return array
52378a6aeb1SAndreas Gohr */
524318cd03eSAnika Henkefunction css_pluginstyles($mediatype='screen'){
52578a6aeb1SAndreas Gohr    $list = array();
52678a6aeb1SAndreas Gohr    $plugins = plugin_list();
52778a6aeb1SAndreas Gohr    foreach ($plugins as $p){
528318cd03eSAnika Henke        $list[DOKU_PLUGIN."$p/$mediatype.css"]  = DOKU_BASE."lib/plugins/$p/";
529d4a1ece8SAndreas Gohr        $list[DOKU_PLUGIN."$p/$mediatype.less"]  = DOKU_BASE."lib/plugins/$p/";
530318cd03eSAnika Henke        // alternative for screen.css
531318cd03eSAnika Henke        if ($mediatype=='screen') {
53278a6aeb1SAndreas Gohr            $list[DOKU_PLUGIN."$p/style.css"]  = DOKU_BASE."lib/plugins/$p/";
533d4a1ece8SAndreas Gohr            $list[DOKU_PLUGIN."$p/style.less"]  = DOKU_BASE."lib/plugins/$p/";
53478a6aeb1SAndreas Gohr        }
53578a6aeb1SAndreas Gohr    }
53678a6aeb1SAndreas Gohr    return $list;
53778a6aeb1SAndreas Gohr}
53878a6aeb1SAndreas Gohr
53978a6aeb1SAndreas Gohr/**
54078a6aeb1SAndreas Gohr * Very simple CSS optimizer
54178a6aeb1SAndreas Gohr *
54278a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
543253d4b48SGerrit Uitslag *
544253d4b48SGerrit Uitslag * @param string $css
545253d4b48SGerrit Uitslag * @return string
54678a6aeb1SAndreas Gohr */
54778a6aeb1SAndreas Gohrfunction css_compress($css){
548fd7c2db0SAndreas Gohr    //strip comments through a callback
549fd7c2db0SAndreas Gohr    $css = preg_replace_callback('#(/\*)(.*?)(\*/)#s','css_comment_cb',$css);
550fd7c2db0SAndreas Gohr
551247c1c5dSAndreas Gohr    //strip (incorrect but common) one line comments
552fe5a50c3SAndreas Gohr    $css = preg_replace_callback('/^.*\/\/.*$/m','css_onelinecomment_cb',$css);
553247c1c5dSAndreas Gohr
55478a6aeb1SAndreas Gohr    // strip whitespaces
55578a6aeb1SAndreas Gohr    $css = preg_replace('![\r\n\t ]+!',' ',$css);
556f5379589SChristopher Smith    $css = preg_replace('/ ?([;,{}\/]) ?/','\\1',$css);
557f5379589SChristopher Smith    $css = preg_replace('/ ?: /',':',$css);
55878a6aeb1SAndreas Gohr
559205907a7Sfurun    // number compression
560*64159a61SAndreas Gohr    $css = preg_replace(
561*64159a61SAndreas Gohr        '/([: ])0+(\.\d+?)0*((?:pt|pc|in|mm|cm|em|ex|px)\b|%)(?=[^\{]*[;\}])/',
562*64159a61SAndreas Gohr        '$1$2$3',
563*64159a61SAndreas Gohr        $css
564*64159a61SAndreas Gohr    ); // "0.1em" to ".1em", "1.10em" to "1.1em"
565*64159a61SAndreas Gohr    $css = preg_replace(
566*64159a61SAndreas Gohr        '/([: ])\.(0)+((?:pt|pc|in|mm|cm|em|ex|px)\b|%)(?=[^\{]*[;\}])/',
567*64159a61SAndreas Gohr        '$1$2',
568*64159a61SAndreas Gohr        $css
569*64159a61SAndreas Gohr    ); // ".0em" to "0"
570*64159a61SAndreas Gohr    $css = preg_replace(
571*64159a61SAndreas Gohr        '/([: ]0)0*(\.0*)?((?:pt|pc|in|mm|cm|em|ex|px)(?=[^\{]*[;\}])\b|%)/',
572*64159a61SAndreas Gohr        '$1',
573*64159a61SAndreas Gohr        $css
574*64159a61SAndreas Gohr    ); // "0.0em" to "0"
575*64159a61SAndreas Gohr    $css = preg_replace(
576*64159a61SAndreas Gohr        '/([: ]\d+)(\.0*)((?:pt|pc|in|mm|cm|em|ex|px)(?=[^\{]*[;\}])\b|%)/',
577*64159a61SAndreas Gohr        '$1$3',
578*64159a61SAndreas Gohr        $css
579*64159a61SAndreas Gohr    ); // "1.0em" to "1em"
580*64159a61SAndreas Gohr    $css = preg_replace(
581*64159a61SAndreas Gohr        '/([: ])0+(\d+|\d*\.\d+)((?:pt|pc|in|mm|cm|em|ex|px)(?=[^\{]*[;\}])\b|%)/',
582*64159a61SAndreas Gohr        '$1$2$3',
583*64159a61SAndreas Gohr        $css
584*64159a61SAndreas Gohr    ); // "001em" to "1em"
585205907a7Sfurun
586205907a7Sfurun    // shorten attributes (1em 1em 1em 1em -> 1em)
587*64159a61SAndreas Gohr    $css = preg_replace(
588*64159a61SAndreas Gohr        '/(?<![\w\-])((?:margin|padding|border|border-(?:width|radius)):)([\w\.]+)( \2)+(?=[;\}]| !)/',
589*64159a61SAndreas Gohr        '$1$2',
590*64159a61SAndreas Gohr        $css
591*64159a61SAndreas Gohr    ); // "1em 1em 1em 1em" to "1em"
592*64159a61SAndreas Gohr    $css = preg_replace(
593*64159a61SAndreas Gohr        '/(?<![\w\-])((?:margin|padding|border|border-(?:width)):)([\w\.]+) ([\w\.]+) \2 \3(?=[;\}]| !)/',
594*64159a61SAndreas Gohr        '$1$2 $3',
595*64159a61SAndreas Gohr        $css
596*64159a61SAndreas Gohr    ); // "1em 2em 1em 2em" to "1em 2em"
597205907a7Sfurun
59878a6aeb1SAndreas Gohr    // shorten colors
599*64159a61SAndreas Gohr    $css = preg_replace(
600*64159a61SAndreas Gohr        "/#([0-9a-fA-F]{1})\\1([0-9a-fA-F]{1})\\2([0-9a-fA-F]{1})\\3(?=[^\{]*[;\}])/",
601*64159a61SAndreas Gohr        "#\\1\\2\\3",
602*64159a61SAndreas Gohr        $css
603*64159a61SAndreas Gohr    );
60478a6aeb1SAndreas Gohr
60578a6aeb1SAndreas Gohr    return $css;
60678a6aeb1SAndreas Gohr}
60778a6aeb1SAndreas Gohr
608c00aef76SAndreas Gohr/**
609c00aef76SAndreas Gohr * Callback for css_compress()
610c00aef76SAndreas Gohr *
611c00aef76SAndreas Gohr * Keeps short comments (< 5 chars) to maintain typical browser hacks
612c00aef76SAndreas Gohr *
613c00aef76SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
614253d4b48SGerrit Uitslag *
615253d4b48SGerrit Uitslag * @param array $matches
616253d4b48SGerrit Uitslag * @return string
617c00aef76SAndreas Gohr */
618c00aef76SAndreas Gohrfunction css_comment_cb($matches){
619c00aef76SAndreas Gohr    if(strlen($matches[2]) > 4) return '';
620c00aef76SAndreas Gohr    return $matches[0];
621c00aef76SAndreas Gohr}
62278a6aeb1SAndreas Gohr
623fe5a50c3SAndreas Gohr/**
624fe5a50c3SAndreas Gohr * Callback for css_compress()
625fe5a50c3SAndreas Gohr *
626fe5a50c3SAndreas Gohr * Strips one line comments but makes sure it will not destroy url() constructs with slashes
627fe5a50c3SAndreas Gohr *
628253d4b48SGerrit Uitslag * @param array $matches
629fe5a50c3SAndreas Gohr * @return string
630fe5a50c3SAndreas Gohr */
631fe5a50c3SAndreas Gohrfunction css_onelinecomment_cb($matches) {
632fe5a50c3SAndreas Gohr    $line = $matches[0];
633fe5a50c3SAndreas Gohr
634fe5a50c3SAndreas Gohr    $i = 0;
635fe5a50c3SAndreas Gohr    $len = strlen($line);
636918a4468SAndreas Gohr
637fe5a50c3SAndreas Gohr    while ($i< $len){
638fe5a50c3SAndreas Gohr        $nextcom = strpos($line, '//', $i);
639fe5a50c3SAndreas Gohr        $nexturl = stripos($line, 'url(', $i);
640fe5a50c3SAndreas Gohr
641fe5a50c3SAndreas Gohr        if($nextcom === false) {
642fe5a50c3SAndreas Gohr            // no more comments, we're done
643918a4468SAndreas Gohr            $i = $len;
644fe5a50c3SAndreas Gohr            break;
645fe5a50c3SAndreas Gohr        }
646fe5a50c3SAndreas Gohr
647918a4468SAndreas Gohr        // keep any quoted string that starts before a comment
648918a4468SAndreas Gohr        $nextsqt = strpos($line, "'", $i);
649918a4468SAndreas Gohr        $nextdqt = strpos($line, '"', $i);
650918a4468SAndreas Gohr        if(min($nextsqt, $nextdqt) < $nextcom) {
651918a4468SAndreas Gohr            $skipto = false;
652918a4468SAndreas Gohr            if($nextsqt !== false && ($nextdqt === false || $nextsqt < $nextdqt)) {
653918a4468SAndreas Gohr                $skipto = strpos($line, "'", $nextsqt+1) +1;
654918a4468SAndreas Gohr            } else if ($nextdqt !== false) {
655918a4468SAndreas Gohr                $skipto = strpos($line, '"', $nextdqt+1) +1;
656918a4468SAndreas Gohr            }
657918a4468SAndreas Gohr
658918a4468SAndreas Gohr            if($skipto !== false) {
659918a4468SAndreas Gohr                $i = $skipto;
660918a4468SAndreas Gohr                continue;
661918a4468SAndreas Gohr            }
662918a4468SAndreas Gohr        }
663918a4468SAndreas Gohr
664918a4468SAndreas Gohr        if($nexturl === false || $nextcom < $nexturl) {
665918a4468SAndreas Gohr            // no url anymore, strip comment and be done
666918a4468SAndreas Gohr            $i = $nextcom;
667918a4468SAndreas Gohr            break;
668918a4468SAndreas Gohr        }
669918a4468SAndreas Gohr
670918a4468SAndreas Gohr        // we have an upcoming url
671918a4468SAndreas Gohr        $i = strpos($line, ')', $nexturl);
672918a4468SAndreas Gohr    }
673918a4468SAndreas Gohr
674918a4468SAndreas Gohr    return substr($line, 0, $i);
675fe5a50c3SAndreas Gohr}
676fe5a50c3SAndreas Gohr
677e3776c06SMichael Hamann//Setup VIM: ex: et ts=4 :
678