properly utilize CSS classes (defined in the new file
      style_fallback.css). Also added support for entering "ALT"
      attributes to an <img> tag, can be used as a media property if
      you add "ALT" to the list of "Media properties" in the
      main configuration. (garvinhicking)
		
	
		
			
				
	
	
		
			86 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php # $Id$
 | |
| # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 | |
| # All rights reserved.  See LICENSE file for licensing details
 | |
| 
 | |
| /* This is a small hack to allow CSS display during installations and upgrades */
 | |
| define('IN_installer', true);
 | |
| define('IN_upgrader', true);
 | |
| define('IN_CSS', true);
 | |
| 
 | |
| session_cache_limiter('public');
 | |
| if (!defined('S9Y_FRAMEWORK')) {
 | |
|     include('serendipity_config.inc.php');
 | |
| }
 | |
| 
 | |
| if (!isset($css_mode)) {
 | |
|     if (!empty($serendipity['GET']['css_mode'])) {
 | |
|         $css_mode = $serendipity['GET']['css_mode'];
 | |
|     } else {
 | |
|         $css_mode = 'serendipity.css';
 | |
|     }
 | |
| }
 | |
| 
 | |
| switch($css_mode) {
 | |
|     case 'serendipity.css':
 | |
|     default:
 | |
|         $css_hook = 'css';
 | |
|         $css_file = 'style.css';
 | |
|         break;
 | |
| 
 | |
|     case 'serendipity_admin.css':
 | |
|         $css_hook = 'css_backend';
 | |
|         $css_file = 'admin/style.css';
 | |
|         break;
 | |
| }
 | |
| 
 | |
| function serendipity_printStylesheet($file, $dir = '') {
 | |
|     global $serendipity;
 | |
|     return "/* $dir  */\n" . str_replace(
 | |
|              array(
 | |
|                '{TEMPLATE_PATH}',
 | |
|                '{LANG_DIRECTION}'
 | |
|              ),
 | |
| 
 | |
|              array(
 | |
|                dirname($dir) . '/',
 | |
|                LANG_DIRECTION
 | |
|              ),
 | |
| 
 | |
|              @file_get_contents($file, 1));
 | |
| }
 | |
| 
 | |
| 
 | |
| if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false) {
 | |
|     header('Cache-Control: no-cache');
 | |
| } else {
 | |
|     header('Cache-Control:');
 | |
|     header('Pragma:');
 | |
|     header('Expires: ' . gmdate('D, d M Y H:i:s \G\M\T', time()+3600));
 | |
| }
 | |
| header('Content-type: text/css; charset=' . LANG_CHARSET);
 | |
| 
 | |
| if (IS_installed === false) {
 | |
|     if (file_exists(S9Y_INCLUDE_PATH . 'templates/' . $serendipity['defaultTemplate'] . '/' . $css_file)) {
 | |
|         echo serendipity_printStylesheet('templates/' . $serendipity['defaultTemplate'] . '/' . $css_file, 'templates/' . $serendipity['defaultTemplate'] . '/' . $css_file);
 | |
|     }
 | |
|     die();
 | |
| }
 | |
| 
 | |
| 
 | |
| // First all of our fallback classes, so they can be overridden by the usual template.
 | |
| $out = serendipity_printStylesheet(
 | |
|          serendipity_getTemplateFile('style_fallback.css', 'serendipityPath'),
 | |
|          serendipity_getTemplateFile('style_fallback.css', '')
 | |
| );
 | |
| 
 | |
| $out .= serendipity_printStylesheet(
 | |
|          serendipity_getTemplateFile($css_file, 'serendipityPath'),
 | |
|          serendipity_getTemplateFile($css_file, '')
 | |
| );
 | |
| 
 | |
| serendipity_plugin_api::hook_event($css_hook, $out);
 | |
| 
 | |
| echo $out;
 | |
| 
 | |
| /* vim: set sts=4 ts=4 expandtab : */
 |