Lines Matching +full:style +full:. +full:local +full:. +full:ini

5 if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../');
8 require_once(DOKU_INC.'inc/init.php');
9 require_once(DOKU_INC.'inc/pageutils.php');
10 require_once(DOKU_INC.'inc/httputils.php');
11 require_once(DOKU_INC.'inc/io.php');
12 require_once(DOKU_INC.'inc/confutils.php');
26 * @author Andreas Gohr <andi@splitbrain.org>
44 #$tplinc = DOKU_INC.'lib/tpl/'.$tpl.'/';
45 $tpldir = DOKU_BASE.'lib/tpl/'.$tpl.'/';
51 foreach( array( 'style.ini', 'style.local.ini' ) as $ini ) {
52 $ini = _css_getpath( $tpl, $ini );
53 if( @file_exists( $ini )) {
54 $tplinc[] = $ini;
58 // used style.ini file
62 …$cache = new cache('styles'.$_SERVER['HTTP_HOST'].$_SERVER['SERVER_PORT'].DOKU_BASE.$cache.$mediat…
82 foreach( $tplinc as $ini ) {
83 $cache_files[] = $ini;
90 $files[$mediatype][DOKU_INC.'lib/styles/'.$mediatype.'.css'] = DOKU_BASE.'lib/styles/';
93 …$files[$mediatype][DOKU_INC.'lib/scripts/jquery/jquery-ui-theme/smoothness.css'] = DOKU_BASE.'lib/…
141 $css_content .= css_loadfile($file, $location);
145 …print NL.'@media screen { /* START screen styles */'.NL.$css_content.NL.'} /* /@media END screen s…
148 …print NL.'@media print { /* START print styles */'.NL.$css_content.NL.'} /* /@media END print styl…
153 print NL.'/* START rest styles */ '.NL.$css_content.NL.'/* END rest styles */'.NL;
161 // apply style replacements
175 …$css = preg_replace_callback('#(url\([ \'"]*)('.$base.')(.*?(?:\.(png|gif)))#i','css_datauri',$css…
192 foreach( $tplinc as $ini) {
193 $tmp = (@file_exists($ini)) ? parse_ini_file($ini, true) : array();
209 if( !$t || !$include = getConfigPath( 'template_dir', $t.'/'.$file )) {
212 $include = getConfigPath( 'template_dir', $conf['template'].'/'.$file );
214 $include = getConfigPath( 'template_dir', $conf['default_tpl'].'/'.$file );
217 $include = getConfigPath( 'template_dir', $conf['base_tpl'].'/'.$file );