blob: 1628fa6604b4376388b7c88f34ca6060825fbd9b (
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
|
#!/usr/bin/env python
import cherrypy
from libbe import bugdir
from jinja2 import Environment, FileSystemLoader
bug_root = '/Users/sjl/Documents/cherryflavoredbugseverywhere/.be'
bd = bugdir.BugDir(root=bug_root)
bd.load_all_bugs()
template_root = '/Users/sjl/Documents/cherryflavoredbugseverywhere/templates'
env = Environment(loader=FileSystemLoader(template_root))
class WebInterface:
"""The web interface to CFBE."""
@cherrypy.expose
def index(self, status='open'):
bd.load_all_bugs()
if status == 'open':
status = ['open', 'assigned', 'test', 'unconfirmed', 'wishlist']
label = 'Open'
elif status == 'closed':
status = ['closed', 'disabled', 'fixed', 'wontfix']
label = 'Closed'
template = env.get_template('list.html')
bugs = [bug for bug in bd if bug.status in status]
return template.render(bugs=bugs, bd=bd, label=label)
config = '/Users/sjl/Documents/cherryflavoredbugseverywhere/cfbe.config'
cherrypy.quickstart(WebInterface(), '/', config)
|