-
Notifications
You must be signed in to change notification settings - Fork 6
/
webapp.py
executable file
·90 lines (80 loc) · 2.99 KB
/
webapp.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/usr/bin/env python
# Encoding: utf-8
# -----------------------------------------------------------------------------
# Project : Resonate 2014
# -----------------------------------------------------------------------------
# Author : Edouard Richard <[email protected]>
# -----------------------------------------------------------------------------
# License : GNU General Public License
# -----------------------------------------------------------------------------
# Creation : 26-Mar-2014
# Last mod : 09-Apr-2014
# -----------------------------------------------------------------------------
# This file is part of Resonate2014.
#
# Resonate2014 is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Resonate2014 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Resonate2014. If not, see <http://www.gnu.org/licenses/>.
from flask import Flask, render_template, request, send_file, g, \
send_from_directory, Response, abort, session, redirect, url_for, make_response
from flask.ext.assets import Environment, YAMLLoader
from flask.ext.babel import Babel
# app
app = Flask(__name__)
app.config.from_pyfile("settings.cfg")
# i18n
babel = Babel(app)
# assets
assets = Environment(app)
bundles = YAMLLoader("assets.yaml").load_bundles()
assets.register(bundles)
# -----------------------------------------------------------------------------
#
# Site pages
#
# -----------------------------------------------------------------------------
@app.route('/')
def index():
g.language = "en"
response = make_response(render_template('home.html'))
return response
@app.route('/fr.html')
def page_fr():
g.language = "fr"
response = make_response(render_template('home.html'))
return response
@app.route('/de.html')
def page_de():
g.language = "de"
response = make_response(render_template('home.html'))
return response
# -----------------------------------------------------------------------------
#
# UTILS
#
# -----------------------------------------------------------------------------
@babel.localeselector
def get_locale():
# try to guess the language from the user accept
# header the browser transmits.
if not g.get("language"):
g.language = request.accept_languages.best_match(['en', 'fr', 'de'])
return g.get("language")
# -----------------------------------------------------------------------------
#
# Main
#
# -----------------------------------------------------------------------------
if __name__ == '__main__':
# run application
app.run(extra_files=("assets.yaml",), host="0.0.0.0")
# EOF