Extension:HipchatNotifications/hi

This page is a translated version of the page Extension:HipchatNotifications and the translation is 5% complete.
मीडियाविकि एक्सटेंशन मैन्युअल
Hipchat Notifications
प्रकाशन की स्थिति: अनानुरक्षित
कार्यान्वयन सदस्य इंटरफ़ेस, चेतावनी
विवरण Sends notifications of actions in MediaWiki like adding, removing or deleting an article into HipChat channel
लेखक Aleksi Postari (kulttuuriवार्ता)
नवीनतम संस्करण 1.06 (2016-06-05)
MediaWiki 1.8+
PHP 5.2+
डेटाबेस बदलता है नहीं
लाइसेंस MIT लाइसेंस
डाउनलोड करें

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

The HipchatNotifications sends notifications of actions in MediaWiki like adding, removing or deleting an article into HipChat channel.

Installation

  • फ़ाइलों को डाउनलोड और अपने extensions/ फ़ोल्डर के HipchatNotifications नामक डिरेक्ट्री में डालें।
  • अपने 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";
    
  • Yes पूर्ण – अपने विकि पर Special:Version पर जाकर देखें कि एक्सटेंशन को सफलतापूर्वक स्थापित किया गया है कि नहीं।

Configuration parameters

Please read the project README file for more configuration options.