Commit graph

1231 commits

Author SHA1 Message Date
David Lord
5ba1a9031f fix docs index sidebar 2018-04-26 15:15:05 -07:00
David Lord
86e246a23d fix docs logo 2018-04-26 14:07:19 -07:00
David Lord
1a459e949c Merge branch '0.12-maintenance' 2018-04-26 12:18:06 -07:00
David Lord
d86103c79d add donate link 2018-04-26 07:46:50 -07:00
David Lord
e02118dbc9 add donate link 2018-04-26 07:44:59 -07:00
David Lord
8ab7d3abc3 add donate link 2018-04-26 06:05:13 -07:00
David Lord
30f03a93d8 add donate link 2018-04-26 06:03:33 -07:00
Grey Li
da9e61f0b3 Fix typo in docs 2018-04-24 08:09:08 +08:00
David Lord
cbf2a4245c document cli option env vars
closes #2713
2018-04-20 13:25:04 -07:00
David Lord
d5108acf27 enable intersphinx 2018-04-18 13:10:56 -07:00
David Lord
db01b7350c use theme provided by pallets-sphinx-themes 2018-04-18 13:06:08 -07:00
David Lord
010156c80a use theme provided by pallets-sphinx-themes 2018-04-18 12:05:31 -07:00
David Lord
84e9ff3853 clean up js example 2018-04-12 12:17:14 -07:00
David Lord
a894586ba8 add javascript ajax example 2018-04-12 11:06:02 -07:00
David Lord
aaab1e46f2 add Response.max_cookie_size config 2018-04-10 11:17:18 -07:00
Grey Li
e581c44d1a Add tips for 413 connection reset issue 2018-04-09 01:30:15 -07:00
David Lord
69e63650cc Merge pull request #2686 from davidism/bp-static
document blueprint static folder without prefix
2018-04-09 01:27:25 -07:00
David Lord
ac961d39b7 document blueprint static folder without prefix 2018-04-09 01:11:46 -07:00
David Lord
e29bd92c52 rewrite tutorial docs and example 2018-04-09 00:53:25 -07:00
David Lord
119ebf959f rework context docs 2018-04-09 00:02:38 -07:00
David Lord
1679ddbf85 rewrite extension docs
remove old extension patterns
remove flask.ext from api docs
2018-02-28 07:52:03 -08:00
David Lord
7ccc8fb877 rewrite quickstart Unique URLs section 2018-02-24 08:03:30 -08:00
David Lord
4f8661e6e3 use subdomain arg in url_map.bind_to_environ
rename new subdomain test, parametrize
test allowing subdomains as well as ips
add subdomain_matching param to docs
add some references to docs
add version changed to create_url_adapter
2018-02-23 08:39:31 -08:00
David Lord
8d5c870199 add test_cli_runner for testing app.cli commands 2018-02-19 15:34:46 -08:00
David Lord
aa4db37a7f revert copyright year to project start
add copyright header to files
2018-02-08 12:43:30 -08:00
David Lord
ef3226e53b update project metadata
new readme
readme as setup.py long_description
links in changes
git in authors
add travis osx env
break out docs build in travis
remove python_requires for now
2018-02-08 12:43:22 -08:00
David Lord
b6dff4fabe document testing cli commands 2018-01-28 18:48:39 -08:00
David Lord
2f356bf6b2 add note about syntax errors in custom scripts
mention pycharm version support
2018-01-28 14:41:47 -08:00
David Lord
552b055ffd add rst extension for changelog
fix changelog version
2018-01-23 15:34:52 -08:00
David Lord
e431e8809d clean up samesite docs 2018-01-23 15:11:50 -08:00
Fadhel_Chaabane
c65bdc0c9f New Feature: Added Support for cookie's SameSite attribute. 2018-01-23 13:57:50 +00:00
Nickatak
049432869f Fix typo in example. 2018-01-14 16:02:43 -08:00
David Lord
b2de7b49a7 clean up FLASK_ENV docs [ci skip] 2018-01-10 15:46:11 -08:00
Armin Ronacher
a1afc8f1a7 Add Support for FLASK_ENV (#2570)
This introduces environments to Flask
2018-01-06 17:07:56 +01:00
Hsiaoming Yang
8cdcf398cf Remove python 2.6 and 3.3 everywhere. (#2583) 2018-01-06 10:49:50 +01:00
David Lord
4f89c6cd5c Merge pull request #2541 from nsiregar/#2535_update_pycharm_instruction
update pycharm instructions
2018-01-04 12:56:38 -08:00
David Lord
5a25d8d029 smaller, optimized image
reword / reformat the docs
fix tox build directory
2018-01-04 12:34:25 -08:00
Grey Li
abbff76e46 Docs: Update CLI for factory pattern 2017-12-20 20:50:45 +08:00
David Lord
c16fad1c39 Merge pull request #2536 from greyli/patch-4
Docs: update built-in server description
2017-12-16 07:08:31 -08:00
David Lord
5003fb2d18 Merge pull request #2555 from pallets/deprecate-26-33
remove tests and docs for python 2.6 and 3.3
2017-12-16 07:06:54 -08:00
David Lord
2c7a1ffa71 remove tests and docs for python 2.6 and 3.3 2017-12-16 07:00:00 -08:00
Andy Craze
8e37f3886d Fix sentry raven install docs
The documentation for installing Sentry's raven client was incorrect. It should state that the client must be installed with the extra flask dependencies as mentioned in getsentry/raven-python#1075
2017-12-14 19:45:09 -08:00
Grey Li
abecdec212 Docs: Add missing backslash 2017-12-14 14:38:37 +08:00
Grey Li
0011797bb1 Docs: Fixed typo 2017-12-14 11:08:33 +08:00
Harry Moreno
2e0a3f17a8 Fix docs, how to get db connection in pattern
The docs are inaccurately suggestion a db connection would be available at `g.db`, after calling `get_db()` a connection will be available at `g._database` but even then I think instructing the user to use `get_db()` is the best way forward.
2017-12-08 15:18:02 -05:00
Vladimir Kroz
2c94dd3a86 Fix code example for HTTP Methods
`return` is required to make 'http methods' example work
2017-12-05 17:59:04 +01:00
Ngalim Siregar
4065bd1e1f Update PyCharm image
add highlighted area to pycharm image
2017-12-03 17:05:20 +09:00
Ngalim Siregar
99aa1e1d71 update pycharm instructions 2017-12-03 16:37:52 +09:00
Grey Li
229d5ccacf Docs: update built-in server description 2017-12-01 16:03:52 +08:00
Per Mortensen
3be3608eca Update Twisted Web example 2017-11-22 22:40:23 +01:00