Extensión:Thanks
Thanks Estado de lanzamiento: estable |
|
---|---|
Implementación | Interfaz de usuario |
Descripción | Permite a los usuarios agradecer a otros usuarios por ediciones individuales, etc. |
Autor(es) |
|
Última versión | 1.2.0 (Continuous updates) |
Política de compatibilidad | Lanzamientos de screenshots junto con MediaWiki. Master no es compatible con versiones anteriores. |
MediaWiki | >= 1.43 |
Licencia | MIT Licencia |
Descarga | |
|
|
Descargas trimestrales | 25 (Ranked 115th) |
Wikis públicos que lo utilizan | 2,442 (Ranked 193rd) |
Traduce la extensión Thanks si está disponible en translatewiki.net | |
Función de vagabundo | echo |
Asuntos | Tareas abiertas · Reportar un bug |
The Thanks extension adds a quick way to give positive feedback for productive contributions to MediaWiki sites. It allows users to send public 'thank you' notifications (via Echo ) to other users for their individual edits and some logged actions.
La revisión específica por la que se está "agradeciendo" no se almacena en la tabla de registro público. Solo la marca de tiempo, el remitente y el destinatario se registran públicamente.
Se agrega un enlace de 'agradecimiento' en cuatro lugares:
- junto al enlace 'deshacer' en el historial y diferentes vistas;
- en algunas entradas de registro en Especial: Registro (see #Configuration, below);y
- en Flow la junta comenta si Flow está instalado.
También proporciona una API para enviar gracias.
Tenga en cuenta que si no desea ser agradecido, puede deshabilitar fácilmente esta notificación en sus preferencias,la página de discusión.
Una vez que haya tenido la oportunidad de probarlo, agradeceremos sus comentarios sobre esta función en la página de discusión.
Esperamos que la notificación de agradecimiento haga que sea más fácil mostrar aprecio por el trabajo del otro, y que sea particularmente útil para alentar a los nuevos usuarios durante sus primeros pasos críticos en una wiki. Intencionalmente, hemos mantenido esta notificación lo más simple posible, para que podamos evaluarla y mejorarla juntos. Disfrutelo…
Instalación
- Descarga y extrae los archivos en un directorio denominado «
Thanks
» dentro de la carpetaextensions/
.
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Thanks - Añade el siguiente código en la parte final de tu archivo LocalSettings.php :
wfLoadExtension( 'Thanks' );
- De ser necesario, configúralo a tu gusto
- Vaya a la acción Historial de una página para ver la nueva interfaz "Gracias".
- Hecho – Navega a Special:Version en el wiki para verificar que la extensión se haya instalado correctamente.
Configuración
Habilite la interfaz de agradecimiento para ediciones de bot (deshabilitado de forma predeterminada)
$wgThanksSendToBots = false;
Registrar acciones de agradecimiento en "Special:Log" (habilitado de forma predeterminada)
$wgThanksLogging = true;
Si se requiere o no confirmación para agradecerte (activado por omisión)
$wgThanksConfirmationRequired = true;
Tipos de entrada de registro que se pueden agradecer desde Especial: Registro:
$wgThanksAllowedLogTypes = [
"contentmodel",
"delete",
"import",
"merge",
"move",
"patrol",
"protect",
"tag",
"managetags",
"rights"
];
Uso
Para agradecer a otro usuario, vaya a la pestaña Historial de cualquier página. Al lado de cada revisión habrá un enlace de 'agradecimiento'. Haga clic en el enlace para enviar gracias a ese usuario. Este enlace también está disponible en la vista de diferencias, en algunas entradas en Special: Log, y debajo de los comentarios en Flowboards si Flow está instalado.
When the thank link is clicked, the recipient will receive a notification with your thanks via the Echo extension (unless they have opted out of receiving thanks notifications). A record of the action is also recorded as a log entry at Special:Log/thanks.
If the wiki is using memcached, a rate limit is imposed of no more than 10 thanks per minute per user. The limit can be configured with $wgRateLimits ['thanks-notification']
.
Avoiding thanks
To stop getting thanks notifications, you can opt out from them in your notification preferences. Go to the Notifications tab of your preferences. This only prevents you from getting notified, it does not prevent users from thanking you.
Documentación de API
thank | |
---|---|
Este módulo no puede ser utilizado como de generador. | |
Prefijo | |
Derechos requeridos | Ninguno |
¿Correo sólo? | Sí |
Ayuda generada | Actual |
The Thanks extension includes an API for sending thanks. In order to call the API, use the parameter action=thank
.
Parámetros:
rev
- The revision ID you would like to thank someone for (either this orlog
is required)log
- The log ID you would like to thank someone for (either this orrev
is required)source
- Source of the thank event. This is a short string that identifies where the thanks was sent from. For example, if the thanks was sent from Huggle, the value could be 'huggle'. (optional)token
- Edit token (a.k.a. CSRF token). You can get one of these through the tokens API. (required)
Ejemplo:
api.php?action=thank&rev=16543&token=%2B\
To send thanks via OAuth only the "Basic" grant permission is required. A python example is available.
Flow Thanks
flowthank | |
---|---|
Este módulo no puede ser utilizado como de generador. | |
Prefijo | |
Derechos requeridos | Ninguno |
¿Correo sólo? | Sí |
Ayuda generada | Actual |
There is a separate API for sending Thanks for comments on Flow boards. To call the API, use action=flowthank
.
Parámetros:
postid
- The UUID of the comment for which to send thanks (required)token
- Edit token. You can get one of these through prop=info. (required)
Ejemplo:
api.php?action=flowthank&postid=abc123&token=%2B\
Errores y avisos
Código | Información |
---|---|
invalidrecipient | No se encontró un destinatario válido No se pueden enviar agradecimientos a bots No puedes enviarte agradecimientos a ti mismo |
SQL Documentation
Understanding who thanked who from the logs requires some understanding of the columns.
Within the logging table, the log_title
represents the receiver, and the log_user_text
represents the sender.
The following SQL which finds all the thanks a receiver received within a time period illustrates this:
select log_timestamp as thank_timestamp,
replace(log_title, '_', ' ') as receiver,
log_user_text as sender
from logging_logindex
where log_title = :user_name
and log_action = 'thank'
and :start_date <= log_timestamp
and log_timestamp <= :end_date
Notice also that the logging table is not selected from directly, but on Wikimedia servers we take advantage of the logging_logindex
table.
In order to quickly search for all the thanks a user sent the logging_userindex
provides the correct index.
Véase también
- w:Wikipedia:Notifications/Thanks - Information about the usage of this extension on English Wikipedia
- Echo (Notifications)/Feature requirements#Thank_you_notification - Initial feature proposal (for the Echo extension)
- Extensión:WikiLove - Another extension for sending gratitude
- Extensión:Echo - Provides the notification system
Esta extensión está siendo usada en uno o más proyectos de Wikimedia. Esto significa probablemente que la extensión es estable y funciona lo suficientemente bien como para ser usada en sitios con gran cantidad de visitas. Puedes buscar el nombre de esta extensión en los archivos CommonSettings.php e InitialiseSettings.php de Wikimedia para ver dónde se instala. Encontrarás la lista completa de extensiones instaladas en un wiki en particular en la página Special:Version del wiki. |
Esta extensión está incluida en los siguientes anfitriones/granjas wiki y/o paquetes: No se trata de una lista oficial. Algunas granjas/hosts wiki y/o paquetes pueden tener disponible esta extensión aunque no estén listados aquí. Siempre compruébelo con su anfitrión o granja wiki para confirmarlo. |
- Extensions bundled with MediaWiki 1.40/es
- Stable extensions/es
- User interface extensions/es
- MIT licensed extensions/es
- Extensions in Wikimedia version control/es
- ApiMain::moduleManager extensions/es
- BeforeCreateEchoEvent extensions/es
- BeforePageDisplay extensions/es
- ChangesListInitRows extensions/es
- DiffTools extensions/es
- DifferenceEngineViewHeader extensions/es
- EchoGetBundleRules extensions/es
- GetAllBlockActions extensions/es
- GetLogTypesOnUser extensions/es
- HistoryTools extensions/es
- LocalUserCreated extensions/es
- LogEventsListLineEnding extensions/es
- PageHistoryBeforeList extensions/es
- PageHistoryPager::doBatchLookups extensions/es
- All extensions/es
- Extensions used on Wikimedia/es
- Extensions included in Canasta/es
- Extensions included in Fandom/es
- Extensions included in Miraheze/es
- Extensions included in MyWikis/es
- Extensions included in ProWiki/es
- Extensions included in ShoutWiki/es
- Extensions included in WikiForge/es