Mercurial > treepkg
view starttreepkgweb.py @ 60:ee32f709a374
add Z suffix to all times in status reports
author | Bernhard Herzog <bh@intevation.de> |
---|---|
date | Tue, 10 Apr 2007 20:14:01 +0200 |
parents | 467013d9d627 |
children |
line wrap: on
line source
#! /usr/bin/python2.4 # Copyright (C) 2007 by Intevation GmbH # Authors: # Bernhard Herzog <bh@intevation.de> # # This program is free software under the GPL (>=v2) # Read the file COPYING coming with the software for details. """Starts the tree packager webinterface""" import os from optparse import OptionParser from treepkg.web import runserver def parse_commandline(): parser = OptionParser() dirname = os.path.dirname(__file__) parser.set_defaults(config_file=os.path.join(dirname, "treepkg.cfg"), cherrypy_config=os.path.join(dirname, "cherrypy.cfg")) parser.add_option("--config-file", help=("The tree packager config file." " Default treepkg.cfg")) parser.add_option("--cherrypy-config", help=("The cherrypy config file for the web interface." " Default cherrypy.cfg")) return parser.parse_args() def main(): options, args = parse_commandline() runserver(options.config_file, options.cherrypy_config) main()