1.52) // ------------------------------------------------------------ // Settings (define before here, if you want) // Set site identities $_IMAGE['skin']['logo'] = 'pukiwiki.png'; $_IMAGE['skin']['favicon'] = ''; // Sample: 'image/favicon.ico'; // SKIN_DEFAULT_DISABLE_TOPICPATH // 1 = Show reload URL // 0 = Show topicpath if (! defined('SKIN_DEFAULT_DISABLE_TOPICPATH')) define('SKIN_DEFAULT_DISABLE_TOPICPATH', 1); // 1, 0 // Show / Hide navigation bar UI at your choice // NOTE: This is not stop their functionalities! if (! defined('PKWK_SKIN_SHOW_NAVBAR')) define('PKWK_SKIN_SHOW_NAVBAR', 1); // 1, 0 // Show / Hide toolbar UI at your choice // NOTE: This is not stop their functionalities! if (! defined('PKWK_SKIN_SHOW_TOOLBAR')) define('PKWK_SKIN_SHOW_TOOLBAR', 1); // 1, 0 // ------------------------------------------------------------ // Code start // Prohibit direct access if (! defined('UI_LANG')) die('UI_LANG is not set'); if (! isset($_LANG)) die('$_LANG is not set'); if (! defined('PKWK_READONLY')) die('PKWK_READONLY is not set'); $lang = & $_LANG['skin']; $link = & $_LINK; $image = & $_IMAGE['skin']; $rw = ! PKWK_READONLY; // Decide charset for CSS $css_charset = 'iso-8859-1'; switch(UI_LANG){ case 'ja': $css_charset = 'Shift_JIS'; break; } // ------------------------------------------------------------ // Output // HTTP headers pkwk_common_headers(); header('Cache-Control: no-cache'); header('Pragma: no-cache'); header('Content-Type: text/html; charset=' . CONTENT_CHARSET); // HTML DTD, , and receive content-type if (isset($pkwk_dtd)) { $meta_content_type = pkwk_output_dtd($pkwk_dtd); } else { $meta_content_type = pkwk_output_dtd(); } ?> <?php echo $title ?> - <?php echo $page_title ?>
' . '' . ''; return TRUE; } ?>        
Last-modified: