Mercurial > treepkg
view starttreepkgweb.py @ 28:f7f89548a2a6
kdei18n: put the scripts subdirectory into the .orig.tar.gz
author | Bernhard Herzog <bh@intevation.de> |
---|---|
date | Wed, 14 Mar 2007 18:39:44 +0100 |
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()