From: <var...@us...> - 2008-09-08 03:47:50
|
Revision: 6252 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6252&view=rev Author: vargenau Date: 2008-09-08 03:47:58 +0000 (Mon, 08 Sep 2008) Log Message: ----------- Force ENABLE_MARKUP_MEDIAWIKI_TABLE to true in Monobook theme Modified Paths: -------------- trunk/themes/MonoBook/themeinfo.php Modified: trunk/themes/MonoBook/themeinfo.php =================================================================== --- trunk/themes/MonoBook/themeinfo.php 2008-09-08 03:30:13 UTC (rev 6251) +++ trunk/themes/MonoBook/themeinfo.php 2008-09-08 03:47:58 UTC (rev 6252) @@ -19,6 +19,8 @@ require_once('lib/WikiTheme.php'); if (!defined("ENABLE_MARKUP_TEMPLATE")) define("ENABLE_MARKUP_TEMPLATE", true); +if (!defined("ENABLE_MARKUP_MEDIAWIKI_TABLE")) + define("ENABLE_MARKUP_MEDIAWIKI_TABLE", true); function ActionButton ($action, $label = false, $page_or_rev = false, $options = false) { global $WikiTheme; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-06-17 15:38:25
|
Revision: 7548 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7548&view=rev Author: vargenau Date: 2010-06-17 15:38:19 +0000 (Thu, 17 Jun 2010) Log Message: ----------- Remove obsolete comments Modified Paths: -------------- trunk/themes/MonoBook/themeinfo.php Modified: trunk/themes/MonoBook/themeinfo.php =================================================================== --- trunk/themes/MonoBook/themeinfo.php 2010-06-17 15:05:18 UTC (rev 7547) +++ trunk/themes/MonoBook/themeinfo.php 2010-06-17 15:38:19 UTC (rev 7548) @@ -105,19 +105,6 @@ $this->addMoreHeaders("\n"); $this->addMoreHeaders(HTML::Raw('<meta http-equiv="imagetoolbar" content="no" />')); } - // better done in wikibits.js - /*elseif (isBrowserSafari()) { - $this->addMoreHeaders($this->_CSSlink(0,$this->_findFile('IEMacFixes.css'),'all')); - } elseif (isBrowserKonqueror()) { - $this->addMoreHeaders($this->_CSSlink(0,$this->_findFile('KHTMLFixes.css'),'all')); - } elseif (isBrowserOpera()) { - $this->addMoreHeaders($this->_CSSlink - (0, - isBrowserOpera(7) ? $this->_findFile('Opera7Fixes.css') - : $this->_findFile('Opera6Fixes.css'),'all')); - } - */ - // TODO: IEMAC, KHTML, Opera6, Opera7 $this->addMoreAttr('body', "class-ns-0", HTML::Raw('class="ns-0"')); // CSS file defines fonts, colors and background images for this This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2011-03-04 16:30:21
|
Revision: 7962 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7962&view=rev Author: vargenau Date: 2011-03-04 16:30:15 +0000 (Fri, 04 Mar 2011) Log Message: ----------- Remove too optimistic comments Modified Paths: -------------- trunk/themes/MonoBook/themeinfo.php Modified: trunk/themes/MonoBook/themeinfo.php =================================================================== --- trunk/themes/MonoBook/themeinfo.php 2011-03-04 16:21:08 UTC (rev 7961) +++ trunk/themes/MonoBook/themeinfo.php 2011-03-04 16:30:15 UTC (rev 7962) @@ -15,13 +15,6 @@ * * Problems with IE: signin is at the left. * - * We don't (yet) support all mediawiki UI options, but we try to. - * Besides that, maybe the mediawiki folks will see how much better phpwiki - * will scale, esp. with a true database, not just mysql. - * Technically phpwiki has about 2-3 years advantage and our plugins - * cannot destroy the layout. - * Anyway, the WikiParser perl module (and our php version) will be able to import - * and convert back and forth. */ require_once('lib/WikiTheme.php'); require_once('themes/wikilens/themeinfo.php'); @@ -136,20 +129,8 @@ /* * Link icons. */ - /* - $this->setLinkIcon('http'); - $this->setLinkIcon('https'); - $this->setLinkIcon('ftp'); - $this->setLinkIcon('mailto'); - //$this->setLinkIcon('interwiki'); - */ $this->setLinkIcon('wikiuser'); - //$this->setLinkIcon('*', 'url'); - // front or after - //$this->setLinkIconAttr('after'); - //$this->setButtonSeparator("\n | "); - /** * WikiWords can automatically be split by inserting spaces between * the words. The default is to leave WordsSmashedTogetherLikeSo. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |