Skip to content

Instantly share code, notes, and snippets.

@mnordhoff
Created September 10, 2012 15:55
Show Gist options
  • Save mnordhoff/3691700 to your computer and use it in GitHub Desktop.
Save mnordhoff/3691700 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test</title>
</head>
<body>
<p>{{ '1'|test.foo() }}</p>
<p>{{ foo }}</p>
</body>
</html>
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# Copyright (c) 2009, 2010, 2011, 2012 Matt Nordhoff <[email protected]>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import random
import flask
from werkzeug.contrib import fixers
application = flask.Flask('test')
#application.debug = True
application.wsgi_app = fixers.LighttpdCGIRootFix(application.wsgi_app)
def foo(bar):
return "%s %s" % (bar, random.random())
@application.route('/')
def index():
return flask.render_template('test.html', foo=foo('2'))
@application.template_filter('test.foo')
def jinja_foo(bar):
return foo(bar)
if __name__ == '__main__':
application.run('::')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment