forked from anru/rsted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.py
executable file
·74 lines (56 loc) · 1.86 KB
/
application.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python
# all the imports
import os, sys
reload(sys)
sys.setdefaultencoding('utf-8')
from flask import Flask, request, render_template, make_response, url_for
from rsted.html import rst2html as _rst2html
from rsted.pdf import rst2pdf as _rst2pdf
from flaskext.helpers import render_html
# handle relative path references by changing to project directory
run_from = os.path.dirname(os.path.abspath(sys.argv[0]))
if run_from != os.path.curdir:
os.chdir(run_from)
# create our little application :)
app = Flask(__name__)
app.config.from_pyfile(os.environ.get('RSTED_CONF', 'settings.py'))
def view_is_active(view_name):
if request.path == url_for(view_name):
return 'active'
return ''
@app.context_processor
def ctx_pro():
return {
'MEDIA_URL': '/static/',
'is_active': view_is_active
}
@app.route("/")
@render_html('index.html')
def index():
yield 'js_params', {'theme': request.args.get('theme', '')}
@app.route('/about/')
def about():
return render_template('about.html')
@app.route('/srv/rst2html/', methods=['POST', 'GET'])
def rst2html():
rst = request.form.get('rst', '')
theme = request.form.get('theme')
if theme == 'basic':
theme = None
html = _rst2html(rst, theme=theme)
return html
@app.route('/srv/rst2pdf/', methods=['POST'])
def rst2pdf():
rst = request.form.get('rst', '')
theme = request.form.get('theme')
if theme == 'basic':
theme = None
pdf = _rst2pdf(rst, theme=theme)
responce = make_response(pdf)
responce.headers['Content-Type'] = 'application/pdf'
responce.headers['Content-Disposition'] = 'attachment; filename="rst.pdf"'
responce.headers['Content-Transfer-Encoding'] = 'binary'
return responce
if __name__ == '__main__':
app.run(host=app.config.get('HOST', '0.0.0.0'),
port=app.config.get('PORT', 5000))