summaryrefslogtreecommitdiff
path: root/www/py-paste
AgeCommit message (Collapse)AuthorFilesLines
2010-07-26Update py-Paste to 1.7.4.obache3-9/+12
While here, set LICENSE=mit. 1.7.4 ----- * Fix XSS bug (security issue) with not found handlers for :class:`paste.urlparser.StaticURLParser` and :class:`paste.urlmap.URLMap`. If you ask for a path with ``/--><script>...`` that will be inserted in the error page and can execute Javascript. Reported by Tim Wintle. * Replaced :func:`paste.util.mimeparse.desired_match` 1.7.3.1 ------- * Removed directory name from 404 errors in :class:`paste.urlparser.StaticURLParser`. * Fixed packaging to include Javascript and images for :mod:`paste.evalexception` 1.7.3 ----- * I got a fever and the only prescription is more :mod:`paste.cowbell`! * Fix :mod:`paste.httpserver` on Python 2.6. * Fix :mod:`paste.auth.cookie`, which would insert newlines for long cookies. * :mod:`paste.util.mimeparse` parses a single ``*`` in Accept headers (sent by IE 6). * Fix some problems with the ``wdg_validate`` middleware. * Improvements to :mod:`paste.auth.auth_tkt`: add httponly support, don't always aggressively set cookies without the ``wildcard_cookie`` option. Also on logout, make cookies expire. * In :class:`paste.proxy.Proxy` handle Content-Length of -1. * In :mod:`paste.httpexceptions` avoid some unicode errors. * In :mod:`paste.httpserver` handle ``.read()`` from 100 Continue properly (because of a typo it was doing a readline). * Update ``paste.util.mimeparse`` from `upstream <http://code.google.com/p/mimeparse/>`_.
2009-11-10Update to 1.7.2epg2-6/+6
----- * In :mod:`paste.proxy`, added some more headers that are disallowed in WSGI (e.g., Keep-Alive). Send Content-Length. Also fix the missing query string when using :class:`paste.proxy.Proxy` (:class:`paste.proxy.TransparentProxy` already worked). * Make :mod:`paste.debug.prints` work with Google App Engine. * Make ``environ['wsgi.input']`` with :mod:`paste.httpserver` only have a ``seek`` method if it is wrapping something with a seek method (which usually it is not). * In :mod:`paste.httpserver` re-raise KeyboardInterrupt in worker threads. * Added support for the ``HttpOnly`` Cookie property to :mod:`paste.wsgiwrappers` * Added :func:`paste.reloader.add_file_callback`, which lets you watch files based on a callback. * Quiet Python 2.6 deprecation warnings. * Fix :mod:`paste.auth.cookie` generating bad headers. * Added :class:`paste.reloader.JythonMonitor` for an experimental, optimized reloader on Jython.
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg1-10/+1
2008-09-12Default EGG_NAME to ${DISTNAME} in egg.mk and drop EGG_NAME from packages thatepg1-2/+1
set it to ${DISTNAME}.
2008-09-10Use egg.mk, cutting the Makefile in half (and fixing semi-automatic PLISTepg2-23/+14
generation, now that egg.mk does it).
2008-09-08py-setuptools is only support for 2.4+joerg1-1/+2
2008-09-04Oops, this doesn't require 2.5; DEPEND on setuptools and dropepg2-15/+20
PYTHON_VERSIONS_ACCEPTED (should work with any).
2008-09-04Import py-Paste-1.7.1.epg4-0/+304
These provide several pieces of "middleware" (or filters) that can be nested to build web applications. Each piece of middleware uses the WSGI (`PEP 333`_) interface, and should be compatible with other middleware based on those interfaces.