Tagged Questions

4
votes
2answers
227 views

How do I use url_for if my method has multiple route annotations?

So I have a method that is accessible by multiple routes: @app.route("/canonical/path/") @app.route("/alternate/path/") def foo(): return "hi!" Now, how can I call url_for("foo") and know that ...
3
votes
2answers
2k views

Context processor using Werkzeug and Jinja2

My application is running on App Engine and is implemented using Werkzeug and Jinja2. I'd like to have something functionally equivalent of Django's own context processor: a callable that takes a ...
2
votes
2answers
411 views

Catch-all routing using Tipfy

Using tipfy, how does one express a catch-all route in urls.py if more specific routes do not match? Tipfy uses Werkzeug-like routing, so there's this (in urls.py): def get_rules(app): rules = [ ...
2
votes
3answers
818 views

Getting HTTP GET variables using Tipfy

I'm currently playing around with tipfy on Google's Appengine and just recently ran into a problem: I can't for the life of me find any documentation on how to use GET variables in my application, ...
1
vote
0answers
48 views

unittest with @login_required decorator

I use tipfy & gae for my project. I write unittests, and I to be confronted with a question: How I can test the handler which has @login_required decorator? class ...