INN/app-template
forked from nprapps/app-template
Permalink
Jump to Line
Branch:
master
Switch branches/tags
app-template-url-for
endpoint-render-fix
event-analytics
gdocs-updates
init-chat
init-map
init-table
init-tumblr
master
Nothing to show
Nothing to show
app-template/app.py
Fetching contributors…
![]()
Cannot retrieve contributors at this time
| #!/usr/bin/env python | |
| """ | |
| Example application views. | |
| Note that `render_template` is wrapped with `make_response` in all application | |
| routes. While not necessary for most Flask apps, it is required in the | |
| App Template for static publishing. | |
| """ | |
| import app_config | |
| import json | |
| import oauth | |
| import static | |
| from flask import Flask, make_response, render_template | |
| from render_utils import make_context, smarty_filter, urlencode_filter | |
| from werkzeug.debug import DebuggedApplication | |
| app = Flask(__name__) | |
| app.debug = app_config.DEBUG | |
| app.add_template_filter(smarty_filter, name='smarty') | |
| app.add_template_filter(urlencode_filter, name='urlencode') | |
| @app.route('/') | |
| @oauth.oauth_required | |
| def index(): | |
| """ | |
| Example view demonstrating rendering a simple HTML page. | |
| """ | |
| context = make_context() | |
| with open('data/featured.json') as f: | |
| context['featured'] = json.load(f) | |
| return make_response(render_template('index.html', **context)) | |
| @app.route('/comments/') | |
| def comments(): | |
| """ | |
| Full-page comments view. | |
| """ | |
| return make_response(render_template('comments.html', **make_context())) | |
| @app.route('/widget.html') | |
| def widget(): | |
| """ | |
| Embeddable widget example page. | |
| """ | |
| return make_response(render_template('widget.html', **make_context())) | |
| @app.route('/test_widget.html') | |
| def test_widget(): | |
| """ | |
| Example page displaying widget at different embed sizes. | |
| """ | |
| return make_response(render_template('test_widget.html', **make_context())) | |
| app.register_blueprint(static.static) | |
| app.register_blueprint(oauth.oauth) | |
| # Enable Werkzeug debug pages | |
| if app_config.DEBUG: | |
| wsgi_app = DebuggedApplication(app, evalex=False) | |
| else: | |
| wsgi_app = app | |
| # Catch attempts to run the app directly | |
| if __name__ == '__main__': | |
| print 'This command has been removed! Please run "fab app" instead!' |