Differences between revisions 1 and 12 (spanning 11 versions)
Revision 1 as of 2007-03-02 01:32:05
Size: 985
Editor: BrendanCully
Comment: Add description of hgcia extension.
Revision 12 as of 2013-02-25 20:00:42
Size: 1237
Editor: EricHopper
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
'''This extension is distributed with Mercurial.'''
Line 3: Line 4:
'''This extension is not distributed with Mercurial.''' ''' /!\ This extension should be considered deprecated as the CIA service is dead and never coming back.'''
Line 7: Line 8:
Download site: [http://hg.kublai.com/mercurial/hgcia public development repository].
Line 10: Line 9:

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.
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.
Line 19: Line 16:
hgcia=/path/to/hgcia.py hgext.hgcia =
Line 26: Line 23:
# 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}
Line 33: Line 36:
changegroup.cia = python:hgcia.hook
#incoming.cia = python:hgcia.hook
changegroup.cia = python:hgext.hgcia.hook
#incoming.cia = python:hgext.hgcia.hook
Line 37: Line 40:
# If you want hyperlinks
baseurl = http://server/path/to/repo
# If you want hyperlinks (optional)
#baseurl = http://server/path/to/repo
Line 40: Line 43:
Line 42: Line 44:
CategoryExtension CategoryBundledExtension

HGCIA Extension

This extension is distributed with Mercurial.

/!\ This extension should be considered deprecated as the CIA service is dead and never coming back.

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)