Extension:MassEditRegex

This page is a translated version of the page Extension:MassEditRegex and the translation is 42% complete.
MediaWiki 拡張機能マニュアル
MassEditRegex
リリースの状態: 安定
実装 ページの操作 , 特別ページ
説明 正規表現を使用して複数のページを一度に編集できるようにする。
作者 Adam Nielsen (Malvineousトーク)
最新バージョン 8.4.1
MediaWiki >= 1.40.0
データベースの変更 いいえ
ライセンス GNU 一般公衆利用許諾書 2.0 以降
ダウンロード
  • $wgAjaxExportList
  • masseditregex
四半期ごとのダウンロード数 40 (Ranked 99th)
translatewiki.net で翻訳を利用できる場合は、MassEditRegex 拡張機能の翻訳にご協力ください
問題点 未解決のタスク · バグを報告

MassEditRegex 拡張機能は、管理者が正規表現を使用して、複数のページのコンテンツに対して一括編集を行えるようにします。 これは、テンプレートの名前変更、カテゴリへのページ追加、または誤字の修正など、簡単な編集に適しています (これらすべては複数の正規表現を指定することで、同じ編集操作で実行できます)。


使用法

拡張機能をインストールし、MassEditRegex を使用するための masseditregex の権限が付与されたら、「Special:MassEditRegex」に移動し、編集フォームに記入してください。 この拡張機能を使用するには、正規表現の知識が必要です。

特徴

  • ページの繰り返し処理はクライアント側で行うことができるため、多数のページを編集する際の PHP の最大実行時間の問題はなくなります。
  • 1 つ以上の正規表現を使用して、単一のステップで各ページを変換します。
  • 編集は「ボット」として表示されるため、通常の編集一覧には表示されません (利用者がボット編集を表示する設定にしない限り)。
  • masseditregex の権限を持つ利用者のみが変更を行えます。
  • 新しい「すべて編集」タブがカテゴリ ページや Special:WhatLinksHere に表示され、すべての列挙されたページを一度に編集できます。
  • Pages to edit can be specified as:
    • A list of page names
    • A list of page name prefixes (e.g., "Test" will match pages called "Testing" and "Tested")
    • A list of categories (all pages within the categories will be edited)
    • A list of backlinks (pages edited are those linking to the ones in the list)

インストール

  • ダウンロードして、ファイルをextensions/フォルダー内のMassEditRegexという名前のディレクトリ内に配置します。
    開発者とコード寄稿者は、上記の代わりに以下を使用してGitからインストールします:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/MassEditRegex
  • 以下のコードを LocalSettings.php ファイルの末尾に追加します:
    wfLoadExtension( 'MassEditRegex' );
    
  • Configure user group and user right at your convenience.
  •   完了 – ウィキの「Special:Version」に移動して、拡張機能が正しくインストールされたことを確認します。

設定

This extension comes with an extra user right called "masseditregex" to allow fine-grained control of which user groups may use this extension. By default, it is assigned to no user group. In case you would like to assign it to a user group e.g. "masseditregexeditor", add the following code to your "LocalSettings.php" file right after the lines added in step (3) of the installation process:

$wgGroupPermissions['masseditregexeditor']['masseditregex'] = true;

Alternatively, you may grant this permission to an existing user group, e.g., "sysop" by adding the following line:

$wgGroupPermissions['sysop']['masseditregex'] = true;

Tips

Adding content to the top of the page:

  • Detect any first character at the beginning of a page: → Search for: /^(.)/
  • Prepend my content to the char found at the beginning of a page, including a line break: → Replace with: MyContent\n$1

既知の問題点

Server-side execution is the default as it (should) be faster.

However, editing large numbers of pages will cause server timeouts due to PHP limits on script execution time. To work around this (and perhaps to get better feedback on progress), you can tick "execute in browser" to have the job tracking done on the client side. This should mean timeouts are no longer a problem.

Page not found

In (at least) MediaWiki 1.31 and later, when the regex you provide is invalid, it will falsely indicate that all of the pages you selected for replacement are not found.

Replacement in certain namespaces

If you would like to replace text only in certain namespaces, e.g., "File" and enter this with the page prefix option, you will get the following note: "Error: The MediaWiki API returned the error code invalidtitle: Bad title "File:"."

関連項目