Fix old revisions skipping one revision
[dokuwiki.git] / lib / tpl / index.php
blob4d48d51276f0b783c26a3b366e7391552dd26aee
1 <?php
2 /**
3 * This file reads the style.ini of the used template and displays the
4 * replacements defined in it. Color replacements will be displayed
5 * visually. This should help with adjusting and using the styles
6 * specified in the style.ini
8 * @author Andreas Gohr <andi@splitbrain.org>
9 * @author Anika Henke <anika@selfthinker.org>
11 // phpcs:disable PSR1.Files.SideEffects
12 if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../');
13 if(!defined('NOSESSION')) define('NOSESSION',1);
14 require_once(DOKU_INC.'inc/init.php');
16 <!DOCTYPE html>
17 <html lang="en" dir="ltr">
18 <head>
19 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
20 <title>Template Replacements</title>
21 <style>
22 body {
23 background-color: #fff;
24 color: #000;
26 caption {
27 font-weight: bold;
29 td {
30 margin: 0;
31 padding: 0.5em 2em;
32 font-family: monospace;
33 font-size: 120%;
34 border: 1px solid #fff;
36 tr:hover td {
37 border: 1px solid #ccc;
39 .color {
40 padding: 0.25em 1em;
41 border: 1px #000 solid;
43 </style>
44 </head>
45 <body>
46 <?php
47 // get merged style.ini
48 $styleUtils = new \dokuwiki\StyleUtils($conf['template']);
49 $ini = $styleUtils->cssStyleini();
51 if (!empty($ini)) {
52 echo '<table>';
53 echo "<caption>".hsc($conf['template'])."'s style.ini</caption>";
54 foreach($ini['replacements'] as $key => $val){
55 echo '<tr>';
56 echo '<td>'.hsc($key).'</td>';
57 echo '<td>'.hsc($val).'</td>';
58 echo '<td>';
59 if(preg_match('/^#[0-f]{3,6}$/i',$val)){
60 echo '<div class="color" style="background-color:'.$val.';">&#160;</div>';
62 echo '</td>';
63 echo '</tr>';
65 echo '</table>';
66 } else {
67 echo "<p>Non-existent or invalid template or style.ini: <strong>".hsc($conf['template'])."</strong></p>";
70 </body>
71 </html>