Go to file
Translation updater bot c1a3e65c4d Localisation updates from https://translatewiki.net.
Change-Id: I33d7b50d17aa36d2711502893607f024e3a9bca1
2018-03-05 22:25:01 +01:00
i18n Localisation updates from https://translatewiki.net. 2018-03-05 22:25:01 +01:00
.gitignore build: Updating mediawiki/mediawiki-codesniffer to 0.9.0 2017-06-25 13:33:00 +00:00
.gitreview Whoops, track not trace 2016-10-24 17:03:28 -07:00
.phpcs.xml Improve some parameter docs 2018-01-08 18:46:48 +01:00
composer.json build: Updating mediawiki/mediawiki-codesniffer to 16.0.1 2018-02-25 10:54:21 +00:00
COPYING Provide tiny tweaks 2016-03-10 14:27:51 +01:00
extension.json Use SPDX 3.0 license identifier 2018-03-02 15:35:23 -08:00
Gruntfile.js build: Always exclude vendor and node_modules 2017-11-11 11:37:10 +01:00
package.json build: mark package.json as private 2017-08-01 15:55:45 +02:00
README Version 1.3 2018-02-08 17:45:36 +00:00
replaceAll.php Fix for 865bdd2b9b - added backwards compatibility 2018-02-08 17:29:18 +00:00
ReplaceText.alias.php Localisation updates from https://translatewiki.net. 2015-05-12 22:25:38 +02:00
ReplaceText.hooks.php Add Replace Text reminder message at end of page move 2018-02-20 21:34:48 +05:30
ReplaceText.js Maintenance for ReplaceText extension. 2012-11-07 07:37:05 +00:00
ReplaceText.php Use SPDX 3.0 license identifier 2018-03-02 15:35:23 -08:00
ReplaceTextJob.php Remove wfProfileIn/wfProfileOut 2018-02-10 13:33:52 +01:00
ReplaceTextSearch.php build: Updating mediawiki/mediawiki-codesniffer to 13.0.0 2017-09-24 05:32:34 +00:00
SpecialReplaceText.php Remove wfProfileIn/wfProfileOut 2018-02-10 13:33:52 +01:00

Replace Text Extension

        Version 1.3
        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.23 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.