# HG changeset patch # User Jeff Hammel # Date 1325134825 28800 # Node ID 5cd95c967f7043c4756f0d2508ad91b24000281f # Parent 0927a07dfab3139e682b3ac76236d185f4d09299 add publichtmlport to autobot project diff -r 0927a07dfab3 -r 5cd95c967f70 autobot/projects/autobot/__init__.py --- a/autobot/projects/autobot/__init__.py Wed Dec 28 20:43:53 2011 -0800 +++ b/autobot/projects/autobot/__init__.py Wed Dec 28 21:00:25 2011 -0800 @@ -9,7 +9,7 @@ sources = {'hg': ['http://k0s.org/mozilla/hg/autobot']} - def __init__(self, platform=None, slaveport=7357, htmlport=7358, hg=None): + def __init__(self, platform=None, slaveport=7357, htmlport=7358, publichtmlport=7359, hg=None): # setup the environment PythonSourceFactory.__init__(self, platform=platform, name='autobot', hg=hg) @@ -30,6 +30,7 @@ '--ircChannels', '', # no channels '--slaveport', str(slaveport), '--htmlport', str(htmlport), + '--publichtmlport', str(publichtmlport), 'bot'], description="make an autobot", workdir=WithProperties('%(virtualenv)s'),