Difference between revisions of "Mediawiki Extension UserMerge"

From Micylou WIKI
Jump to navigation Jump to search
m (Text replacement - "Template-uk:Class-Infobox-Software" to "Template:Class-Infobox-Software")
m (Changed Infobox)
Line 1: Line 1:
'''<span style="color:white; background:white">[[PageName::{{PAGENAME}}|]]</span>'''
+
<!-- Template Infobox Generic-->
<!-- Template Infobox Software -->
+
{{Template:Class-Infobox-Generic<!-- ALL MUST BE FILLED IN -->
{{Template:Class-Infobox-Software
 
 
|image = <!-- If an logo is required, enter the link here -->
 
|image = <!-- If an logo is required, enter the link here -->
 
|Section = [[Section::{{PAGENAME}}]]
 
|Section = [[Section::{{PAGENAME}}]]
|Source = [[Source::DataSource]]<!-- [[Source::DataSource]], [[Source::Semantic Query]], ... -->
+
|Source = [[Source::DataSource]] <!-- [[Source::DataSource]], [[Source::Query]] ... -->
|Version = [[Version::MW-1.31-LTS]]<!-- [[Version::MW-1.31-LTS]] -->
+
|Language = [[Language::English]] <!-- [[Language::English]], [[Language::Français]], [[Language::Nederlands]] -->
|Language = [[Language::English]]<!-- [[Language::English]], [[Language::Français]] -->
+
|Topic = [[Topic::Mediawiki]] <!-- [[Topic::Mediawiki]], [[Subject::Microsoft]], ... -->
|Subject = [[Subject::Mediawiki]]<!-- [[Subject::Mediawiki]], ... -->
+
|SubTopic = [[SubTopic::Mediawiki Extension]] <!-- [[SubTopic::Mediawiki Extension]], [[SubTopic::Office 365]] , ... -->
         |DocumentType =  [[DocumentType::Extension]]<!-- [[DocumentType::Extension]] -->
+
         |DocumentType =  [[DocumentType::Documentation]] <!-- [[DocumentType::User Guide]], [[DocumentType::Procedure]], [[DocumentType::Script]], [[DocumentType::Gallery]], ...-->
|LastEditBy = [[LastEditBy::{{REVISIONUSER}}]]
+
|LastEditBy = [[LastEditBy::{{REVISIONUSER}}]]  
|LastEdit = [[LastEdit::{{REVISIONYEAR}}-{{REVISIONMONTH}}-{{REVISIONDAY2}}]]
+
|LastEdit = [[LastEdit::{{REVISIONYEAR}}-{{REVISIONMONTH}}-{{REVISIONDAY2}}]]  
|DocumentStatus = [[DocumentStatus::Active]] <!--[[DocumentStatus::Active]]  [[DocumentStatus::Development]] [[DocumentStatus::Obsolete]] -->
+
|Status = [[Status::Active]] <!--[[Status::Active]]  [[Status::Development]] [[Status::Obsolete]] [[Status::Archived]] [[Status::To Delete]]-->
 
}}
 
}}
<!-- End of Template Infobox Software -->
+
<!-- End of Template Infobox Generic-->
  
 
== Description ==
 
== Description ==

Revision as of 14:25, 26 February 2021

Source: DataSource
Language: English
Topic: Mediawiki
SubTopic: Mediawiki Extension
Last Edit By: DochyJP
LastEdit: 2021-02-26
Document type: Documentation
Status: Active

Description

The UserMerge extension allows wiki users with the usermerge permission (Bureaucrat by default) to merge one Wiki user's account with another Wiki user's account.

The extension allows to :

  • merge (refer contributions, texts, watchlists, edit count of a first account A to a second account B)
  • delete the first account A after the merge (option box)

Limitations

  • you cannot delete a user A without having merged the user A to B
  • you cannot merge your own account (logged-in user) into a different user

Extras

  • if you omit the "New User" field, then the extension auto-populates the New User as "Anonymous" (user_id 0), and ask you to confirm a merge to Anonymous. This is used for user deletion: you first empty (merge to user 0) contributions of a user A, and then delete the user A.
  • If your version of the extension complains about an empty "New User" field you can fill in "Anonymous"
  • the extension creates a User Merge log and logs all User Merge extension activity.[1]

Installation

Download and place the file(s) in a directory called UserMerge in your extensions/ folder.

Download

Download and place the file(s) in a directory called UserMerge in your extensions/ folder.

Activation

Add the following code at the bottom of your LocalSettings.php:

wfLoadExtension( 'UserMerge' );

Configuration

// By default nobody can use this function, enable for bureaucrat?
$wgGroupPermissions['bureaucrat']['usermerge'] = true;
// optional: default is array( 'sysop' )
$wgUserMergeProtectedGroups = array( 'groupname' );




Back to top of page - Back to Welcome Page