aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcfbe.py23
-rw-r--r--templates/base.html3
2 files changed, 26 insertions, 0 deletions
diff --git a/cfbe.py b/cfbe.py
new file mode 100755
index 0000000..25a549d
--- /dev/null
+++ b/cfbe.py
@@ -0,0 +1,23 @@
+#!/usr/bin/env python
+
+import cherrypy
+from libbe import bugdir
+from jinja2 import Environment, FileSystemLoader
+
+template_root = '/Users/sjl/Documents/cherryflavoredbugseverywhere/templates'
+bug_root = '/Users/sjl/Documents/stevelosh/.be'
+bd = bugdir.BugDir(root=bug_root)
+bd.load_all_bugs()
+
+env = Environment(loader=FileSystemLoader(template_root))
+
+class WebInterface:
+ """The web interface to CFBE."""
+
+ @cherrypy.expose
+ def index(self):
+ template = env.get_template('base.html')
+ return template.render(bugs=bd)
+
+
+cherrypy.quickstart(WebInterface())
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..8d873f9
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,3 @@
+{% for bug in bugs %}
+ <p>{{ bug.summary }}</p>
+{% endfor %} \ No newline at end of file