Extension:SlackNotifications/ja

From Linux Web Expert

Revision as of 22:54, 21 September 2023 by imported>FuzzyBot (Updating to match new version of source page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

MediaWiki 拡張機能マニュアル
Slack Notifications
リリースの状態: 保守されていない
File:Slack mediawiki.jpg
実装 ユーザー インターフェイス, 通知
説明 Sends notifications of actions in MediaWiki like adding, removing or deleting an article into Slack channel
作者 Aleksi Postari (kulttuuritalk)
最新バージョン 1.15 (2020-05-14)
MediaWiki 1.25+
PHP 5.2+
データベースの変更 いいえ
ライセンス MIT ライセンス
ダウンロード

  • $wgSlackIncomingWebhookUrl
  • $wgSlackFromName
  • $wgSlackSendMethod
  • $wgSlackNotificationWikiUrl
  • $wgSlackNotificationWikiUrlEnding
Quarterly downloads Lua error in Module:Extension at line 172: bad argument #1 to 'inNamespace' (unrecognized namespace name 'skin').
Public wikis using Lua error in Module:Extension at line 172: bad argument #1 to 'inNamespace' (unrecognized namespace name 'skin').

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

インストール

  • <translate> <tvar name=1>ダウンロード</tvar> and place the file(s) in a directory called <tvar name=name>SlackNotifications/ja</tvar> in your <tvar name=ext>extensions/</tvar> folder.</translate>
  • <translate> Add the following code at the bottom of your <tvar name=1>LocalSettings.php </tvar> file:</translate>
    wfLoadExtension( 'SlackNotifications/ja' );
    // 必須。 あなたのSlack着信用WebhookのURLです。 Read more from here: https://api.slack.com/incoming-webhooks
    $wgSlackIncomingWebhookUrl = "";
    // 必須。 メッセージの送信元として表示される名前です。
    $wgSlackFromName = "Wiki";
    // 末尾に/を付けてMediaWikiインストールへのURL。
    $wgSlackNotificationWikiUrl		= "http://your_wiki_url/";
    // ウィキのスクリプト名。 URL の書き換えを有効にしていない場合は、既定値のままにしてください。
    $wgSlackNotificationWikiUrlEnding = "index.php?title=";
    // どのような方法でDiscordサーバーにデータを送信するのか。 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".
    $wgSlackSendMethod = "curl";
    
  • File:OOjs UI icon check-constructive.svg <translate> Done</translate> – <translate> Navigate to <tvar name=special>Special:Version</tvar> on your wiki to verify that the extension is successfully installed.</translate>

設定のパラメーター

その他の設定オプションについては、プロジェクトのREADMEファイルをお読みください。