1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
<?php
/**
* This file reads the style.ini of the used template and displays the
* replacements defined in it. Color replacements will be displayed
* visually. This should help with adjusting and using the styles
* specified in the style.ini
*
* @author Andreas Gohr <andi@splitbrain.org>
* @author Anika Henke <anika@selfthinker.org>
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Template Replacements</title>
<style type="text/css">
body {
background-color: #fff;
color: #000;
}
caption {
font-weight: bold;
}
td {
margin: 0;
padding: 0.5em 2em;
font-family: monospace;
font-size: 120%;
border: 1px solid #fff;
}
tr:hover td {
border: 1px solid #ccc;
}
.color {
padding: 0.25em 1em;
border: 1px #000 solid;
}
</style>
</head>
<body>
<?php
if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../');
require_once(DOKU_INC.'inc/init.php');
$ini = @parse_ini_file($conf['template'].'/style.ini',true);
if ($ini) {
echo '<table>';
echo "<caption>".htmlspecialchars($conf['template'])."'s style.ini</caption>";
foreach($ini['replacements'] as $key => $val){
echo '<tr>';
echo '<td>'.htmlspecialchars($key).'</td>';
echo '<td>'.htmlspecialchars($val).'</td>';
echo '<td>';
if(preg_match('/^#[0-f]{3,6}$/i',$val)){
echo '<div class="color" style="background-color:'.$val.';"> </div>';
}
echo '</td>';
echo '</tr>';
}
echo '</table>';
} else {
echo "<p>Non-existent template: <strong>".htmlspecialchars($conf['template'])."</strong></p>";
}
?>
</body>
</html>
|