Go to file
Mark A. Hershberger 8febd9fe90 Fix “Incorrect error: You must select at least one namespace.”
All selections are not put in hidden fields when pageListForm is
called.

Bug: 38170
Change-Id: Ic60f3f3ab68448f1925dba2513ac10a193a4ffef
2014-08-18 09:57:00 -04:00
i18n Localisation updates from https://translatewiki.net. 2014-08-09 20:01:22 +02:00
.gitignore Add .gitignore 2012-06-21 19:37:12 +01:00
.gitreview Adding .gitreview 2012-06-21 12:57:39 -04:00
README Version 1.0 2014-05-29 21:54:46 +04:00
ReplaceText.alias.php Localisation updates from https://translatewiki.net. 2014-07-31 22:17:03 +02:00
ReplaceText.i18n.php Update i18n shim 2014-04-22 13:39:55 +00:00
ReplaceText.js Maintenance for ReplaceText extension. 2012-11-07 07:37:05 +00:00
ReplaceText.php Version 1.0 2014-05-29 21:54:46 +04:00
ReplaceTextJob.php Added initialization of variable - fix for bug 68363 2014-07-23 04:31:36 +04:00
SpecialReplaceText.php Fix “Incorrect error: You must select at least one namespace.” 2014-08-18 09:57:00 -04:00

Replace Text Extension

        Version 1.0
        Yaron Koren and Niklas Laxström

This is free software licenced under the GNU General Public Licence. Please
see http://www.gnu.org/copyleft/gpl.html for further details, including the
full text and terms of the licence.

== Overview ==

Replace Text is an extension to MediaWiki that creates a new special page,
Special:ReplaceText, available to anyone who has the 'replacetext'
privilege, that does a text find-and-replace on all pages in the wiki,
selectable by namespace. Both the contents of pages and their titles can be
modified. The search is case-sensitive.

Since the replacement is not undoable, if the replacement string is
blank or a string that is already contained in the wiki, the 'ReplaceText'
page prompts the user to confirm the replacement before it is performed.

Each replacement shows up as a wiki edit, with the administrator who
performed the replacement appearing as the user and an edit summary that
looks like "Text replacement: 'search string' to 'replacement string'".

For more information, see the extension homepage at:
http://www.mediawiki.org/wiki/Extension:Replace_Text

== Requirements ==

This version of the Replace Text extension requires MediaWiki 1.18 or higher.

== Installation ==

To install the extension, place the entire 'ReplaceText' directory
within your MediaWiki 'extensions' directory, then add the following
line to your 'LocalSettings.php' file:

     require_once( "$IP/extensions/ReplaceText/ReplaceText.php" );

In order to perform replacements, you must have the 'replacetext' permssion;
if you are an administrator on your wiki, the easiest way to do this is to
also add the following line:

     $wgGroupPermissions['sysop']['replacetext'] = true;

== Contact ==

Comments, questions, suggestions and bug reports are welcome, and can
be placed on the Talk page for the extension, or sent to Yaron at
yaron57@gmail.com.