Revision: 46279
Author:   ialex
Date:     2009-01-26 20:14:16 +0000 (Mon, 26 Jan 2009)

Log Message:
-----------
Added $wgMaxRedirects, $wgInvalidRedirectTargets, $wgNoFollowDomainExceptions 
and $wgUseTwoButtonsSearchForm

Modified Paths:
--------------
    trunk/extensions/Configure/CHANGELOG
    trunk/extensions/Configure/Configure.php
    trunk/extensions/Configure/Configure.settings-core.php
    trunk/extensions/Configure/Configure.settings.i18n.php
    trunk/extensions/Configure/default-setting-names.php

Modified: trunk/extensions/Configure/CHANGELOG
===================================================================
--- trunk/extensions/Configure/CHANGELOG        2009-01-26 19:46:06 UTC (rev 
46278)
+++ trunk/extensions/Configure/CHANGELOG        2009-01-26 20:14:16 UTC (rev 
46279)
@@ -1,6 +1,10 @@
 This file lists changes on this extension.
 Localisation updates are done on betawiki and aren't listed here.
 
+0.11.14 - 26 January 2009
+  Added $wgMaxRedirects, $wgInvalidRedirectTargets, $wgNoFollowDomainExceptions
+  and $wgUseTwoButtonsSearchForm.
+
 0.11.13 - 25 January 2009
   Added support for ImportUsers extension.
 

Modified: trunk/extensions/Configure/Configure.php
===================================================================
--- trunk/extensions/Configure/Configure.php    2009-01-26 19:46:06 UTC (rev 
46278)
+++ trunk/extensions/Configure/Configure.php    2009-01-26 20:14:16 UTC (rev 
46279)
@@ -17,7 +17,7 @@
        'url' => 'http://www.mediawiki.org/wiki/Extension:Configure',
        'description' => 'Allow authorised users to configure the wiki via a 
web-based interface',
        'descriptionmsg' => 'configure-desc',
-       'version' => '0.11.13',
+       'version' => '0.11.14',
 );
 
 # Configuration part

Modified: trunk/extensions/Configure/Configure.settings-core.php
===================================================================
--- trunk/extensions/Configure/Configure.settings-core.php      2009-01-26 
19:46:06 UTC (rev 46278)
+++ trunk/extensions/Configure/Configure.settings-core.php      2009-01-26 
20:14:16 UTC (rev 46279)
@@ -23,6 +23,7 @@
                        'wgExtraSubtitle' => 'text',
                        'wgLegalTitleChars' => 'text',
                        'wgMaxArticleSize' => 'int',
+                       'wgMaxRedirects' => 'int',
                        'wgMetadataWhitelist' => 'text',
                        'wgSiteNotice' => 'text',
                        'wgSiteSupportPage' => 'text',
@@ -35,6 +36,7 @@
                        'wgDefaultRobotPolicy' => 'text',
                        'wgExemptFromUserRobotsControl' => 'array',
                        'wgNoFollowLinks' => 'bool',
+                       'wgNoFollowDomainExceptions' => 'array',
                ),
        ),
        'features' => array(
@@ -46,6 +48,7 @@
                        'wgShowHostnames' => 'bool',
                        'wgUseDumbLinkUpdate' => 'bool',
                        'wgFixDoubleRedirects' => 'bool',
+                       'wgInvalidRedirectTargets' => 'array',
                        'wgUsePathInfo' => 'bool',
                        'wgEnableAPI' => 'bool',
                        'wgEnableWriteAPI' => 'bool',
@@ -692,6 +695,7 @@
                        'wgOpenSearchTemplate' => 'text',
                        'wgSearchForwardUrl' => 'text',
                        'wgSearchHighlightBoundaries' => 'text',
+                       'wgUseTwoButtonsSearchForm' => 'bool',
                ),
        ),
 );
@@ -745,6 +749,7 @@
        'wgNamespacesToBeSearchedProject' => 'ns-bool',
        'wgNamespacesWithSubpages' => 'ns-bool',
        'wgNoFollowNsExceptions' => 'ns-simple',
+       'wgNoFollowDomainExceptions' => 'simple',
        'wgNonincludableNamespaces' => 'ns-simple',
        'wgSitemapNamespaces' => 'ns-simple',
        'wgArticleRobotPolicies' => 'assoc',
@@ -781,6 +786,7 @@
        'wgHttpOnlyBlacklist' => 'simple',
 # Reduction
        'wgDisableQueryPageUpdate' => 'simple',
+       'wgInvalidRedirectTargets' => 'simple',
 # Uploads
        'wgFileBlacklist' => 'simple',
        'wgFileExtensions' => 'simple',
@@ -1068,4 +1074,8 @@
  */
 $settingsVersion = array(
        'wgNewPasswordExpiry' => array( array( '1.15alpha', '>=' ) ),
+       'wgMaxRedirects' => array( array( '1.15alpha', '>=' ) ),
+       'wgInvalidRedirectTargets' => array( array( '1.15alpha', '>=' ) ),
+       'wgNoFollowDomainExceptions' => array( array( '1.15alpha', '>=' ) ),
+       'wgUseTwoButtonsSearchForm' => array( array( '1.15alpha', '>=' ) ),
 );

