Revisions of python-tornado

Sascha Peilicke's avatar Sascha Peilicke (saschpe) committed (revision 28)
Python3 moved to devel:languages:python3
Alexandre Rogoski's avatar Alexandre Rogoski (aledr) committed (revision 27)
Missed python3 package changelog.
Alexandre Rogoski's avatar Alexandre Rogoski (aledr) committed (revision 26)
- Update to 3.0.1:
  - The interface of tornado.auth.FacebookGraphMixin is now
    consistent with its documentation and the rest of the module.
    The get_authenticated_user and facebook_request methods return
    a Future and the callback argument is optional.
  - The tornado.testing.gen_test decorator will no longer be
    recognized as a (broken) test by nose.
  - Work around a bug in Ubuntu 13.04 betas involving an
    incomplete backport of the ssl.match_hostname function.
  - tornado.websocket.websocket_connect now fails cleanly when it
    attempts to connect to a non-websocket url.
  - tornado.testing.LogTrapTestCase once again works with byte
    strings on Python 2.
  - The request attribute of tornado.httpclient.HTTPResponse is
    now always an HTTPRequest, never a _RequestProxy.
  - Exceptions raised by the tornado.gen module now have better
    messages when tuples are used as callback keys.
Alexandre Rogoski's avatar Alexandre Rogoski (aledr) committed (revision 25)
- Update to 3.0:
  - Please read full changelog at
    http://www.tornadoweb.org/en/stable/releases/v3.0.0.html

- Update to 3.0:
  - Please read full changelog at
    http://www.tornadoweb.org/en/stable/releases/v3.0.0.html
Alexandre Rogoski's avatar Alexandre Rogoski (aledr) committed (revision 24)
- Update to 2.4.1:
  - Fixed a memory leak in tornado.stack_context that was especially
    likely with long-running @gen.engine functions.
  - tornado.auth.TwitterMixin now works on Python 3.
  - Fixed a bug in which IOStream.read_until_close with a streaming
    callback would sometimes pass the last chunk of data to the
    final callback instead of the streaming callback.

- Update to 2.4.1:
  - Fixed a memory leak in tornado.stack_context that was especially
    likely with long-running @gen.engine functions.
  - tornado.auth.TwitterMixin now works on Python 3.
  - Fixed a bug in which IOStream.read_until_close with a streaming
    callback would sometimes pass the last chunk of data to the
    final callback instead of the streaming callback.
Todd R's avatar Todd R (TheBlackCat) accepted request 142783 from Todd R's avatar Todd R (TheBlackCat) (revision 23)
Removed openSUSE 11.4 spec file workarounds (forwarded request 142762 from TheBlackCat)
Todd R's avatar Todd R (TheBlackCat) accepted request 132978 from Todd R's avatar Todd R (TheBlackCat) (revision 22)
Restore BuildRequires: python3  This package depends on hash algorithms that are only available if python3 is installed, python3-devel will not pull them in.  Building will fail if  BuildRequires: python3 is removed.
Alexandre Rogoski's avatar Alexandre Rogoski (aledr) committed (revision 21)
- Update to 2.4:
  - Please check changelog at
    http://www.tornadoweb.org/documentation/releases/v2.4.0.html
    http://www.tornadoweb.org/documentation/releases/v2.3.0.html

- Update to 2.4:
  - Please check changelog at
    http://www.tornadoweb.org/documentation/releases/v2.4.0.html
Alexandre Rogoski's avatar Alexandre Rogoski (aledr) committed (revision 20)
- Update to 2.3:
  - Please check changelog at
    http://www.tornadoweb.org/documentation/releases/v2.3.0.html 

- Update to 2.3:
  - Please check changelog at
    http://www.tornadoweb.org/documentation/releases/v2.3.0.html
Todd R's avatar Todd R (TheBlackCat) accepted request 121469 from Todd R's avatar Todd R (TheBlackCat) (revision 19)
- Fix rpmlint warnings
- Improve openSUSE 11.4 build fix
- Clean up spec file

Todd R's avatar Todd R (TheBlackCat) accepted request 116077 from Todd R's avatar Todd R (TheBlackCat) (revision 18)
- Fix building python 3 package on openSUSE 11.4 x86_64
- Removed test for unsupported openSUSE versions
Todd R's avatar Todd R (TheBlackCat) accepted request 116052 from Todd R's avatar Todd R (TheBlackCat) (revision 17)
Fix building python 3 package on openSUSE 11.4 x86_64 (forwarded request 116051 from TheBlackCat)
Todd R's avatar Todd R (TheBlackCat) accepted request 115979 from Vitaliy Tomin's avatar Vitaliy Tomin (HighwayStar) (revision 16)
python3 package added, slightly cleaned python2 spec. This package needed for IPython notebook mode 
Alexandre Rogoski's avatar Alexandre Rogoski (aledr) committed (revision 15)
- Update to 2.2.1:
  - tornado.web.RequestHandler.set_header now properly sanitizes
    input values to protect against header injection, response
    splitting, etc. (it has always attempted to do this, but the
    check was incorrect). Note that redirects, the most likely
    source of such bugs, are protected by a separate check in
    RequestHandler.redirect.
  - Colored logging configuration in tornado.options is compatible
    with Python 3.2.3 (and 3.3).
Sascha Peilicke's avatar Sascha Peilicke (saschpe) committed (revision 14)
- Update requires on python-curl to python-pycurl
- Simplify macro usage
Sascha Peilicke's avatar Sascha Peilicke (saschpe) committed (revision 13)
- Simplified macro usage
- Use upstream tarball
Alexandre Rogoski's avatar Alexandre Rogoski (aledr) committed (revision 12)
5S- Update to 2.2:
  - Please read http://www.tornadoweb.org/documentation/releases/v2.2.0.html
    for all changes in this release.
Alexandre Rogoski's avatar Alexandre Rogoski (aledr) committed (revision 11)
- Update to 2.1.1
  Bug fixes:
  - Fixed handling of closed connections with the epoll
    (i.e. Linux) IOLoop. Previously, closed connections could be
    shut down too early, which most often manifested as “Stream
    is closed” exceptions in SimpleAsyncHTTPClient.
  - Fixed a case in which chunked responses could be closed
    prematurely, leading to truncated output.
  - IOStream.connect now reports errors more consistently via
    logging and the close callback (this affects e.g. connections
    to localhost on FreeBSD).
  - IOStream.read_bytes again accepts both int and long arguments.
  - PeriodicCallback no longer runs repeatedly when IOLoop
    iterations complete faster than the resolution of time.time()
    (mainly a problem on Windows).
  Backwards-compatibility note
  - Listening for IOLoop.ERROR alone is no longer sufficient for
    detecting closed connections on an otherwise unused socket.
    IOLoop.ERROR must always be used in combination with READ or
    WRITE.
Alexandre Rogoski's avatar Alexandre Rogoski (aledr) committed (revision 10)
- Update to 2.1:
  - There are security fixes, backwards-incompatible changes,
    new modules, and bug fixes.
  For full changes please read
  http://www.tornadoweb.org/documentation/releases/v2.1.0.html
Sascha Peilicke's avatar Sascha Peilicke (saschpe) committed (revision 9)
- Added README and examples to documentation
- Fixed license string to "Apache-2.0"
Displaying revisions 101 - 120 of 128
openSUSE Build Service is sponsored by