Extension:UserMerge/pt

Manual:Merging users redirects here. Not to be confused with Special:MergeAccount provided by Extensão:CentralAuth which create a "global" account from local accounts in multiple wikis.
Category:GPL licensed extensions/pt
Manual de extensões do MediaWiki
UserMerge
Estado de lançamento: estávelCategory:Stable extensions/pt
Implementação Página espacial Category:Special page extensions/pt, Identidade do utilizador Category:User identity extensions/pt
Descrição Une as referências de um utilizador para outro utilizador na base de dados da wiki - também pode eliminar utilizadores antigos depois de unir
Autor(es)
Última versão 1.10.2
Política de compatibilidade Lançamentos de capturas de ecrã junto com o MediaWiki. Original não é compatível com versões anteriores.
Alterações à base de dados Não
Licença GNU - Licença Pública Geral 2.0 ou superior
Transferência Category:Extensions in Wikimedia version control/pt
  • $wgUserMergeProtectedGroups
  • $wgUserMergeEnableDelete
Quarterly downloads 138 (Ranked 17th)
Public wikis using 888 (Ranked 260th)
Traduza a extensão UserMerge se ela estiver disponível em translatewiki.net
Função no Vagrant usermerge
Problemas Tarefas em aberto · Reportar um erro
Category:All extensions/pt

A extensão UserMerge (Unir Utilizador) permite aos utilizadores da wiki com a permissão usermerge (Burocrata por predefinição) para unir a conta da Wiki do utilizador com outra conta da Wiki do utilizador.

Características
  • unir (referir contribuições, textos, listas de vigia, número de edições da primeira conta A para a segunda conta B)
  • eliminar a primeira conta A depois de unir (caixa de opção)
Limitações
  • não pode eliminar o utilizador A sem ter unido o utilizador A para B
  • não pode unir a sua própria conta (utilizador autenticado) para um utilizador diferente
Notas
  • 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.
  • When user is merged, some actions listed in CheckUser stay as the old user and some actions go to the new user. When user is deleted, the actions that should be listed with the old account in CheckUser are gone.
Aviso Aviso: UserMerge is currently incompatible with either $wgSharedDB or CentralAuth.

Instalação

  • Exporte e coloque o ficheiro, ou ficheiros, num diretório chamado UserMerge, na sua pasta extensions/.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/UserMerge
  • Acrescente o seguinte código ao fundo do ficheiro $LocalSettings:
    wfLoadExtension( 'UserMerge' );
    // Por predefinição, ninguém pode utilizar esta função, ativar para o burocrata?
    $wgGroupPermissions['bureaucrat']['usermerge'] = true;
    
    // To enable for administrators add this:
    $wgGroupPermissions['sysop']['usermerge'] = true;
    
    // opcional: a predefinição é [ 'sysop' ]
    $wgUserMergeProtectedGroups = [ 'groupname' ];
    
  • Yes Pronto – Na página especial Special:Version da sua wiki verifique se a extensão foi instalada.


Vagrant installation:

  • Se estiver a utilizar Vagrant , instale com vagrant roles enable usermerge --provision

Utilização

  • unmergeable users can be defined (examples):
# Allow all users to be merged (by default, the 'sysop' group is unmergeable)
$wgUserMergeProtectedGroups = [];

# Disallow merging of the users in the 'sysop' or 'awesomeusers' groups
$wgUserMergeProtectedGroups = [ 'sysop', 'awesomeusers' ];

# enable the permission for sysops
$wgGroupPermissions['sysop']['usermerge'] = true;

You can use Ajuda:Suprimir Revisão feature of MediaWiki to replace the UserMerge logs information with neutral information.

Active RevisionDelete in LocalSettings.php file with:

$wgGroupPermissions['sysop']['deletelogentry'] = true;
$wgGroupPermissions['sysop']['deleterevision'] = true;

Then, from Special:Log/usermerge, you can check and disable the logs content resulting from modifications made by UserMerge with simple check box.

Consulte também

  • hideuser rightAllows to "hide" users from various lists when indefinitely blocking them
  • phab:T8397 – Bandeira para marcar as contas como bloqueadas/ocultas (conhecido como remover/eliminar)
  • Manual:removeUnusedAccounts.php - Maintenance script that can delete the accounts of users that have never made any edits, without merging them and without needing this extension
  • Extension:UserVerification (allows to delete users with some constraints)


Category:All extensions/pt Category:ContributionsToolLinks extensions/pt Category:Extensions in Wikimedia version control/pt Category:Extensions included in BlueSpice/pt Category:Extensions included in Canasta/pt Category:Extensions included in MyWikis/pt Category:Extensions included in semantic::core/pt Category:Extensions included in wiki.gg/pt Category:Extensions which add rights/pt Category:GPL licensed extensions/pt Category:Special page extensions/pt Category:Stable extensions/pt Category:UserGetReservedNames extensions/pt Category:User identity extensions/pt