Modified: trunk/extensions/Configure/Configure.settings.i18n.php
===================================================================
--- trunk/extensions/Configure/Configure.settings.i18n.php      2009-01-26 
19:46:06 UTC (rev 46278)
+++ trunk/extensions/Configure/Configure.settings.i18n.php      2009-01-26 
20:14:16 UTC (rev 46279)
@@ -103,8 +103,10 @@
        'configure-setting-wgHideInterlanguageLinks' => "Hide interlanguage 
links from the sidebar",
        'configure-setting-wgLegalTitleChars' => "Characters permitted in page 
titles (regex character class)",
        'configure-setting-wgMaxArticleSize' => "Maximum page size (kB)",
+       'configure-setting-wgMaxRedirects' => "Maximum number of redirects to 
follow when resolving redirects",
        'configure-setting-wgMetadataWhitelist' => "Page containing allowed 
metadata templates",
        'configure-setting-wgNoFollowLinks' => "Add rel=\"nofollow\" to links",
+       'configure-setting-wgNoFollowDomainExceptions' => "External links to 
these domain names (or any subdomains) will not have the rel=\"nofollow\" 
attribute",
        'configure-setting-wgPageShowWatchingUsers' => "Show which users are 
watching a page",
        'configure-setting-wgRestrictionLevels' => "Settable restriction 
levels",
        'configure-setting-wgSiteNotice' => "Site Notice",
@@ -205,6 +207,7 @@
        'configure-setting-wgDisableTextSearch' => "Disable full-text search",
        'configure-setting-wgEdititis' => "Display user edit counts in various 
prominent places",
        'configure-setting-wgFixDoubleRedirects' => "Fix double redirects after 
a page move",
+       'configure-setting-wgInvalidRedirectTargets' => "Array of invalid page 
redirect targets",
        'configure-setting-wgMaximumMovedPages' => "Maximum number of pages to 
move at once when moving subpages with a page",
        'configure-setting-wgMiserMode' => "Disable some performance-intensive 
features",
        'configure-setting-wgShowHostnames' => "Expose hostnames through API 
and HTML comments",
@@ -271,6 +274,7 @@
        'configure-setting-wgOpenSearchTemplate' => "Template for OpenSearch 
suggestions",
        'configure-setting-wgSearchForwardUrl' => "Forward search requests",
        'configure-setting-wgSearchHighlightBoundaries' => "Regexp to match 
word boundaries",
+       'configure-setting-wgUseTwoButtonsSearchForm' => "Sidebar's search form 
behavior",
        'configure-setting-wgCountCategorizedImagesAsUsed' => "On 
[[Special:UnusedImages]], consider files used if they are put into a category",
        'configure-setting-wgDisableCounters' => "Disable page view counters",
        'configure-setting-wgHitcounterUpdateFreq' => "Page counter update 
frequency",

Modified: trunk/extensions/Configure/default-setting-names.php
===================================================================
--- trunk/extensions/Configure/default-setting-names.php        2009-01-26 
19:46:06 UTC (rev 46278)
+++ trunk/extensions/Configure/default-setting-names.php        2009-01-26 
20:14:16 UTC (rev 46279)
@@ -148,9 +148,11 @@
        'wgHideInterlanguageLinks' => "Hide interlanguage links from the 
sidebar",
        'wgLegalTitleChars' => "Override default list of illegal characters in 
page titles",
        'wgMaxArticleSize' => "Maximum article size in kilobytes",
+       'wgMaxRedirects' => "Max number of redirects to follow when resolving 
redirects.",
        'wgMetadataWhitelist' => "Full name of the page containing templates 
names that will be allowed as metadata",
        'wgNavigationLinks' => "Navigation links for the user sidebar",
        'wgNoFollowLinks' => "If true, external URL links in wiki text will be 
given the <code>rel=nofollow</code> attribute",
+       'wgNoFollowDomainExceptions' => "External links to these domain names 
(or any subdomains) will not be set to <code>rel=\"nofollow\"</code>",
        'wgPageShowWatchingUsers' => "Show watching users in Page views",
        'wgRestrictionLevels' => "Set of permission keys that can be selected 
on the 'page protection' page",
        'wgSiteNotice' => "A message to be displayed at the top of every page",
@@ -310,6 +312,7 @@
        'wgDisableTextSearch' => "Disables full text search (including title 
search)",
        'wgEdititis' => "Display user edit counts in various prominent places",
        'wgFixDoubleRedirects' => "Fix double redirects after a page move",
+       'wgInvalidRedirectTargets' => "Array of invalid page redirect targets.",
        'wgMaximumMovedPages' => "Maximum number of pages to move at once when 
moving subpages with a page",
        'wgMiserMode' => "If true, disable database-intensive features",
        'wgShowHostnames' => "If set to true, exposes host names through API 
and HTML comments",
@@ -529,6 +532,7 @@
        'wgOpenSearchTemplate' => "Template for OpenSearch suggestions",
        'wgSearchForwardUrl' => "Set this to a URL to forward search requests 
to some external location",
        'wgSearchHighlightBoundaries' => "Regexp to match word boundaries",
+       'wgUseTwoButtonsSearchForm' => "Sidebar's search form behavior",
        'wgHTCPMulticastAddress' => "''Not used yet. Commented out.''",
        'wgCommandLineDarkBg' => "For colorized maintenance script output",
        'wgCommandLineMode' => "Indicates whether MediaWiki is running in 
command-line mode. '''Should never be set manually!'''",



_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to