From: Carsten K. <car...@us...> - 2002-01-01 21:41:35
|
Update of /cvsroot/phpwiki/phpwiki/themes/Hawaiian In directory usw-pr-cvs1:/tmp/cvs-serv30477 Modified Files: themeinfo.php Log Message: Added optional random $SignatureImg. Comments cleanup. Index: themeinfo.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/themes/Hawaiian/themeinfo.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** themeinfo.php 2001/12/31 23:24:37 1.1 --- themeinfo.php 2002/01/01 21:41:32 1.2 *************** *** 3,27 **** rcs_id('$Id$'); ! // If you specify a relative URL for the CSS and images, ! // the are interpreted relative to DATA_PATH (see below). ! // (The default value of DATA_PATH is the directory in which ! // index.php resides.) // To activate this theme, specify this setting in index.php: //$theme=Hawaiian; // CSS file defines fonts, colors and background images for this style. $CSS_URL = "themes/$theme/Hawaiian.css"; ! // Logo image appears on every page. $logo = "themes/$theme/PalmBeach.jpg"; ! // 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/Submersible.jpg"; $SignatureImg = "themes/$theme/WaterFall.jpg"; ! // If any custom xhtml template files are defined by this theme they ! // will appear here. /* $templates = array('BROWSE' => "themes/$theme/templates/browse.html", --- 3,36 ---- rcs_id('$Id$'); ! /** ! * WikiWiki Hawaiian theme for PhpWiki. ! */ // To activate this theme, specify this setting in index.php: //$theme=Hawaiian; + // 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/Hawaiian.css"; ! // Logo image appears on every page and links to the HomePage. $logo = "themes/$theme/PalmBeach.jpg"; ! // 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/pictures/SubmersiblePiscesV.jpg"; #for Steve $SignatureImg = "themes/$theme/WaterFall.jpg"; + // If you want to see more than just the waterfall + // let a random picture be chosen for the signature image: + //include("themes/$theme/pictures/random.php"); ! // 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", *************** *** 30,36 **** */ ! // If this theme defines any custom link icons, it will completely override // any link icon settings defined in index.php. - $URL_LINK_ICONS = array( /* 'http' => "themes/$theme/http.png", */ --- 39,44 ---- */ ! // If this theme defines any custom link icons, they will completely override // any link icon settings defined in index.php. $URL_LINK_ICONS = array( /* 'http' => "themes/$theme/http.png", */ *************** *** 42,45 **** --- 50,60 ---- ); + // 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"); + */ // (c-file-style: "gnu") |