Size: 1298
Comment: fix grammar and style consistency
|
← Revision 3 as of 2012-12-17 01:40:58 ⇥
Size: 1294
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 14: | Line 14: |
''Repository'': https://bitbucket.org/kamyar1979/hgxmpp | Project home: https://bitbucket.org/kamyar1979/hgxmpp |
Line 16: | Line 16: |
''Web page'': https://bitbucket.org/kamyar1979/hgxmpp | Repository: https://bitbucket.org/kamyar1979/hgxmpp |
Mercurial Jabber notification extension
This is in fact an in-process hook for notifying developers of the project about server activity by using the Jabber (XMPP) messaging protocol.
Contents
1. Status
This extension is not distributed with Mercurial.
Author: Kamyar Inanloo
Project home: https://bitbucket.org/kamyar1979/hgxmpp
Repository: https://bitbucket.org/kamyar1979/hgxmpp
2. Overview
This is a tiny Python package working as a Mercurial in-process hook. It works using xmpppy package for sending messages to developers (Jabber users) when one pushes/commits/... the project. You must install xmpppy as a requirement:
pip install xmpppy
or
easy_install xmpppy
Then extract the extension to Python package folder (e.g. site-packages)
3. Configuration
Configure your .hgrc to enable the extension by adding following lines:
[hooks] changegroup = python:hgxmpp.hook [jabber] userid = mercurial@mydomain.com password = mercurialpassword MyProject = user1@mydomain.com, user2@mydomian.com
The last line tells the extension to send notification to user1 and user2 when the repository MyProject changes.