From: <var...@us...> - 2009-10-17 14:53:45
|
Revision: 7214 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7214&view=rev Author: vargenau Date: 2009-10-17 14:53:36 +0000 (Sat, 17 Oct 2009) Log Message: ----------- ENABLE_MARKUP_MEDIAWIKI_TABLE unused Modified Paths: -------------- trunk/config/config-dist.ini trunk/configurator.php trunk/g trunk/lib/BlockParser.php trunk/lib/IniConfig.php trunk/themes/MonoBook/themeinfo.php Modified: trunk/config/config-dist.ini =================================================================== --- trunk/config/config-dist.ini 2009-10-17 11:42:25 UTC (rev 7213) +++ trunk/config/config-dist.ini 2009-10-17 14:53:36 UTC (rev 7214) @@ -1043,10 +1043,6 @@ ; Default: undefined. Enabled automatically on the MonoBook theme if undefined. ;ENABLE_MARKUP_TEMPLATE = true -; Enable Mediawiki-style table syntax. -; Default: undefined. Enabled automatically on the MonoBook theme if undefined. -;ENABLE_MARKUP_MEDIAWIKI_TABLE = true - ; Disable automatic linking of camelcase (wiki-)words to pages. ; Internal page links must be forced with [ pagename ] then. ; Default: false Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2009-10-17 11:42:25 UTC (rev 7213) +++ trunk/configurator.php 2009-10-17 14:53:36 UTC (rev 7214) @@ -1435,9 +1435,6 @@ $properties["ENABLE_MARKUP_TEMPLATE"] = new boolean_define_optional('ENABLE_MARKUP_TEMPLATE'); -$properties["ENABLE_MARKUP_MEDIAWIKI_TABLE"] = -new boolean_define_optional('ENABLE_MARKUP_MEDIAWIKI_TABLE'); - $properties["DISABLE_MARKUP_WIKIWORD"] = new boolean_define_optional('DISABLE_MARKUP_WIKIWORD'); Modified: trunk/g =================================================================== --- trunk/g 2009-10-17 11:42:25 UTC (rev 7213) +++ trunk/g 2009-10-17 14:53:36 UTC (rev 7214) @@ -110,9 +110,6 @@ // Allow template with MediaWiki syntax define('ENABLE_MARKUP_TEMPLATE', true); - // Allow tables with MediaWiki syntax - define('ENABLE_MARKUP_MEDIAWIKI_TABLE', true); - // Allow parsing of headers for CreateToc define('TOC_FULL_SYNTAX', true); Modified: trunk/lib/BlockParser.php =================================================================== --- trunk/lib/BlockParser.php 2009-10-17 11:42:25 UTC (rev 7213) +++ trunk/lib/BlockParser.php 2009-10-17 14:53:36 UTC (rev 7214) @@ -1085,7 +1085,7 @@ } } -/** ENABLE_MARKUP_MEDIAWIKI_TABLE +/** * Table syntax similar to Mediawiki * {| * => <?plugin MediawikiTable Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2009-10-17 11:42:25 UTC (rev 7213) +++ trunk/lib/IniConfig.php 2009-10-17 14:53:36 UTC (rev 7214) @@ -198,7 +198,6 @@ 'ENABLE_DISCUSSION_LINK', 'ENABLE_CAPTCHA', 'ENABLE_WYSIWYG', 'WYSIWYG_DEFAULT_PAGETYPE_HTML', 'DISABLE_MARKUP_WIKIWORD', 'ENABLE_MARKUP_COLOR', 'ENABLE_MARKUP_TEMPLATE', - 'ENABLE_MARKUP_MEDIAWIKI_TABLE', 'ENABLE_MARKUP_DIVSPAN', 'USE_BYTEA', 'UPLOAD_USERDIR', 'DISABLE_UNITS', 'ENABLE_SEARCHHIGHLIGHT', 'DISABLE_UPLOAD_ONLY_ALLOWED_EXTENSIONS', 'ENABLE_AUTH_OPENID', 'INSECURE_ACTIONS_LOCALHOST_ONLY', Modified: trunk/themes/MonoBook/themeinfo.php =================================================================== --- trunk/themes/MonoBook/themeinfo.php 2009-10-17 11:42:25 UTC (rev 7213) +++ trunk/themes/MonoBook/themeinfo.php 2009-10-17 14:53:36 UTC (rev 7214) @@ -20,8 +20,6 @@ require_once('themes/wikilens/themeinfo.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; @@ -211,4 +209,4 @@ // c-hanging-comment-ender-p: nil // indent-tabs-mode: nil // End: -?> \ No newline at end of file +?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |