blob: 68c484d86293e6013ee6907d3fc4c17d23313bb3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!/usr/bin/env python
import cherrypy
import web
from optparse import OptionParser
from os import path
module_dir = path.dirname(path.abspath(web.__file__))
template_dir = path.join(module_dir, 'templates')
def build_parser():
"""Builds and returns the command line option parser."""
usage = 'usage: %prog bug_directory'
parser = OptionParser(usage)
return parser
def parse_arguments():
"""Parse the command line arguments."""
parser = build_parser()
(options, args) = parser.parse_args()
if len(args) != 1:
parser.error('You need to specify a bug directory.')
return { 'bug_root': args[0], }
config = path.join(module_dir, 'cfbe.config')
options = parse_arguments()
WebInterface = web.WebInterface(path.abspath(options['bug_root']), template_dir)
cherrypy.config.update({
'tools.encode.on': True,
'tools.encode.encoding': 'utf8',
'tools.staticdir.root': path.join(module_dir, 'static'),
})
app_config = { '/static': { 'tools.staticdir.on': True,
'tools.staticdir.dir': '', } }
cherrypy.quickstart(WebInterface, '/', app_config)
|