-
Notifications
You must be signed in to change notification settings - Fork 20
/
wsgi.py
44 lines (35 loc) · 1.3 KB
/
wsgi.py
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
43
44
#!/usr/bin/env python
#-*- coding: utf-8 -*-
import os,time
import logging; logging.basicConfig(level=logging.INFO)
from framework import db
from framework.web import WSGIApplication,Jinja2TemplateEngine
from config import configs
from datetime import datetime
def datetime_filter(t):
delta = int(time.time() - t)
if delta < 60:
return u'1分钟前'
if delta < 3600:
return u'%s分钟前' % (delta // 60)
if delta < 86400:
return u'%s小时前' % (delta // 3600)
if delta < 604800:
return u'%s天前' % (delta // 86400)
dt = datetime.fromtimestamp(t)
return u'%s年%s月%s日' % (dt.year, dt.month, dt.day)
db.create_engine(**configs.db)
wsgi = WSGIApplication(os.path.dirname(os.path.abspath(__file__)))
template_engine = Jinja2TemplateEngine(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'templates'))
template_engine._env.globals['review'] = configs.review
template_engine.add_filter('datetime', datetime_filter)
wsgi.template_engine = template_engine
import urls
wsgi.add_interceptor(urls.user_interceptor)
wsgi.add_interceptor(urls.manage_interceptor)
wsgi.add_interceptor(urls.remember_last_page_interceptor)
wsgi.add_module(urls)
if __name__=='__main__':
wsgi.run(9000,host='0.0.0.0')
else:
application = wsgi.get_wsgi_application()