]> git.ipfire.org Git - thirdparty/tornado.git/shortlog
thirdparty/tornado.git
2011-07-02  David WilemskiUsed tornado.util.import_object 294/head
2011-07-02  David WilemskiAdded dynamic loading of request handlers
2011-06-28  Ben DarnellImprove auth module on python 3 (covers openid and...
2011-06-27  Ben DarnellReplace all bare "except:" blocks with "except Exceptio...
2011-06-27  Ben DarnellReduce logging verbosity in curl_httpclient to match...
2011-06-27  Ben DarnellRemove support for cookies set by pre-1.0 releases...
2011-06-27  Ben DarnellAdd max_age_days parameter to RequestHandler.get_secure...
2011-06-27  Ben DarnellRemove debugging print statement, log on clean exits...
2011-06-26  Ben DarnellAdd command-line interface to tornado.autoreload
2011-06-26  Ben DarnellClean up shutdown process for IOLoop and HTTPClient.
2011-06-26  Ben DarnellConsolidate httpclient main() functions
2011-06-26  Ben DarnellAdd read_until_close method to IOStream and use it...
2011-06-26  Ben DarnellMove read_bytes(0) special-case into _consume so it...
2011-06-26  Ben DarnellFail more gracefully when SSL is not supported, and...
2011-06-26  Ben DarnellRemove unused imports and variables.
2011-06-26  Ben DarnellMake websocket work in python3.
2011-06-26  Ben DarnellAccept utf8-encoded byte strings in json_encode
2011-06-26  Ben DarnellAllow non-ascii (but still latin1) in our fake byte...
2011-06-26  Ben DarnellFixed error in HTTPServer when AI_ADDRCONFIG is not...
2011-06-26  Ben DarnellBump version number for the master branch
2011-06-22  Ben DarnellAdd more prominent warning about incompatible changes...
2011-06-22  Ben DarnellAdd more setup.py debris to .gitignore
2011-06-22  Ben DarnellSet version number to 2.0 v2.0.0
2011-06-22  Ben DarnellAdd 2.0 release notes
2011-06-22  Ben DarnellAdd test for unicode domain and path arguments to set_c...
2011-06-19  Ben DarnellUpdate homepage
2011-06-19  Ben DarnellMisc updates
2011-06-19  Ben DarnellRemove old markdown version of overview page
2011-06-19  Ben DarnellRemove some redundant sections; flatten document structure
2011-06-19  Ben DarnellFix formatting that didn't convert correctly
2011-06-19  Ben DarnellConvert overview from markdown to rst with pandoc
2011-06-19  Ben DarnellStyle updates
2011-06-19  Ben DarnellRun coverage check and fill in the blanks
2011-06-19  Ben DarnellFinish this round of doc updates
2011-06-17  Ben DarnellIOLoop and HTTPClient docs
2011-06-17  Ben DarnellMore doc updates
2011-06-16  Ben DarnellNew method to_basestring replaces some use of native_str.
2011-06-14  Ben DarnellUnquote PATH_INFO in wsgi.
2011-06-12  Ben DarnellUpdate overview for new 2.0 features
2011-06-12  Ben DarnellAdd past release notes to sphinx docs
2011-06-12  Ben DarnellBump version number to 2.0rc1.
2011-06-12  Ben DarnellBACKWARDS-INCOMPATIBLE: turn on template autoescaping...
2011-06-11  Ben DarnellMerge branch 'docs'
2011-06-11  Ben DarnellServe sphinx docs from app engine
2011-06-11  Ben DarnellInclude __init__ methods in autodoc too
2011-06-11  Ben DarnellAdd titles to table of contents
2011-06-11  Ben DarnellUse real section headers
2011-06-11  Ben DarnellOne more autodoc cleanup
2011-06-11  Ben DarnellStyle sphinx docs to match the rest of the site
2011-06-11  Ben DarnellFinish automatic documentation
2011-06-11  Ben DarnellDocument debug mode and autoreload
2011-06-11  Ben DarnellGive template-generated code a fake "filename" to avoid...
2011-06-11  Ben DarnellDemote s3server.py to a demo
2011-06-11  Ben DarnellReplace tornado.web._unicode with tornado.escape._unicode.
2011-06-10  Ben DarnellMore autodoc fixes
2011-06-09  Ben DarnellUse coverage checker instead of automatic member extraction
2011-06-09  Ben DarnellFix up docs for web.py
2011-06-09  Ben DarnellSkeletal autogenerated reference documentation
2011-06-09  Ben DarnellFix a non-ascii docstring
2011-06-08  Ben DarnellAdd the ability to escape template commands with {...
2011-06-08  Ben DarnellMerge remote-tracking branch 'inferno-/master'
2011-06-07  Rickard BReplace IOStream._read_buffer_size() with a simple... 277/head
2011-06-05  Ben DarnellRemove dead code
2011-06-05  Ben DarnellRemove unused imports, add a few missing ones
2011-06-05  Ben DarnellAdd a Template UIModule, allowing templates to be calle...
2011-06-05  Ben DarnellIntroduce {% module %} syntax for calling UIModules.
2011-06-05  Ben DarnellRefactor redundant code out of httpserver.py and wsgi...
2011-06-05  Ben DarnellTest multipart/form-data parsing in wsgi and fix it...
2011-06-05  Ben DarnellOnly listen on localhost so unittests don't cause firew...
2011-06-04  Ben DarnellDocumentation fix
2011-06-01  Ben DarnellTest use of a custom escaping function
2011-05-31  Ben DarnellAdd autoescape application setting and convert chatdemo...
2011-05-31  Ben DarnellAdd raw expressions to templates with {% raw [expr] %}
2011-05-30  Ben DarnellFirst pass at template autoescaping
2011-05-30  Ben DarnellMake template.Loader and DictLoader share a common...
2011-05-30  Ben DarnellFix template rendering for non-string expressions.
2011-05-30  Ben DarnellExtract etag computation so it can be customized or...
2011-05-30  Ben DarnellAllow the application to determine the encoding used...
2011-05-30  Ben DarnellAdd an encoding argument to tornado.escape.url_unescape.
2011-05-30  Ben DarnellAdd type checks for web.py methods.
2011-05-30  Ben DarnellType checks for httpserver.HTTPRequest fields
2011-05-30  Ben DarnellCheck types of HTTPClient response objects and make...
2011-05-30  Ben DarnellMove most simple_httpclient tests to httpclient_test...
2011-05-30  Ben DarnellAdd AI_ADDRCONFIG to getaddrinfo call, which may fix...
2011-05-29  Ben DarnellTest template include/extend operations
2011-05-29  Ben DarnellTest WSGIApplication and make it work on python3
2011-05-29  Ben DarnellMake WSGIContainer work on python 3
2011-05-29  Ben DarnellAdd a simple template test and make it pass in python 3
2011-05-29  Ben DarnellAdd script to run test suite with multiple python versi...
2011-05-29  Ben DarnellMake tornado.testing.main with no arguments work in...
2011-05-29  Ben DarnellDon't add an extra delimter when no arguments are given
2011-05-28  Ben DarnellRemove execute permission from files not intended to...
2011-05-28  Ben DarnellAdd a test that imports all tornado modules to at least...
2011-05-28  Ben DarnellMake OAuth2Mixin work even when OAUTH_AUTHORIZE_URL...
2011-05-28  Ben DarnellConvert path components to unicode for consistency...
2011-05-28  Ben DarnellFix HTTPServer on windows, where IPPROTO_IPV6 options...
2011-05-25  Ben DarnellFix decoding of non-ascii characters in query strings
2011-05-24  Ben DarnellInner headers for multipart/form-data default to utf-8
2011-05-24  Ben DarnellFix and test encoding handling for multipart/form-data...
2011-05-21  Ben DarnellMake xhtml_escape work in python3; add test.
next