mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ReplaceText
synced 2024-11-15 10:59:28 +00:00
New version, 0.3.1
This commit is contained in:
parent
16f7be9bb5
commit
b34f3fe503
Notes:
Yaron Koren
2009-07-20 18:49:29 +00:00
4
README
4
README
|
@ -1,6 +1,6 @@
|
|||
Replace Text Extension
|
||||
|
||||
Version 0.4
|
||||
Version 0.3.1
|
||||
Yaron Koren
|
||||
|
||||
This is free software licenced under the GNU General Public Licence. Please
|
||||
|
@ -11,7 +11,7 @@ full text and terms of the licence.
|
|||
|
||||
Replace Text is an extension to MediaWiki that creates a new special page,
|
||||
Special:ReplaceText, available to administrators only (defined as anyone
|
||||
who has 'delete' privileges on pages), that does a text find-and-replace
|
||||
who has the 'replacetext' privilege), that does a text find-and-replace
|
||||
on all pages in the wiki, except the Talk pages and the ones in the wiki's
|
||||
own project namespace. Both the contents of pages and their titles can be
|
||||
modified. The search is case-sensitive.
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* allow administrators to do a global string find-and-replace on all the
|
||||
* content pages of a wiki.
|
||||
*
|
||||
* http://www.mediawiki.org/wiki/Extension:Text_Replace
|
||||
* http://www.mediawiki.org/wiki/Extension:Replace_Text
|
||||
*
|
||||
* The special page created is 'Special:ReplaceText', and it provides
|
||||
* a form to do a global search-and-replace, with the changes to every
|
||||
|
@ -24,7 +24,7 @@ if (!defined('MEDIAWIKI')) die();
|
|||
// credits
|
||||
$wgExtensionCredits['specialpage'][] = array(
|
||||
'name' => 'Replace Text',
|
||||
'version' => '0.4',
|
||||
'version' => '0.3.1',
|
||||
'author' => 'Yaron Koren',
|
||||
'url' => 'http://www.mediawiki.org/wiki/Extension:Replace_Text',
|
||||
'description' => 'A special page that lets administrators run a global search-and-replace',
|
||||
|
|
Loading…
Reference in a new issue