Daniel Thul
2faf245876
Fix typo.
9 years ago
David Lord
915d34444b
Merge pull request #1610 from lord63-forks/fix-typo
...
Fix typo in app_ctx_globals_class doc in app.py
9 years ago
lord63
1d49343bb1
Fix typo in app_ctx_globals_class doc in app.py
9 years ago
Armin Ronacher
8789c94d82
Merge pull request #1608 from Windfarer/patch-1
...
Fix a typo
9 years ago
Eric Yang
7f678aaf5a
Fix a typo
...
Maybe this is a typo?
9 years ago
Armin Ronacher
5c73a8b4ad
Merge pull request #1607 from wodim/patch-1
...
Fix typo in templating.rst
9 years ago
wodim
4a8f3eacbb
Fix typo in templating.rst
9 years ago
Abhijeet Kasurde
2fe8e81596
Merge branch 'i_1465' of https://github.com/Akasurde/flask into i_1465
9 years ago
Abhijeet Kasurde
b51e368cc7
Merge branch 'master' of https://github.com/mitsuhiko/flask
...
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
9 years ago
Abhijeet Kasurde
5420bce383
Merge branch 'master' of https://github.com/mitsuhiko/flask
9 years ago
David Lord
41622c8d68
Link article about deploying on Azure/IIS
9 years ago
David Lord
fa32222b09
Merge pull request #1592 from hidavy/patch-1
...
Update CHANGES
9 years ago
David Lord
233886dda2
Merge pull request #1565 from msiyaj/master
...
Missing apostophe.
9 years ago
David Lord
84a12afd4d
Merge pull request #1593 from timofurrer/master
...
support timedelta for SEND_FILE_MAX_AGE_DEFAULT config variable
9 years ago
Armin Ronacher
3f6e8c6ad5
Merge pull request #1594 from timofurrer/python3.5-support
...
travis: python 3.5 support
9 years ago
Michael Klich
99bc0dfd3b
Add info about working with VE and Python 3
...
Python 3 does not have execfile function.
9 years ago
Timo Furrer
b8dc6c12b7
add python 3.5 build to travis config
9 years ago
Timo Furrer
d526932a09
support timedelta for SEND_FILE_MAX_AGE_DEFAULT config variable
9 years ago
hidavy
6102d210a3
Update CHANGES
9 years ago
Abhijeet Kasurde
15f267e1ee
Updated documentation for Setuptools
...
Updated documentation by removing references of distribute and adding
references of setuptools.
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
9 years ago
Armin Ronacher
1ac4156016
Fixed some lint warnings
9 years ago
Armin Ronacher
6cd191db4f
Ignore build folder
9 years ago
Armin Ronacher
ee7f4b2bab
Added lineart logo
9 years ago
Jimmy McCarthy
a23ce46971
Update change log
9 years ago
Jimmy McCarthy
5505827a4b
provide_automatic_options as explicit arg
...
In add_url_rule, break provide_automatic_options out to an explicit kwarg, and
add notes to the docstring.
9 years ago
Jimmy McCarthy
04a3eeee3b
Merge branch 'master' of github.com:mitsuhiko/flask
9 years ago
msiyaj
808bf6d204
Missing apostophe.
9 years ago
Jonas Gröger
b644e2747f
Mention virtual environments in uwsgi/nginx deployment docs
10 years ago
Jonas Gröger
8b9cb6caa7
Update uwsgi/nginx deployment documentation
...
Instead of using the uwsgi_modifier1 30 directive, the uwsgi docs
recommend to use the mount / manage-script-name approch which mounts
a module + callable to a certain path. This way, SCRIPT_NAME and
PATH_INFO are correctly rewritten.
See http://uwsgi-docs.readthedocs.org/en/latest/Nginx.html#hosting-multiple-apps-in-the-same-process-aka-managing-script-name-and-path-info
Fixes #1464
10 years ago
Markus Unterwaditzer
7f38674915
Merge pull request #1539 from mjhennig/with_metaclass
...
Improve function with_metaclass()
10 years ago
Mathias J. Hennig
b3767ae59f
Addressing feedback from pull request
10 years ago
Mathias J. Hennig
c8f19f0afc
Reimplement function with_metaclass()
10 years ago
Markus Unterwaditzer
ac12e362c4
Merge pull request #1520 from zevav/patch-2
...
fixed some punctuation, fixed a few errors, in service of readability
10 years ago
Markus Unterwaditzer
b528b2ffe3
Merge pull request #1535 from lobeck/revert-1534-update_external_url_handler_example
...
Revert "make external_url_handler example py3 compliant"
10 years ago
lobeck
128bc76af0
Revert "make external_url_handler example py3 compliant"
10 years ago
Markus Unterwaditzer
81ae94a5fd
Merge branch '0.10-maintenance'
10 years ago
Markus Unterwaditzer
6a6a6d87c2
Merge branch 'lobeck-fix_unboundlocalerror_for_handle_build_error' into 0.10-maintenance
...
Fix #1533
10 years ago
Markus Unterwaditzer
765f851a7c
Changelog for #1533
10 years ago
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
10 years ago
Markus Unterwaditzer
97c0b26cc0
Merge pull request #1534 from lobeck/update_external_url_handler_example
...
make external_url_handler example py3 compliant
10 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
10 years ago
Markus Unterwaditzer
671c1ee002
Merge pull request #1532 from WayneYe/master
...
Fixed gevent introduction to use libev instead of libevent
10 years ago
Wayne Ye
05c2e7c276
Fixed gevent introduction to use libev instead of libevent
10 years ago
Markus Unterwaditzer
92a293046b
Merge pull request #1530 from Aayush-Kasurde/master
...
Added missing app.run line in jqueryexample.py
10 years ago
Aayush Kasurde
8ba986e45e
Added fix for issue 1529
...
Signed-off-by: Aayush Kasurde <aayush.kasurde@gmail.com>
10 years ago
Jimmy McCarthy
a136019644
Updated changelog
10 years ago
Jimmy McCarthy
011b129b6b
Add kwarg to disable auto OPTIONS on add_url_rule
...
Adds support for a kwarg `provide_automatic_options` on `add_url_rule`, which
lets you turn off the automatic OPTIONS response on a per-URL basis even if
your view functions are functions, not classes (so you can't provide attrs
on them).
10 years ago
Markus Unterwaditzer
db09c6798e
Merge branch 'alanhamlett-master'
...
Fix #1515
10 years ago
Alan Hamlett
99c99c4c16
Enable autoescape for `render_template_string`
10 years ago
Alan Hamlett
e4f635f8d7
remove whitespace at end of lines
10 years ago