]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/WikiTrek/themeinfo.php
just reflowing text
[SourceForge/phpwiki.git] / themes / WikiTrek / themeinfo.php
1 <?php // -*-php-*-
2
3 rcs_id('$Id: themeinfo.php,v 1.7 2002-01-05 06:17:01 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 // To activate this theme, specify this setting in index.php:
29 //$theme="WikiTrek";
30 // To deactivate themes, comment out all the $theme=lines in 'index.php'.
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 $CSS_DEFAULT = "WikiTrek";
36
37 $CSS_URLS = array_merge($CSS_URLS,
38                         array("$CSS_DEFAULT" => "themes/$theme/${CSS_DEFAULT}.css"));
39
40 // Logo image appears on every page and links to the HomePage.
41 $logo = "themes/$theme/Ufp-logo.png";
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 $SignatureImg = "themes/$theme/lights.gif";
48
49 // If this theme defines any templates, they will completely override
50 // whatever templates have been defined in index.php.
51 /*
52 $templates = array(
53                    'BROWSE'   => "themes/$theme/templates/browse.html",
54                    'EDITPAGE' => "themes/$theme/templates/editpage.html",
55                    'MESSAGE'  => "themes/$theme/templates/message.html"
56                    );
57 */
58
59 // If this theme defines any custom link icons, it will completely
60 // override any link icon settings defined in index.php.
61 /*
62 $URL_LINK_ICONS = array(
63                         'http'      => "themes/$theme/http.png",
64                         'https'     => "themes/$theme/https.png",
65                         'ftp'       => "themes/$theme/ftp.png",
66                         'mailto'    => "themes/$theme/mailto.png",
67                         'interwiki' => "themes/$theme/interwiki.png",
68                         '*'         => "themes/$theme/zapg.png"
69                         );
70 */
71
72 // The gettext() function does not work here because we are included
73 // from 'index.php'. Normally themes shouldn't override date & time
74 // settings because this will mess up any future user-specific
75 // preferences for locale.
76 $datetimeformat = sprintf(("Stardate %s"),'%B.%e.%Y'); // may contain
77                                                        // time of day
78 $dateformat = sprintf(("Stardate %s"),'%B.%e.%Y'); // must not contain
79                                                    // time
80
81 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
82 // (c-file-style: "gnu")
83 // Local Variables:
84 // mode: php
85 // tab-width: 8
86 // c-basic-offset: 4
87 // c-hanging-comment-ender-p: nil
88 // indent-tabs-mode: nil
89 // End:   
90 ?>