Differences between revisions 1 and 2
Revision 1 as of 2007-03-02 01:32:05
Size: 985
Editor: BrendanCully
Comment: Add description of hgcia extension.
Revision 2 as of 2007-03-02 04:28:07
Size: 1067
Editor: BrendanCully
Comment: document diffstat option
Deletions are marked like this. Additions are marked like this.
Line 26: Line 26:
# Append a diffstat to the log message (optional)
#diffstat = False
Line 37: Line 39:
# If you want hyperlinks
baseurl = http://server/path/to/repo
# If you want hyperlinks (optional)
#baseurl = http://server/path/to/repo

HGCIA Extension

This extension is not distributed with Mercurial.

Author: Brendan Cully

Download site: [http://hg.kublai.com/mercurial/hgcia public development repository].

Overview

The hgcia extension can be used to send change notifications to the [http://cia.navi.cx/ CIA service]. It can be used as either an incoming or a changegroup hook.

Configuration

Configure your .hgrc to enable the extension by adding following lines:

[extensions]
hgcia=/path/to/hgcia.py

[cia]
# your registered CIA user name
user = foo
# the name of the project in CIA
project = foo
# Append a diffstat to the log message (optional)
#diffstat = False
# The URL of the CIA notification service (optional)
#url = http://cia.navi.cx/
# print message instead of sending it (optional)
#test = False

[hooks]
# one of these:
changegroup.cia = python:hgcia.hook
#incoming.cia = python:hgcia.hook

[web]
# If you want hyperlinks (optional)
#baseurl = http://server/path/to/repo


CategoryExtension

HgciaExtension (last edited 2017-03-19 17:59:57 by JunWu)