Christian Becker
5da31f8af3
fix UnboundLocalError in handle_url_build_error
...
- caused by changes in the execution model of python 3 where the alias of an except clause is cleared on exit of the except
9 years ago
Markus Unterwaditzer
97c0b26cc0
Merge pull request #1534 from lobeck/update_external_url_handler_example
...
make external_url_handler example py3 compliant
9 years ago
Christian Becker
93fe1d54bd
make external_url_handler example py3 compliant
...
- a raises statement with multiple values is no longer allowed in python 3
9 years ago
Markus Unterwaditzer
671c1ee002
Merge pull request #1532 from WayneYe/master
...
Fixed gevent introduction to use libev instead of libevent
9 years ago
Wayne Ye
05c2e7c276
Fixed gevent introduction to use libev instead of libevent
9 years ago
Markus Unterwaditzer
92a293046b
Merge pull request #1530 from Aayush-Kasurde/master
...
Added missing app.run line in jqueryexample.py
9 years ago
Aayush Kasurde
8ba986e45e
Added fix for issue 1529
...
Signed-off-by: Aayush Kasurde <aayush.kasurde@gmail.com>
9 years ago
Markus Unterwaditzer
db09c6798e
Merge branch 'alanhamlett-master'
...
Fix #1515
9 years ago
Alan Hamlett
99c99c4c16
Enable autoescape for `render_template_string`
9 years ago
Alan Hamlett
e4f635f8d7
remove whitespace at end of lines
9 years ago
Markus Unterwaditzer
37474871dc
Merge pull request #1509 from ThiefMaster/appctxglobals-candy
...
Add pop and setdefault to AppCtxGlobals
10 years ago
Zev Averbach
5dfe918e4f
fixed some punctuation, fixed a few errors, in service of readability
10 years ago
Markus Unterwaditzer
595fb7e1fa
Merge pull request #1510 from ThiefMaster/remove-modules-property
...
Remove the deprecated Flask.modules property
10 years ago
ThiefMaster
6af9690ae9
Remove the deprecated Flask.modules property
10 years ago
ThiefMaster
bbaf20de7c
Add pop and setdefault to AppCtxGlobals
10 years ago
Markus Unterwaditzer
87222087b3
Merge branch 'alexpantyukhin-master'
...
Fix #1390
10 years ago
Alexander Pantyukhin
a9066a3756
Changes and docs are modified.
10 years ago
Alexander Pantyukhin
5e12748d0e
Ignore before_render_template return values
10 years ago
Alexander Pantyukhin
883f82f261
template overrides handling changed
10 years ago
Alexander Pantyukhin
eae37b575d
fix test_signals
10 years ago
Alexander Pantyukhin
e57199e0c4
fix test_signals
10 years ago
Alexander Pantyukhin
967907ee81
before_render_template signal can override render template.
10 years ago
Alexander Pantyukhin
1fbeb337c4
fix endline in the signal.py
10 years ago
Alexander Pantyukhin
d53d5c732b
before_render_template signal
10 years ago
Markus Unterwaditzer
cb9f645081
Merge pull request #1502 from untitaker/travis-simplify
...
Don't pass version to tox explicitly
10 years ago
Markus Unterwaditzer
284081c452
Don't pass version to tox explicitly
10 years ago
Markus Unterwaditzer
9ddd3e9084
Merge pull request #1499 from menghan/doc
...
Fix project name in CONTRIBUTING.rst
10 years ago
Menghan
30973310ec
Replace 'Werkzeug' to 'Flask'
10 years ago
Markus Unterwaditzer
554c5b965a
Fix #1477
10 years ago
Markus Unterwaditzer
cc6bf7c18a
Merge pull request #1496 from Hardtack/patch-1
...
Update title of docstring in flask.cli
10 years ago
GunWoo Choi
c65b32ba1d
Update title of docstring in flask.cli
10 years ago
Markus Unterwaditzer
bc4c1777e9
Document static_folder
10 years ago
Markus Unterwaditzer
beec47a7cc
Deduplicate signals docs
...
Triggered by #1390
10 years ago
Markus Unterwaditzer
3e07b9c287
Merge pull request #1491 from nvie/patch-1
...
Remove the word `trivially` here
10 years ago
Vincent Driessen
a4b335a64a
Remove the word `trivially` here
...
A lot of things are trivial, or debatably trivial, but this is not one of them :)
10 years ago
Markus Unterwaditzer
b471df6c88
Point to stable version of Celery
10 years ago
Keyan Pishdadian
805692108a
Update send_file() docs to clarify encoding requirement #1286
10 years ago
Markus Unterwaditzer
d13a1b363e
Rename jinja_env_class
...
Inspired by #1056
10 years ago
Markus Unterwaditzer
66b4ea91b4
Fix #1195
10 years ago
Markus Unterwaditzer
5c68b24f64
Merge pull request #1483 from untitaker/improve-autodoc
...
Show original autodoc signatures
10 years ago
Markus Unterwaditzer
d40288496c
Show original autodoc signatures
...
Alternative to #1403
10 years ago
Markus Unterwaditzer
7a999cd4b8
Merge branch 'AndrewBMartin-patch-1'
10 years ago
Andrew
337a9d6172
Include backend argument when instantiating Celery
...
Not including the backend argument can lead to AttributeError:
DisabledBackend object has no attribute for '_get_task_meta_for'.
See e.g.
http://stackoverflow.com/questions/23215311/celery-with-rabbitmq-attributeerror-disabledbackend-object-has-no-attribute .
At the same time, including the backend argument doesn't seem to harm anything else.
10 years ago
Markus Unterwaditzer
1e857bfa71
Changelog for #1422
10 years ago
Markus Unterwaditzer
d00f5cc9fe
Merge branch 'ThiefMaster-override-jinja-env'
10 years ago
Markus Unterwaditzer
2446ca63a8
0.11 => 1.0
10 years ago
Markus Unterwaditzer
5ebf1e824d
Merge pull request #1480 from jmcarp/handle-empty-deque
...
Handle empty deque on errorhandler lookup.
10 years ago
Joshua Carp
348bf52188
Handle empty deque on errorhandler lookup.
...
After registering a custom errorhandler by exception class, raising any
unhandled exception in a view function swallows the error and instead
throws an `IndexError` on trying to look up the appropriate handler.
This patch avoids the uninformative `IndexError` and preserves the
original exception by looping until the deque of classes is empty, not
forever.
10 years ago
Markus Unterwaditzer
0d19fa0a06
Clarify some docs
...
Fix #1476
10 years ago
Markus Unterwaditzer
6e77cd709e
Merge pull request #1463 from moonshadow/fix_docstring
...
fix docstring for _find_errorhandler
10 years ago