| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-06-19 | Fix API documentation links to webob, and rename the objects with their full ↵ | Steve Piercy | |
| and correct namespace | |||
| 2019-01-05 | stop overriding request.json_body from webob | Michael Merickel | |
| 2018-11-23 | fix a couple more doc strings | Michael Merickel | |
| 2018-11-19 | rip out moar unicode prefixes | Michael Merickel | |
| 2018-11-16 | Remove most Python 2 mentions from docs. Exclusions: | Steve Piercy | |
| - `docs/tutorials/wiki/*` was written for Python 2 and supposedly won't run on Python 3. - `docs/api/compat.rst` because it drops some stuff and moves other bits into `pyramid.util` and should be part of another PR. - Ignored a couple of times where `env27` and `Python 2.` appear in command output, but they are inconsequential. | |||
| 2018-09-09 | merging cookiecutters | Stephen Martin | |
| 2018-08-21 | Merge pull request #3330 from stevepiercy/docs-code-style | Michael Merickel | |
| Docs code style | |||
| 2018-08-19 | Fix broken links from linkcheck, exclude localhost from check | Steve Piercy | |
| 2018-08-18 | Clean up code-blocks in webob | Steve Piercy | |
| 2018-04-11 | updated `delete_cookie` docs with `name` instead of `key` | jonathan vanasco | |
| 2018-04-11 | updated docs/interfaces to note change in webob 1.7 of `set_cookie(key` to ↵ | jonathan vanasco | |
| `set_cookie(name` | |||
| 2017-06-27 | Update all external links per `make linkcheck` | Steve Piercy | |
| - Most are changing http to https, or readthedocs.org to readthedocs.io, and some for Python packaging reorganizing some docs into tutorials, as well as miscellaneous changes. | |||
| 2016-12-27 | narr/webob - update for cookiecutters | Steve Piercy | |
| 2016-04-23 | Fix all the stinky linkie rot via `make linkcheck ↵ | Steve Piercy | |
| SPHINXBUILD=$VENV/bin/sphinx-build`, but don't bother with HISTORY.txt or whatsnew-xx | |||
| 2016-01-24 | Use proper syntax names in code samples to allow highlighting and avoid ↵ | Steve Piercy | |
| errors. See https://github.com/sphinx-doc/sphinx/issues/2264 | |||
| 2015-10-15 | minor grammar, rewrap 79 cols, update dead external links, .rst syntax, git ↵ | Steve Piercy | |
| mah intersphinx on yo! | |||
| 2015-07-15 | fix for #1846, incorrect pointers to nonexistent webob properties | Chris McDonough | |
| 2014-12-16 | 79 cols | Chris McDonough | |
| 2014-12-17 | Add documentation on handling CORS pre-flights | Adrian Teng | |
| 2014-04-15 | DOC: Response.content_type defaults to text/html | westurner | |
| 2013-08-15 | prefer the functionish print | Philip Jenvey | |
| 2013-04-05 | fix some cross-references | Tshepang Lekhonkhobe | |
| 2013-04-01 | Consistently link middleware term to the glossary | Catalin Iacob | |
| 2013-03-22 | remove unused ignore-next-block directive | Tshepang Lekhonkhobe | |
| 2013-01-30 | use the more appropriate directives | Tshepang Lekhonkhobe | |
| 2012-02-24 | docs-deprecate tmpl_context | Chris McDonough | |
| 2011-09-05 | move unrelated request cleanup to webob.rest; reorder urldispatch chapter ↵ | Chris McDonough | |
| from most-important-concept-to-least | |||
| 2011-07-21 | urllib2 example of creating a request suitable for producing a json body | Chris McDonough | |
| 2011-07-20 | add more index markers | Chris McDonough | |
| 2011-07-10 | Modified docs to reference webob's new website. | Michael Merickel | |
| 2011-07-09 | make less confusing | Chris McDonough | |
| 2011-07-09 | request.json -> request.json_body; add some docs for json_body | Chris McDonough | |
| 2011-06-13 | - Remove IResponder abstraction in favor of more general IResponse | Chris McDonough | |
| abstraction. - It is now possible to return an arbitrary object from a Pyramid view callable even if a renderer is not used, as long as a suitable adapter to ``pyramid.interfaces.IResponse`` is registered for the type of the returned object. See the section in the Hooks chapter of the documentation entitled "Changing How Pyramid Treats View Responses". - The Pyramid router now, by default, expects response objects returned from view callables to implement the ``pyramid.interfaces.IResponse`` interface. Unlike the Pyramid 1.0 version of this interface, objects which implement IResponse now must define a ``__call__`` method that accepts ``environ`` and ``start_response``, and which returns an ``app_iter`` iterable, among other things. Previously, it was possible to return any object which had the three WebOb ``app_iter``, ``headerlist``, and ``status`` attributes as a response, so this is a backwards incompatibility. It is possible to get backwards compatibility back by registering an adapter to IResponse from the type of object you're now returning from view callables. See the section in the Hooks chapter of the documentation entitled "Changing How Pyramid Treats View Responses". - The ``pyramid.interfaces.IResponse`` interface is now much more extensive. Previously it defined only ``app_iter``, ``status`` and ``headerlist``; now it is basically intended to directly mirror the ``webob.Response`` API, which has many methods and attributes. - Documentation changes to support above. | |||
| 2011-06-11 | - Pyramid now expects Response objects to have a __call__ | Chris McDonough | |
| method which implements the WSGI application interface instead of the three webob attrs status, headerlist and app_iter. Backwards compatibility exists for code which returns response objects that do not have a __call__. - pyramid.response.Response is no longer an exception (and therefore cannot be raised in order to generate a response). - Changed my mind about moving stuff from pyramid.httpexceptions to pyramid.response. The stuff I moved over has been moved back to pyramid.httpexceptions. | |||
| 2011-05-31 | the canonical import location for HTTP exceptions/responses is now ↵ | Chris McDonough | |
| pyramid.response | |||
| 2011-05-13 | - Added documentation for a "multidict" (e.g. the API of ``request.POST``) as | Chris McDonough | |
| interface API documentation. | |||
| 2011-01-21 | - Add docs for ``add_finished_callback``, ``add_response_callback``, | Chris McDonough | |
| ``route_path``, ``route_url``, and ``static_url`` methods to ``pyramid.request.Request`` API docs. | |||
| 2010-12-10 | add comma | Casey Duncan | |
| 2010-12-10 | clarify reponse.status/status_int | Casey Duncan | |
| 2010-12-10 | remove extraneous space, change against to with | Casey Duncan | |
| 2010-12-10 | like to e.g., add comma, add a | Casey Duncan | |
| 2010-12-10 | add comma | Casey Duncan | |
| 2010-12-10 | fix space before comma | Casey Duncan | |
| 2010-12-05 | Add the other useful webob URL attributes. | Ben Bangert | |
| 2010-11-28 | Normalized narrative doc, code with linenos while text+bash don't | Blaise Laflamme | |
| 2010-11-09 | - All references to Pyramid-the-application were changed from :mod:`pyramid` | Chris McDonough | |
| to :app:`Pyramid`. A custom role setting was added to ``docs/conf.py`` to allow for this. (internal) | |||
| 2010-11-02 | - Remove references to 'WebOb' Response and just call it 'Response', and note | Chris McDonough | |
| that it is imported from pyramid. API docs can mention its inheritance from webob (aka "Provide a webob.Response class facade for forward compat"). | |||
| 2010-10-29 | pylons paster templates | Chris McDonough | |
| 2010-10-28 | sessioning docs | Chris McDonough | |
| 2010-10-25 | add httpexceptions docs | Chris McDonough | |
