mediawiki-extensions-Replac.../README

52 lines
1.9 KiB
Plaintext
Raw Normal View History

2008-04-29 14:43:25 +00:00
Replace Text Extension
Version 0.9.4
Yaron Koren and Niklas Laxström
2008-04-29 14:43:25 +00:00
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,
2009-05-19 15:24:13 +00:00
selectable by namespace. Both the contents of pages and their titles can be
modified. The search is case-sensitive.
2008-04-29 14:43:25 +00:00
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 replace: 'search string' to 'replacement string'".
For more information, see the extension homepage at:
http://www.mediawiki.org/wiki/Extension:Replace_Text
== Requirements ==
2012-01-03 17:17:45 +00:00
This version of the Replace Text extension requires MediaWiki 1.16 or higher.
2008-04-29 14:43:25 +00:00
== 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" );
2009-01-18 16:21:29 +00:00
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:
2009-01-18 00:15:08 +00:00
$wgGroupPermissions['sysop']['replacetext'] = true;
2008-04-29 14:43:25 +00:00
== 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.