Path to this page:
NOTICE: This package has been removed from pkgsrc./
wip/py-webob,
Python module providing WSGI request and response objects
Branch: CURRENT,
Version: 1.2b3,
Package name: py27-webob-1.2b3,
Maintainer: kamelderouicheWebOb provides wrappers around the WSGI request environment, and an
object to help create WSGI responses.
The objects map much of the specified behavior of HTTP, including
header parsing and accessors for other standard parts of the
environment
Required to run:[
devel/py-setuptools] [
converters/py-simplejson] [
lang/python27]
Master sites:
SHA1: a7a906f36dbf2d67f99cc6cf1d29f25a4059813f
RMD160: d43716e16345ca442ca51dff161b78eaf25e684f
Filesize: 199.58 KB
Version history: (Expand)
- (2014-08-21) Package deleted from pkgsrc
- (2013-11-18) Package has been reborn
- (2013-11-18) Package deleted from pkgsrc
- (2013-08-28) Package has been reborn
- (2013-08-28) Package deleted from pkgsrc
- (2013-03-09) Package has been reborn
CVS history: (Expand)
2014-08-20 15:28:30 by Thomas Klausner | Files touched by this commit (9) | |
Log message:
Remove py-webob, and use www/py-WebOb instead.
|
2014-08-20 15:22:43 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 1.4:
1.4 (2013-05-14)
----------------
Features
~~~~~~~~
- Remove ``webob.__version__``, the version number had not been kept in sync
with the official pkg version. To obtain the WebOb version number, use
``pkg_resources.get_distribution('webob').version`` instead.
Bug Fixes
~~~~~~~~~
- Fix a bug in ``EmptyResponse`` that prevents it from setting self.close as
appropriate due to testing truthiness of object rather than if it is
something other than ``None``.
- Fix a bug in ``SignedSerializer`` preventing secrets from containing
higher-order characters. See https://github.com/Pylons/webob/issues/136
- Use the ``hmac.compare_digest`` method when available for constant-time
comparisons.
1.3.1 (2013-12-13)
------------------
Bug Fixes
~~~~~~~~~
- Fix a bug in ``SignedCookieProfile`` whereby we didn't keep the original
serializer around, this would cause us to have ``SignedSerializer`` be added on
top of a ``SignedSerializer`` which would cause it to be run twice when
attempting to verify a cookie. See https://github.com/Pylons/webob/pull/127
Backwards Incompatibilities
~~~~~~~~~~~~~~~~~~~~~~~~~~~
- When ``CookieProfile.get_value`` and ``SignedCookieProfile.get_value`` fails
to deserialize a badly encoded value, we now return ``None`` as if the cookie
was never set in the first place instead of allowing a ``ValueError`` to be
raised to the calling code. See https://github.com/Pylons/webob/pull/126
1.3 (2013-12-10)
----------------
Features
~~~~~~~~
- Added a read-only ``domain`` property to ``BaseRequest``. This property
returns the domain portion of the host value. For example, if the
environment contains an ``HTTP_HOST`` value of ``foo.example.com:8000``,
``request.domain`` will return ``foo.example.com``.
- Added five new APIs: ``webob.cookies.CookieProfile``,
``webob.cookies.SignedCookieProfile``, ``webob.cookies.JSONSerializer`` and
``webob.cookies.SignedSerializer``, and ``webob.cookies.make_cookie``. These
APIs are convenience APIs for generating and parsing cookie headers as well
as dealing with signing cookies.
- Cookies generated via webob.cookies quoted characters in cookie values that
did not need to be quoted per RFC 6265. The following characters are no
longer quoted in cookie values: ``~/=<>()[]{}?@`` . The full set of
non-letter-or-digit unquoted cookie value characters is now
``!#$%&'*+-.^_`|~/: =<>()[]{}?@``. See
http://tools.ietf.org/html/rfc6265#section-4.1.1 for more information.
- Cookie names are now restricted to the set of characters expected by RFC
6265. Previously they could contain unsupported characters such as ``/``.
- Older versions of Webob escaped the doublequote to ``\"`` and the backslash
to ``\\`` when quoting cookie values. Now, instead, cookie serialization
generates ``\042`` for the doublequote and ``\134`` for the backslash. This
is what is expected as per RFC 6265. Note that old cookie values that do
have the older style quoting in them will still be unquoted correctly,
however.
- Added support for draft status code 451 ("Unavailable for Legal \
Reasons").
See http://tools.ietf.org/html/draft-tbray-http-legally-restricted-status-00
- Added status codes 428, 429, 431 and 511 to ``util.status_reasons`` (they
were already present in a previous release as ``webob.exc`` exceptions).
Bug Fixes
~~~~~~~~~
- MIMEAccept happily parsed malformed wildcard strings like "image/pn*" at
parse time, but then threw an AssertionError during matching. See
https://github.com/Pylons/webob/pull/83 .
- Preserve document ordering of GET and POST request data when POST data passed
to Request.blank is a MultiDict. See https://github.com/Pylons/webob/pull/96
- Allow query strings attached to PATCH requests to populate request.params.
See https://github.com/Pylons/webob/pull/106
- Added Python 3.3 trove classifier.
|
2013-05-12 22:36:25 by Aleksey Cheusov | Files touched by this commit (1) |
Log message:
Fix pkglint warnings
|
2013-05-12 22:35:07 by Aleksey Cheusov | Files touched by this commit (2) |
Log message:
Fix for PLIST issue
|
2012-10-16 14:39:46 by Kamel Derouiche | Files touched by this commit (1) |
Log message:
Remove PYTHON_VERSIONS_ACCEPTED
|
2012-10-07 15:57:25 by Aleksej Saushev | Files touched by this commit (211) |
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
Mark packages that don't or might probably not have staged installation.
|
2012-09-10 17:26:22 by Kamel Derouiche | Files touched by this commit (2) | |
Log message:
update version
|
2011-02-25 10:47:47 by Thomas Klausner | Files touched by this commit (76) |
Log message:
Let's assume for now that everything that worked with python-2.6 also
works with python-2.7.
|