Mercurial > hg-stable
changeset 10777:bdc3256a318e stable
schemes: add Kiln On Demand to default schemes
author | Benjamin Pollack <benjamin@bitquabit.com> |
---|---|
date | Wed, 24 Mar 2010 16:42:08 -0400 |
parents | 1e819576e926 |
children | b9532264cb8b |
files | hgext/schemes.py |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/schemes.py Fri Mar 26 17:02:49 2010 +0100 +++ b/hgext/schemes.py Wed Mar 24 16:42:08 2010 -0400 @@ -34,6 +34,7 @@ bb = https://bitbucket.org/ bb+ssh = ssh://hg@bitbucket.org/ gcode = https://{1}.googlecode.com/hg/ + kiln = https://{1}.kilnhg.com/Repo/ You can override a predefined scheme by defining a new scheme with the same name. @@ -72,7 +73,8 @@ 'py': 'http://hg.python.org/', 'bb': 'https://bitbucket.org/', 'bb+ssh': 'ssh://hg@bitbucket.org/', - 'gcode': 'https://{1}.googlecode.com/hg/' + 'gcode': 'https://{1}.googlecode.com/hg/', + 'kiln': 'https://{1}.kilnhg.com/Repo/' } def extsetup(ui):