Update of /cvsroot/phpwiki/phpwiki/themes/default
In directory usw-pr-cvs1:/tmp/cvs-serv29005/phpwiki/themes/WikiTrek
Modified Files:
themeinfo.php
Log Message:
updated CSS_URL to variable
Index: themeinfo.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/themes/default/themeinfo.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** themeinfo.php 2001/12/26 14:00:44 1.2
--- themeinfo.php 2001/12/26 14:06:07 1.3
***************
*** 1,4 ****
--- 1,29 ----
<?php
+ /**
+ * This PhpWiki theme is experimental and will likely not appear as
+ * part of any release ("accessories not included"--download seperately.)
+ *
+ * The first experimental (and very alpha) theme pack is here, have some
+ * fun and play with it, fix it up if you like.
+ *
+ * This one is (by design) completely css-based so unfortunately it
+ * doesn't render properly or even the same across different browsers.
+ * A preview screen snapshot is also included for comparison testing.
+ *
+ * The reverse coloring of this theme was chosen to provide an
+ * extreme example of a heavily customized PhpWiki, through which
+ * any potential visual problems can be identified. The intention is
+ * to elimate as many non-html elements from the html templates as
+ * possible.
+ */
+
+ //This theme does not render properly in all browsers. In particular,
+ // OmniWeb renders some text as black-on-black. Netscape 4 will probably
+ // choke on it too.
+
+ //use this setting in index.php:
+ //$theme="WikiTrek";
+
// FIXME: these files are moved to a subfolder in /templates
// e.g. /templates/vanilla so relative paths to index.php
***************
*** 18,22 ****
// you should make sure that it's companion 'phpwiki-heavy.css'
// is installed in the same directory that the base style file is.
! $CSS_URL = "themes/$theme/phpwiki.css";
// logo image
--- 43,49 ----
// you should make sure that it's companion 'phpwiki-heavy.css'
// is installed in the same directory that the base style file is.
!
!
! $CSS_URL = "themes/$theme/WikiTrek.css";
// logo image
***************
*** 25,42 ****
// 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/signature.png";
! $templates = array('BROWSE' => "themes/$theme/templates/browse.html",
! 'EDITPAGE' => "themes/$theme/templates/editpage.html",
! 'MESSAGE' => "themes/$theme/templates/message.html");
!
! $URL_LINK_ICONS = array(
! 'http' => "themes/$theme/icons/http.png",
! 'https' => "themes/$theme/icons/https.png",
! 'ftp' => "themes/$theme/icons/ftp.png",
! 'mailto' => "themes/$theme/icons/mailto.png",
! 'interwiki' => "themes/$theme/icons/interwiki.png",
! '*' => "themes/$theme/icons/zapg.png"
! );
// (c-file-style: "gnu")
--- 52,62 ----
// 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";
! //gettext() does not work here yet
! //normally themes shouldn't override date & time settings because this will mess up
! //any future user-specific preferences for locale
! $datetimeformat = sprintf(("Stardate %s"),'%B %e, %Y'); // may contain time of day
! $dateformat = sprintf(("Stardate %s"),'%B %e, %Y'); // must not contain time
// (c-file-style: "gnu")
|