]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/WikiTrek/themeinfo.php
Finished up get/setButtonSeparator functions.
[SourceForge/phpwiki.git] / themes / WikiTrek / themeinfo.php
1 <?php // -*-php-*-
2
3 rcs_id('$Id: themeinfo.php,v 1.11 2002-01-19 00:04:50 carstenklapp Exp $');
4
5 /**
6  * This PhpWiki theme is experimental and will likely not appear as
7  * part of any release ("accessories not included"--download
8  * seperately.)
9  *
10  * The first experimental (and very alpha) theme pack is here, have
11  * some fun and play with it, fix it up if you like.
12  *
13  * This one is (by design) completely css-based so unfortunately it
14  * doesn't render properly or even the same across different browsers.
15  * A preview screen snapshot is also included for comparison testing.
16  *
17  * The reverse coloring of this theme was chosen to provide an extreme
18  * example of a heavily customized PhpWiki, through which any
19  * potential visual problems can be identified. The intention is to
20  * elimate as many non-html elements from the html templates as
21  * possible.
22  *
23  * This theme does not render properly in all browsers. In particular,
24  * OmniWeb renders some text as black-on-black. Netscape 4 will
25  * probably choke on it too.
26  * * * * * * * * * * * * */
27
28 require_once('lib/Theme.php');
29
30 $Theme = new Theme('WikiTrek');
31
32 // CSS file defines fonts, colors and background images for this
33 // style.  The companion '*-heavy.css' file isn't defined, it's just
34 // expected to be in the same directory that the base style is in.
35
36 $Theme->setDefaultCSS('WikiTrek', 'WikiTrek.css');
37 $Theme->addAlternateCSS(_("Printer"), 'phpwiki-printer.css', 'print, screen');
38
39
40 // The logo image
41 $Theme->addImageAlias('logo', 'Ufp-logo.jpg');
42
43 // Signature image which is shown after saving an edited page.  If
44 // this is left blank, any signature defined in index.php will be
45 // used. If it is not defined by index.php or in here then the "Thank
46 // you for editing..." screen will be omitted.
47 $Theme->addImageAlias('signature', 'lights.gif');
48
49 // The gettext() function does not work here because we are included
50 // from 'index.php'. Normally themes shouldn't override date & time
51 // settings because this will mess up any future user-specific
52 // preferences for locale.
53 $Theme->setDateTimeFormat("Stardate %B.%e.%Y"); // may contain time of day
54 $Theme->setDateFormat("Stardate %B.%e.%Y"); // must not contain time
55
56
57 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
58 // (c-file-style: "gnu")
59 // Local Variables:
60 // mode: php
61 // tab-width: 8
62 // c-basic-offset: 4
63 // c-hanging-comment-ender-p: nil
64 // indent-tabs-mode: nil
65 // End:   
66 ?>