Go to file
Translation updater bot 6c13e45944 Localisation updates from https://translatewiki.net.
Change-Id: I2ea5437a214b0f54fe328d863eb43bce9c43202c
2021-05-25 08:53:54 +02:00
.phan Provide phan with stubs for AL* classes 2021-04-07 22:14:44 -04:00
i18n Localisation updates from https://translatewiki.net. 2021-05-25 08:53:54 +02:00
maintenance build: Updating dependencies 2021-05-13 05:12:32 +00:00
resources build: Updating dependencies 2021-01-30 09:22:05 +00:00
src Fix mysql specifc cast on signed with Database::buildIntegerCast 2021-05-16 22:12:33 +02:00
.eslintrc.json build: Updating mediawiki/mediawiki-codesniffer to 33.0.0 2020-11-04 16:53:49 +00:00
.gitignore build: Updating dependencies 2019-08-03 04:41:58 +00:00
.gitreview Whoops, track not trace 2016-10-24 17:03:28 -07:00
.phpcs.xml Provide phan with stubs for AL* classes 2021-04-07 22:14:44 -04:00
.stylelintrc.json Avoid using core module 'mediawiki.special.search' 2018-12-22 20:32:33 +01:00
composer.json build: Updating dependencies 2021-05-13 05:12:32 +00:00
COPYING Provide tiny tweaks 2016-03-10 14:27:51 +01:00
extension.json Move to MW\Extension namespace 2021-04-09 13:12:48 -04:00
Gruntfile.js build: Use existing eslint also for json linting 2020-09-12 13:55:47 +02:00
package-lock.json build: Updating dependencies 2021-05-13 05:12:32 +00:00
package.json build: Updating dependencies 2021-05-13 05:12:32 +00:00
README Follow-up d6492afd: Drop pre-1.32 back-compatibility code 2020-12-22 09:07:36 -08:00
replaceAll.php Move replaceAll.php into maintenance/ 2018-05-03 13:08:15 -07:00
ReplaceText.i18n.alias.php Add aliases for Serbian Latin script 2019-12-26 00:33:31 +01:00
ReplaceText.php Follow-up 45e7d3a7: Turn ReplaceText.php into a static registration shim 2020-06-18 21:14:12 +00:00

Replace Text Extension

        Version 1.4.1
        Yaron Koren, Niklas Laxström and others

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:
https://www.mediawiki.org/wiki/Extension:Replace_Text

== Requirements ==

This version of the Replace Text extension requires MediaWiki 1.32 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:

     wfLoadExtension( 'ReplaceText' );

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.