'text/css'), sprintf("\n", $this->getImageURL('bgpaper8'))); //for non-browse pages, like former editpage, message etc. //$this->getImageURL('bggranular'))); return $css; } function getRecentChangesFormatter ($format) { include_once($this->file('lib/RecentChanges.php')); if (preg_match('/^rss/', $format)) return false; // use default return '_MacOSX_RecentChanges_Formatter'; } function getPageHistoryFormatter ($format) { include_once($this->file('lib/RecentChanges.php')); if (preg_match('/^rss/', $format)) return false; // use default return '_MacOSX_PageHistory_Formatter'; } function LinkUnknownWikiWord($wikiword, $linktext = '') { if (empty($linktext)) { $linktext = $wikiword; if ($this->getAutoSplitWikiWords()) $linktext=split_pagename($linktext); $class = 'wikiunknown'; } else $class = 'named-wikiunknown'; $qmark = $this->makeButton('?', WikiURL($wikiword, array('action' => 'edit'))); return Element('span', array('class' => $class), Element('u', $linktext) . $qmark->asHTML()); } } $Theme = new Theme_MacOSX('MacOSX'); // 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. $Theme->setDefaultCSS("MacOSX", "MacOSX.css"); $Theme->addAlternateCSS(_("Printer"), 'phpwiki-printer.css', 'print, screen'); $Theme->addAlternateCSS(_("Modern"), 'phpwiki-modern.css'); $Theme->addAlternateCSS('PhpWiki', 'phpwiki.css'); /** * The logo image appears on every page and links to the HomePage. */ //$Theme->addImageAlias('logo', 'logo.png'); /** * The Signature image is shown after saving an edited page. If this * is not set, 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. */ //$Theme->addImageAlias('signature', 'signature.png'); /* * Link icons. */ $Theme->setLinkIcon('http'); $Theme->setLinkIcon('https'); $Theme->setLinkIcon('ftp'); $Theme->setLinkIcon('mailto'); $Theme->setLinkIcon('interwiki'); $Theme->setLinkIcon('*', 'url'); $Theme->setButtonSeparator(' '); $Theme->addButtonAlias('?', 'uww'); /** * WikiWords can automatically be split by inserting spaces between * the words. The default is to leave WordsSmashedTogetherLikeSo. */ //$Theme->setAutosplitWikiWords(false); /* * You may adjust the formats used for formatting dates and times * below. (These examples give the default formats.) * Formats are given as format strings to PHP strftime() function See * http://www.php.net/manual/en/function.strftime.php for details. */ //$Theme->setDateTimeFormat("%B %e, %Y"); // may contain time of day //$Theme->setDateFormat("%B %e, %Y"); // must not contain time $Theme->setDateTimeFormat("%A, %B %e, %Y. %l:%M:%S %p %Z"); // may contain time of day $Theme->setDateFormat("%A, %B %e, %Y"); // must not contain time /* $ToolbarImages = array( 'RecentChanges' => array( '1 day' => "themes/$theme/buttons/en/1+day.png", '2 days' => "themes/$theme/buttons/en/2+days.png", '3 days' => "themes/$theme/buttons/en/3+days.png", '4 days' => "themes/$theme/buttons/en/4+days.png", '7 days' => "themes/$theme/buttons/en/7+days.png", '30 days' => "themes/$theme/buttons/en/30+days.png", '90 days' => "themes/$theme/buttons/en/90+days.png", '...' => "themes/$theme/buttons/en/alltime.png") ); */ // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // (c-file-style: "gnu") // Local Variables: // mode: php // tab-width: 8 // c-basic-offset: 4 // c-hanging-comment-ender-p: nil // indent-tabs-mode: nil // End: ?>