Differences between revisions 9 and 10
Revision 9 as of 2009-05-19 19:30:58
Size: 1126
Editor: localhost
Comment: converted to 1.6 markup
Revision 10 as of 2010-08-28 15:09:52
Size: 1131
Editor: abuehl
Comment:
Deletions are marked like this. Additions are marked like this.
Line 44: Line 44:
Line 46: Line 45:
CategoryExtension CategoryBundledExtension

HGCIA Extension

This extension is distributed with Mercurial.

Author: Brendan Cully

Overview

The hgcia extension can be used to send change notifications to the 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]
hgext.hgcia =

[cia]
# your registered CIA user name
user = foo
# the name of the project in CIA
project = foo
# the module or subproject (optional)
#module = foo
# Append a diffstat to the log message (optional)
#diffstat = False
# Use a custom template (optional)
#template = {url}/rev/{node|short}\n{desc}-- {diffstat}
# 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:hgext.hgcia.hook
#incoming.cia = python:hgext.hgcia.hook

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


CategoryBundledExtension

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