fuel-main/nailgun/webui/handlers.py
2012-09-10 10:13:21 +00:00

27 lines
591 B
Python

# -*- coding: utf-8 -*-
import web
import mimetypes
import posixpath
from settings import settings
render = web.template.render(settings.TEMPLATE_DIR)
class IndexHandler(object):
def GET(self):
return render.index()
class StaticHandler(object):
def GET(self, fl):
fl_path = posixpath.join(settings.STATIC_DIR, fl)
mimetype = mimetypes.guess_type(fl_path)[0]
if mimetype:
web.header("Content-Type", mimetype)
try:
f = open(fl_path, 'r')
return f.read()
except:
raise web.notfound()