Abhijeet Kasurde
730fcc6cb4
Updated documentation for Setuptools
...
Updated documentation by removing references of distribute and adding
references of setuptools.
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
2015-10-20 14:40:55 +05:30
Nadav Geva
51c35295af
Fix name mismatch in apierrors page
2015-10-15 00:02:46 +03:00
Armin Ronacher
da2634af9e
Fixed some lint warnings
2015-10-02 23:19:54 +02:00
Armin Ronacher
c9ec516a31
Ignore build folder
2015-10-01 13:59:05 +02:00
Armin Ronacher
35e384dcac
Added lineart logo
2015-10-01 13:58:48 +02:00
Jimmy McCarthy
ca30de73a3
Update change log
2015-09-14 13:29:16 -05:00
Jimmy McCarthy
588d351945
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.
2015-09-14 13:26:10 -05:00
Jimmy McCarthy
9ccdd2f796
Merge branch 'master' of github.com:mitsuhiko/flask
2015-09-14 13:06:54 -05:00
msiyaj
bd44c8413f
Missing apostophe.
2015-08-27 00:27:44 -04:00
Jonas Gröger
88683f0447
Mention virtual environments in uwsgi/nginx deployment docs
2015-08-22 01:05:45 +02:00
Jonas Gröger
ad3232eefc
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
2015-08-22 00:56:54 +02:00
Markus Unterwaditzer
f20727cd70
Merge pull request #1539 from mjhennig/with_metaclass
...
Improve function with_metaclass()
2015-07-27 19:25:27 +02:00
Mathias J. Hennig
5aa9889cf4
Addressing feedback from pull request
2015-07-27 15:32:23 +02:00
Mathias J. Hennig
97d3856a9f
Reimplement function with_metaclass()
2015-07-22 23:35:13 +02:00
Markus Unterwaditzer
84cce759c1
Merge pull request #1520 from zevav/patch-2
...
fixed some punctuation, fixed a few errors, in service of readability
2015-07-21 13:41:44 +02:00
Markus Unterwaditzer
c04c3a1393
Merge pull request #1535 from lobeck/revert-1534-update_external_url_handler_example
...
Revert "make external_url_handler example py3 compliant"
2015-07-16 12:20:33 +02:00
lobeck
9d01d60dea
Revert "make external_url_handler example py3 compliant"
2015-07-16 13:53:59 +02:00
Markus Unterwaditzer
976db05a5b
Merge branch '0.10-maintenance'
2015-07-16 12:05:07 +02:00
Markus Unterwaditzer
6a6a6d87c2
Merge branch 'lobeck-fix_unboundlocalerror_for_handle_build_error' into 0.10-maintenance
...
Fix #1533
2015-07-16 12:02:12 +02:00
Markus Unterwaditzer
765f851a7c
Changelog for #1533
2015-07-16 12:01:25 +02:00
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
2015-07-16 12:00:16 +02:00
Markus Unterwaditzer
6e63bde98c
Merge pull request #1534 from lobeck/update_external_url_handler_example
...
make external_url_handler example py3 compliant
2015-07-16 11:49:09 +02:00
Christian Becker
29a3533a01
make external_url_handler example py3 compliant
...
- a raises statement with multiple values is no longer allowed in python 3
2015-07-16 02:45:56 +02:00
Markus Unterwaditzer
9d87f63d00
Merge pull request #1532 from WayneYe/master
...
Fixed gevent introduction to use libev instead of libevent
2015-07-14 22:44:51 +02:00
Wayne Ye
e291dc41b4
Fixed gevent introduction to use libev instead of libevent
2015-07-14 12:36:01 -07:00
Markus Unterwaditzer
ad18cfc72a
Merge pull request #1530 from Aayush-Kasurde/master
...
Added missing app.run line in jqueryexample.py
2015-07-12 18:49:55 +02:00
Aayush Kasurde
c6ead5942e
Added fix for issue 1529
...
Signed-off-by: Aayush Kasurde <aayush.kasurde@gmail.com>
2015-07-12 21:08:16 +05:30
Jimmy McCarthy
82d3ce1a18
Updated changelog
2015-07-07 13:21:51 -05:00
Jimmy McCarthy
a3bbd155a3
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).
2015-07-07 13:20:53 -05:00
Markus Unterwaditzer
0ba63a6707
Merge branch 'alanhamlett-master'
...
Fix #1515
2015-07-04 23:42:12 +02:00
Alan Hamlett
a6f9582497
Enable autoescape for render_template_string
2015-07-04 23:41:43 +02:00
Alan Hamlett
01aebb311d
remove whitespace at end of lines
2015-07-04 23:41:31 +02:00
Markus Unterwaditzer
f6d2e02ed7
Merge pull request #1509 from ThiefMaster/appctxglobals-candy
...
Add pop and setdefault to AppCtxGlobals
2015-06-30 21:33:04 +02:00
Zev Averbach
8775edc88f
fixed some punctuation, fixed a few errors, in service of readability
2015-06-26 08:41:56 -04:00
Markus Unterwaditzer
e4875b1301
Merge pull request #1510 from ThiefMaster/remove-modules-property
...
Remove the deprecated Flask.modules property
2015-06-21 19:37:34 +02:00
ThiefMaster
c60eabe688
Remove the deprecated Flask.modules property
2015-06-20 18:09:27 +02:00
ThiefMaster
394acf2112
Add pop and setdefault to AppCtxGlobals
2015-06-20 18:04:58 +02:00
Markus Unterwaditzer
e37e159eca
Merge branch 'alexpantyukhin-master'
...
Fix #1390
2015-06-17 15:45:57 +02:00
Alexander Pantyukhin
069f134d7e
Changes and docs are modified.
2015-06-17 15:45:37 +02:00
Alexander Pantyukhin
a2c426a6cf
Ignore before_render_template return values
2015-06-17 15:42:39 +02:00
Alexander Pantyukhin
0a474db0d1
template overrides handling changed
2015-06-17 15:42:39 +02:00
Alexander Pantyukhin
e22a104c56
fix test_signals
2015-06-17 15:42:39 +02:00
Alexander Pantyukhin
cf5e02818e
fix test_signals
2015-06-17 15:42:39 +02:00
Alexander Pantyukhin
d1c1fa9ce3
before_render_template signal can override render template.
2015-06-17 15:42:39 +02:00
Alexander Pantyukhin
61775bf76b
fix endline in the signal.py
2015-06-17 15:42:39 +02:00
Alexander Pantyukhin
cb8edfa806
before_render_template signal
2015-06-17 15:42:39 +02:00
Markus Unterwaditzer
792abbe887
Merge pull request #1502 from untitaker/travis-simplify
...
Don't pass version to tox explicitly
2015-06-17 13:17:12 +02:00
Markus Unterwaditzer
b506fbae65
Don't pass version to tox explicitly
2015-06-17 13:03:59 +02:00
Markus Unterwaditzer
8593308778
Merge pull request #1499 from menghan/doc
...
Fix project name in CONTRIBUTING.rst
2015-06-13 17:55:12 +02:00
Menghan
505d7db0ff
Replace 'Werkzeug' to 'Flask'
2015-06-13 23:16:14 +08:00