]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/themeinfo.php
updated CSS_URL to variable
[SourceForge/phpwiki.git] / themes / default / themeinfo.php
1 <?php
2
3 /**
4  * This PhpWiki theme is experimental and will likely not appear as 
5  * part of any release ("accessories not included"--download seperately.)
6  *
7  * The first experimental (and very alpha) theme pack is here, have some
8  * fun and play with it, fix it up if you like.
9  *
10  * This one is (by design) completely css-based so unfortunately it
11  * doesn't render properly or even the same across different browsers.
12  * A preview screen snapshot is also included for comparison testing.
13  *
14  * The reverse coloring of this theme was chosen to provide an
15  * extreme example of a heavily customized PhpWiki, through which
16  * any potential visual problems can be identified. The intention is
17  * to elimate as many non-html elements from the html templates as
18  * possible.
19  */
20
21 //This theme does not render properly in all browsers. In particular,
22 // OmniWeb renders some text as black-on-black. Netscape 4 will probably
23 // choke on it too.
24
25 //use this setting in index.php:
26 //$theme="WikiTrek";
27
28 // FIXME: these files are moved to a subfolder in /templates
29 // e.g. /templates/vanilla so relative paths to index.php
30 // should be irrelevant.
31
32 // The current .htaccess in /templates generates an error in apache 1.3.20.
33 // It should be removed or changed to allow access for themes to work.
34
35 // If you specify a relative URL for the CSS and images,
36 // the are interpreted relative to DATA_PATH (see below).
37 // (The default value of DATA_PATH is the directory in which
38 // index.php (this file) resides.)
39
40 // CSS location
41 //
42 // Note that if you use the stock phpwiki style sheet, 'phpwiki.css',
43 // you should make sure that it's companion 'phpwiki-heavy.css'
44 // is installed in the same directory that the base style file is.
45
46
47 $CSS_URL = "themes/$theme/WikiTrek.css";
48
49 // logo image
50 $logo = "themes/$theme/wikibase.png";
51
52 // Signature image which is shown after saving an edited page
53 // If this is left blank (or unset), the signature will be omitted.
54 $SignatureImg = "themes/$theme/lights.gif";
55
56 //gettext() does not work here yet
57 //normally themes shouldn't override date & time settings because this will mess up
58 //any future user-specific preferences for locale
59 $datetimeformat = sprintf(("Stardate %s"),'%B %e, %Y'); // may contain time of day
60 $dateformat = sprintf(("Stardate %s"),'%B %e, %Y');     // must not contain time
61
62 // (c-file-style: "gnu")
63 // Local Variables:
64 // mode: php
65 // tab-width: 8
66 // c-basic-offset: 4
67 // c-hanging-comment-ender-p: nil
68 // indent-tabs-mode: nil
69 // End:   
70 ?>