From: <var...@us...> - 2008-10-24 13:03:10
|
Revision: 6331 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6331&view=rev Author: vargenau Date: 2008-10-24 13:03:03 +0000 (Fri, 24 Oct 2008) Log Message: ----------- Add ENABLE_MARKUP_MEDIAWIKI_TABLE in configurator.php and config/config-dist.ini Modified Paths: -------------- trunk/config/config-dist.ini trunk/configurator.php Modified: trunk/config/config-dist.ini =================================================================== --- trunk/config/config-dist.ini 2008-10-22 12:59:34 UTC (rev 6330) +++ trunk/config/config-dist.ini 2008-10-24 13:03:03 UTC (rev 6331) @@ -1014,14 +1014,18 @@ ; faster and more stable. ;TOC_FULL_SYNTAX = true -; If false the %color=... %% syntax will be disabled. Since 1.3.11 +; If false the %color=... %% syntax will be disabled. ; Default: true ;ENABLE_MARKUP_COLOR = false -; Enable mediawiki-style {{TemplatePage|vars=value|...}} syntax. Since 1.3.11 +; Enable Mediawiki-style {{TemplatePage|vars=value|...}} syntax. ; 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 2008-10-22 12:59:34 UTC (rev 6330) +++ trunk/configurator.php 2008-10-24 13:03:03 UTC (rev 6331) @@ -1441,6 +1441,9 @@ $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'); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |