From: Carsten K. <car...@us...> - 2002-01-01 07:36:18
|
Update of /cvsroot/phpwiki/phpwiki/themes/WikiTrek In directory usw-pr-cvs1:/tmp/cvs-serv9196 Modified Files: themeinfo.php Log Message: comments cleanup Index: themeinfo.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/themes/WikiTrek/themeinfo.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** themeinfo.php 2002/01/01 07:18:42 1.4 --- themeinfo.php 2002/01/01 07:36:15 1.5 *************** *** 27,40 **** // To activate this theme, specify this setting in index.php: //$theme="WikiTrek"; // CSS file defines fonts, colors and background images for this style. $CSS_URL = "themes/$theme/WikiTrek.css"; ! // Logo image appears on every page. $logo = "themes/$theme/Ufp-logo.png"; ! // Signature image which is shown after saving an edited page ! // If this is left blank (or unset), the signature will be omitted. $SignatureImg = "themes/$theme/lights.gif"; // If this theme defines any custom link icons, it will completely override --- 27,55 ---- // To activate this theme, specify this setting in index.php: //$theme="WikiTrek"; + // To deactivate themes, comment out all the $theme=lines in index.php. + // CSS location + // // CSS file defines fonts, colors and background images for this style. + // The companion '*-heavy.css' file isn't defined, it's just expected to + // be in the same directory that the base style is in. $CSS_URL = "themes/$theme/WikiTrek.css"; ! // Logo image appears on every page and links to the HomePage. $logo = "themes/$theme/Ufp-logo.png"; ! // Signature image which is shown after saving an edited page. ! // If this is left blank, any signature defined in index.php will be ! // used. If it is not defined by index.php or in here then the ! // "Thank you for editing..." screen will be omitted. $SignatureImg = "themes/$theme/lights.gif"; + + // If this theme defines any templates, they will completely override + // whatever templates have been defined in index.php. + /* + $templates = array('BROWSE' => "themes/$theme/templates/browse.html", + 'EDITPAGE' => "themes/$theme/templates/editpage.html", + 'MESSAGE' => "themes/$theme/templates/message.html"); + */ // If this theme defines any custom link icons, it will completely override |