mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ReplaceText
synced 2024-11-28 00:20:00 +00:00
708c7d7ffd
composer: * mediawiki/mediawiki-phan-config: 0.11.1 → 0.12.0 * php-parallel-lint/php-console-highlighter: 0.5.0 → 1.0.0 * php-parallel-lint/php-parallel-lint: 1.3.1 → 1.3.2 npm: * grunt: 1.4.0 → 1.5.3 * grunt-banana-checker: 0.9.0 → 0.10.0 * grunt-eslint: 23.0.0 → 24.0.0 * async: 3.2.0 → 3.2.4 * https://github.com/advisories/GHSA-fwr7-v2mv-hh25 * minimatch: 3.0.4 → 3.0.8 * https://github.com/advisories/GHSA-f8q6-p94x-37v3 * minimist: 1.2.5 → 1.2.7 * https://github.com/advisories/GHSA-xvch-5gv4-984h * nanoid: 3.1.25 → 3.3.4 * https://github.com/advisories/GHSA-qrpm-p2h7-hrv2 Additional changes: * Set `name` in package.json. Change-Id: I1706b77f713c6446c85f96ae4788eaf05de37b2a |
||
---|---|---|
.phan | ||
i18n | ||
maintenance | ||
resources | ||
src | ||
.eslintrc.json | ||
.gitignore | ||
.gitreview | ||
.phpcs.xml | ||
.stylelintrc.json | ||
composer.json | ||
COPYING | ||
extension.json | ||
Gruntfile.js | ||
package-lock.json | ||
package.json | ||
README | ||
ReplaceText.i18n.alias.php |
Replace Text Extension Version 1.7 Yaron Koren, Niklas Laxström and others This is free software licenced under the GNU General Public Licence. Please see https://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.