Extension:Renameuser

This page is a translated version of the page Extension:Renameuser and the translation is 34% complete.
Outdated translations are marked like this.
この拡張機能は MediaWiki 1.18 以降に同梱されています。 そのため再度ダウンロードする必要はありません。 しかし、提供されているその他の手順に従う必要はあります。
MediaWiki 拡張機能マニュアル
Renameuser
リリースの状態: 安定
実装 利用者識別 , 特別ページ , フック
説明 利用者のアカウントを改名できる特別ページを提供する
作者 Ævar Arnfjörð Bjarmasonトーク
最新バージョン continuous updates
MediaWiki 1.25+
PHP 5.4+
データベースの変更 いいえ
ライセンス GNU 一般公衆利用許諾書 2.0 以降
ダウンロード
README
Quarterly downloads 204 (Ranked 54th)
Public wikis using 2,792 (Ranked 182nd)
translatewiki.net で翻訳を利用できる場合は、Renameuser 拡張機能の翻訳にご協力ください
問題点 未解決のタスク · バグを報告

RenameUser 拡張機能は、権限を持つ利用者が利用者アカウントを改名できる特別ページを提供します。 この改名によりページの履歴などが更新されます。 If you want to rename an account "into" another, already existing one, you need the User Merge and Delete extension.


インストール

  • ダウンロードして、ファイルをextensions/フォルダー内のRenameuserという名前のディレクトリ内に配置します。
  • 以下のコードを LocalSettings.php の末尾に追加します:
    wfLoadExtension( 'Renameuser' );
    
  •   完了 – ウィキの「Special:Version」に移動して、拡張機能が正しくインストールされたことを確認します。


使用法

  1. ビューロクラットに所属して、Special:RenameUser ページにアクセスします。
  1. 改名する利用者名と希望する新しい利用者名を入力して、利用者/会話ページとそれらの下位ページを移動させるオプションを切り替え、「OK」ボタンをクリックします。

The user will be renamed, and (if the appropriate option was checked) the user page, user talk page and all their subpages will be moved as well.

The ability of this extension to move user subpages does not depend on 'move-subpages' userright. The number of subpages moved is not limited by the $wgMaximumMovedPages parameter. The extension will also move all css, js and move-protected pages.

You can grant other groups the right to rename users, for example:

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

注記

  • In case CentralAuth is installed, you'll get a warning if you try to rename a local user from an account attached to a global account or to a username reserved by a global account; a check box to rename anyway will be provided (this requires caution).

You should probably use CentralAuth's built-in Special:GlobalRenameUser and Special:GlobalRenameRequest/Special:GlobalRenameQueue.

  • You will not be able to rename users to invalid usernames (which doesn't equal usernames which match a blacklist but includes for instance reserved usernames ).
  • Due to a bug, you can't rename the same account from where you're performing the rename (タスク T267477).

Use the command line maintenance script to do the rename, or use a different account to do the rename.

技術的な注記

This extension introduces and invokes the RenameUserComplete hook to notify other extensions of user renames.

よくある質問

There were so many userpages that it timed out partway through moving them from User:A/subpage... to User:B/subpage... What do I do now?

You can't fix the situation by immediately trying again to rename User A to User B, because it will simply say "The user 'User A' does not exist." To fix the situation, rename User B back to User A, after unchecking the box "Move user and talk pages (and their subpages) to new name". Then rename User A to User B again, this time leaving the box "Move user and talk pages (and their subpages) to new name" checked. The page moving will resume where it left off.