]> git.ipfire.org Git - thirdparty/tornado.git/shortlog
thirdparty/tornado.git
2011-07-05  Ben DarnellNon-file-based template loaders should always use posix...
2011-07-05  Ben DarnellDisable this test on non-unix platforms
2011-07-05  Ben DarnellMove the waker pipe into tornado.platform.
2011-07-05  Ben DarnellClean up hacky fcntl emulation for windows.
2011-07-05  Ben DarnellThis looks like it's always been backwards.
2011-07-05  Ben DarnellMove win32_support to a new tornado.platform package
2011-07-05  Ben DarnellRelease notes for multi-process stuff
2011-07-05  Ben DarnellCheck for forked status in autoreload
2011-07-05  Ben DarnellBetter fork_processes: Restart processes when they...
2011-07-05  Ben DarnellDon't initialize the singleton IOLoop from tearDown
2011-07-05  Ben DarnellRefactor random-seed code out of fork_processes
2011-07-05  Ben DarnellBetter documentation for HTTPServer startup
2011-07-05  Ben DarnellAdd the HTTPServer.add_sockets interface
2011-07-04  Ben DarnellPull process forking out of HTTPServer into a new module
2011-07-04  Ben DarnellPull socket creation out of HTTPServer into a new module.
2011-07-04  Ben DarnellAdd a better error message for a common assertion
2011-07-04  Ben DarnellRevamp error handling: replace get_error_html with...
2011-07-04  Ben DarnellAdd RequestHandler.set_default_headers, which may be...
2011-07-03  Ben DarnellCreate the StackContext in @asynchronous instead of...
2011-07-03  Ben DarnellBetter handling of errors not generated by an exception...
2011-07-03  Ben DarnellUpdate next release notes for recent changes
2011-07-03  Ben DarnellAdd support for client SSL certificates in simple_httpc...
2011-07-03  Ben DarnellMerge remote-tracking branch 'eklitzke/tracebacks'...
2011-07-03  Ben DarnellMerge remote-tracking branch 'davidwilemski/master...
2011-07-02  David WilemskiUsed tornado.util.import_object 294/head
2011-07-02  Ben DarnellAllow the caller to specify the listen() backlog in...
2011-07-02  Ben DarnellMerge branch 'master' into merge
2011-07-02  Ben DarnellProperly check for errors on async connect instead...
2011-07-02  Ben DarnellSkip ipv6 tests if the system isn't configured for it.
2011-07-02  Ben DarnellFix websocket handshake status line
2011-07-02  David WilemskiAdded dynamic loading of request handlers
2011-06-30  Ben DarnellCheck for the existence of callbacks after running...
2011-06-30  Evan Klitzkeimprove the speed of add_callback by avoiding the waker...
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-23  Evan Klitzkeadd text tracebacks on 500s when in debug mode 289/head
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...
next