# HG changeset patch # User Benjamin Pollack # Date 1269463328 14400 # Node ID bdc3256a318eb2107fbbca466e8b391aea5c6149 # Parent 1e819576e9264bd749ed6cafcbbc52f51753f189 schemes: add Kiln On Demand to default schemes diff -r 1e819576e926 -r bdc3256a318e hgext/schemes.py --- 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):