Extension:HipchatNotifications

This page is a translated version of the page Extension:HipchatNotifications and the translation is 57% complete.
Outdated translations are marked like this.
Manual de extensiones de MediaWiki
Hipchat Notifications
Estado de lanzamiento: sin mantenimiento
Implementación Interfaz de usuario, Anuncio
Descripción Sends notifications of actions in MediaWiki like adding, removing or deleting an article into HipChat channel
Autor(es) Aleksi Postari (kulttuuridiscusión)
Última versión 1.06 (2016-06-05)
MediaWiki 1.8+
PHP 5.2+
Cambios de la base de datos No
Licencia MIT Licencia
Descarga

  • $wgHipchatToken
  • $wgHipchatRoomID
  • $wgHipchatFromName
  • $wgWikiUrl
  • $wgWikiUrlEnding

El HipchatNotifications envía notificaciones al canal HipChat.

Instalación

  • Descarga y extrae los archivos en el directorio «HipchatNotifications» dentro del directorio extensions/ existente.
  • Añade el siguiente código en la parte final de tu LocalSettings.php :
    require_once "$IP/extensions/HipchatNotifications/HipchatNotifications.php";
    // HipChat API token. Manage API keys for Hipchat API v2 here: https://hipchat.com/account/api
    $wgHipchatToken = "";
    // HipChat room ID or name where you want all the notifications to go into.
    // You can directly use your room name or if that does not work, you can find your room ID from here: https://api.hipchat.com/v2/room?auth_token=YOUR_AUTH_TOKEN
    $wgHipchatRoomID = ;
    // Required. Name the message will appear be sent from.
    // Must be less than 15 characters long. May contain letters, numbers, -, _, and spaces.
    $wgHipchatFromName = "Wiki";
    // URL into your MediaWiki installation with the trailing /.
    $wgWikiUrl = "http://your_wiki_url/";
    // Wiki script name. Leave this to default one if you do not have URL rewriting enabled.
    $wgWikiUrlEnding = "index.php?title=";
    // What method will be used to send the data to HipChat server. This setting only works with Hipchat API v1, in V2 we always use curl.
    // By default this is "curl" which only works if you have the curl extension enabled. This can be: "curl" or "file_get_contents". Default: "curl".
    $wgHipchatSendMethod = "curl";
    
  •   Hecho – Navega a Special:Version en el wiki para verificar que la extensión se haya instalado correctamente.

Parámetros de configuración

Por favor, lee el archivo README del proyecto para más opciones de configuración.