Commit Graph

84 Commits

Author SHA1 Message Date
Ben Darnell 29f98d0768 Remove python 3 colored logging fix from next release notes since it
went out in 2.2.1.
2012-04-23 22:41:11 -07:00
Ben Darnell 3df46ee312 Merge branch 'branch2.2'
Conflicts:
	setup.py
	tornado/__init__.py
	tornado/test/web_test.py
	tox.ini
	website/sphinx/releases.rst
2012-04-23 22:34:42 -07:00
Ben Darnell c135c368de Release notes for 2.2.1 2012-04-23 22:03:17 -07:00
Ben Darnell 2ff579a65c Release note updates 2012-03-25 17:22:33 -07:00
Ben Darnell b41734bcb8 Rename example in docs for clarity 2012-03-24 14:53:06 -07:00
Ben Darnell 3b181f545a Revert "Remove optional setuptools import."
This reverts commit 50b28c5d7a.

Turns out we do need setuptools in at least one situation:
distutils chokes if there are broken symlinks anywhere in the source
tree, but in testing with a VM there may be "broken" symlinks that point
outside the directory shared with the VM.
2012-02-20 00:42:21 -08:00
Ben Darnell 530731cc8d Fix the Host header when using basic auth credentials in the URL. 2012-02-19 22:17:45 -08:00
Ben Darnell 0f30e15036 Release note updates for the last wave of merges 2012-02-19 21:57:52 -08:00
Ben Darnell ceabffe26c Test for https://github.com/facebook/tornado/pull/454 2012-02-19 20:08:26 -08:00
Ben Darnell 56ec1ee597 Pass parsed hostname around explictly instead of storing it on the urlsplit result.
In some versions of python (including 2.5 and 3.2 but not 2.6 or 2.7),
urlsplit results use __slots__ and therefore don't allow artibrary attributes
to be set.

Also move the storing of the parsed hostname above hostname_mapping,
since the cert should be checked against the requested url, not the remapped
one.

Closes #448.
2012-02-19 19:33:08 -08:00
Ben Darnell 70ea7a5a6c Use a single Cookie.SimpleCookie for outgoing cookies instead of a list.
The main reason for this change is to repeated calls to set_cookie
overwrite rather than append.

Closes #445.
2012-02-19 18:47:46 -08:00
Ben Darnell 2539f8376c Start a new release-notes file 2012-02-19 18:25:24 -08:00
Ben Darnell 61ba1fb648 Final release notes for 2.2 2012-01-30 11:01:35 -08:00
Ben Darnell 1910ea1530 Add a highlights section to the release notes. 2012-01-29 21:53:45 -08:00
Ben Darnell 067e465b92 Document curl_httpclient empty password fix.
Accept None as auth_password in simple_httpclient for consistency with
curl_httpclient.
2012-01-23 10:20:35 -08:00
Ben Darnell e04957d535 Doc updates 2012-01-22 17:52:43 -08:00
Ben Darnell 9c3afde89e Release note updates 2012-01-22 17:04:51 -08:00
Ben Darnell 8b668633ad Add 307 too and update release notes. 2012-01-18 01:17:30 -08:00
Ben Darnell 97b4b15cda Release note updates for twitter client changes 2012-01-18 01:00:06 -08:00
Ben Darnell 6dfc1b75d2 Add RequestHandler.on_finish method.
Closes #367.
2012-01-18 00:43:38 -08:00
Ben Darnell af940f4e0b Major update to tornado.platform.twisted.
Significantly improved compatibility (most important changes are in
TornadoReactor._invoke_callback) and expanded test coverage.
2012-01-16 23:30:41 -08:00
Ben Darnell 36226505ba Support non-integer timeouts for curl_httpclient.
Closes #399.
2012-01-13 23:12:39 -08:00
Ben Darnell 4457f2b9f8 Add a fourth release status field to tornado.version_info.
Closes #432.
2012-01-13 23:07:37 -08:00
Ben Darnell fea44c7b4e Release note update 2012-01-13 23:06:49 -08:00
Ben Darnell e552346a49 The Connection request header should be case-insensitive. 2012-01-13 22:46:08 -08:00
Ben Darnell f62e915404 Release notes for the last two ssl changes 2012-01-09 23:50:43 -08:00
Ben Darnell 0a949c07be Update docs for recent websocket changes 2012-01-08 00:01:18 -08:00
Ben Darnell 4c23ba7e78 Make fork_processes raise SystemExit instead of returning None when
all child processes exit cleanly.
2012-01-03 21:19:51 -08:00
Ben Darnell 468754e31f Release note updates 2012-01-01 23:19:48 -08:00
Ben Darnell f27b49a743 Misc doc updates. 2011-12-29 23:09:18 -08:00
Ben Darnell 44a97bdb79 Start accumulating release notes 2011-12-15 23:59:42 -08:00
Ben Darnell b4e73a7353 Local copy of sphix coverage plugin is no longer needed in version 1.1 2011-11-11 20:35:26 -08:00
Ben Darnell ea25c04a9c Add release notes for 2.1.1 2011-10-04 09:50:47 -07:00
Ben Darnell a9980ac1d2 Move next.rst to v2.1.0.rst 2011-09-20 21:21:07 -07:00
Ben Darnell 7dba811d9e More release note updates 2011-09-17 13:14:11 -07:00
Ben Darnell ef788bce6d Merge branch 'branch2.0' 2011-09-11 20:42:22 -07:00
Ben Darnell 5872db2e66 Add support for callbacks that take more than a single positional argument.
Closes #351.
2011-09-11 15:50:34 -07:00
Ben Darnell 94b483efc4 Add support for lists of YieldPoints in the gen framework. 2011-09-11 15:09:25 -07:00
Ben Darnell d5e924a83c Add reference docs for all template directives.
Closes #355.
2011-09-10 15:15:36 -07:00
Ben Darnell 39de229e86 Add test for 100-continue functionality, and fix it on python 3
Closes #350.
2011-09-05 12:12:59 -07:00
Ben Darnell f28674d370 Document tornado.platform.twisted, and rename ioloop parameter to io_loop
for consistency with other modules.
2011-09-04 18:02:52 -07:00
Ben Darnell f05f9b9eae Reorganize release notes 2011-09-04 17:47:39 -07:00
Ben Darnell b266561de2 Accumulated release note updates. 2011-09-04 15:51:25 -07:00
Ben Darnell b2de4b8395 Update docs with new methods 2011-09-04 15:39:55 -07:00
Ben Darnell e4ead59795 Add tornado.gen module for simpler generator-based async code. 2011-09-04 00:59:57 -07:00
Ben Darnell 00bb10c4e1 Add static_handler_class application setting, and move most of static_url
into the handler class where it can be overridden.
2011-08-14 14:38:42 -07:00
Ben Darnell 1882670c5f In case the callback_uri and the uri that called authenticate_redirect
are different, use the callback as the openid realm.
2011-08-14 12:05:17 -07:00
Ben Darnell a824119300 Release note updates 2011-08-14 11:40:10 -07:00
Ben Darnell e41463076a Doc and release note updates. 2011-07-10 17:13:00 -07:00
Ben Darnell b0e4bedbd4 Release notes for multi-process stuff 2011-07-04 19:24:20 -07:00