]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/MacOSX/themeinfo.php
new theme inspired by Mac OS X
[SourceForge/phpwiki.git] / themes / MacOSX / themeinfo.php
1 <?php
2
3 rcs_id('$Id: themeinfo.php,v 1.1 2002-01-02 01:28:57 carstenklapp Exp $');
4
5 /**
6  * A PhpWiki theme inspired by the Aqua appearance of Mac OS X.
7  * 
8  * The images used with this theme depend on the PNG alpha channel to
9  * blend in with whatever background color or texture is on the page.
10  * When viewed with an older browser, the images may be incorrectly
11  * rendered with a thick solid black border. When viewed with a modern
12  * browser, the images will display with nice edges and blended shadows.
13  * */
14
15 // To activate this theme, specify this setting in index.php:
16 //$theme="MacOSX";
17 // To deactivate themes, comment out all the $theme=lines in index.php.
18
19 // CSS location
20 //
21 // CSS file defines fonts, colors and background images for this style.
22 // The companion '*-heavy.css' file isn't defined, it's just expected to
23 // be in the same directory that the base style is in.
24 //$CSS_URL = "themes/$theme/phpwiki.css";
25
26 // Logo image appears on every page and links to the HomePage.
27 $logo = "themes/$theme/PhpWiki.png";
28
29 // Signature image which is shown after saving an edited page.
30 // If this is left blank, any signature defined in index.php will be
31 // used. If it is not defined by index.php or in here then the
32 // "Thank you for editing..." screen will be omitted.
33 //$SignatureImg = "themes/$theme/signature.png";
34
35 // If this theme defines any templates, they will completely override
36 // whatever templates have been defined in index.php.
37 /*
38 $templates = array('BROWSE' =>    "themes/$theme/templates/browse.html",
39                    'EDITPAGE' =>  "themes/$theme/templates/editpage.html",
40                    'MESSAGE' =>   "themes/$theme/templates/message.html");
41 */
42
43 // If this theme defines any custom link icons, they will completely override
44 // any link icon settings defined in index.php.
45 /*
46 $URL_LINK_ICONS = array(
47                     'http'      => "themes/$theme/icons/http.png",
48                     'https'     => "themes/$theme/icons/https.png",
49                     'ftp'       => "themes/$theme/icons/ftp.png",
50                     'mailto'    => "themes/$theme/icons/mailto.png",
51                     'interwiki' => "themes/$theme/icons/interwiki.png",
52                     '*'         => "themes/$theme/icons/zapg.png"
53                     );
54 */
55
56 // (c-file-style: "gnu")
57 // Local Variables:
58 // mode: php
59 // tab-width: 8
60 // c-basic-offset: 4
61 // c-hanging-comment-ender-p: nil
62 // indent-tabs-mode: nil
63 // End:   
64 ?>