| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-05-18 | Revert to get rid of incorrect author | Carlos de la Guardia | |
| Revert "added correct module name to method references so that proper links are generated" This reverts commit 7d34f86e98b6002bccd1e04f205b3387c6a1118d. | |||
| 2011-05-18 | added correct module name to method references so that proper links are ↵ | John Anderson | |
| generated | |||
| 2011-05-15 | garden | Chris McDonough | |
| 2011-05-15 | docstring/comment changes | Chris McDonough | |
| 2011-05-14 | template -> scaffold | Chris McDonough | |
| 2011-05-14 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-05-14 | add 'What's new In Pyramid 1.1' document | Chris McDonough | |
| 2011-05-14 | Merge pull request #190 from wichert/master | Carlos de la Guardia | |
| Correct a typo in my surname | |||
| 2011-05-14 | Correct spelling of my name | Wichert Akkerman | |
| 2011-05-14 | applied some of the suggestions from issue #189. closes #189 | Chris McDonough | |
| 2011-05-14 | garden | Chris McDonough | |
| 2011-05-14 | use lingua in docs (thanks to wichert) | Chris McDonough | |
| 2011-05-13 | good enough | Chris McDonough | |
| 2011-05-13 | fix IRouteMapper interface to match reality | Chris McDonough | |
| 2011-05-13 | - The ``add_route`` method of the Configurator now accepts a ``static`` | Chris McDonough | |
| argument. If this argument is ``True``, the added route will never be considered for matching when a request is handled. Instead, it will only be useful for URL generation via ``route_url`` and ``route_path``. See the section entitled "Static Routes" in the URL Dispatch narrative chapter for more information. | |||
| 2011-05-13 | - Added documentation for a "multidict" (e.g. the API of ``request.POST``) as | Chris McDonough | |
| interface API documentation. | |||
| 2011-05-13 | note location change | Chris McDonough | |
| 2011-05-12 | rename 'paster_templates' to 'scaffolds', adjust references | Chris McDonough | |
| 2011-05-12 | zcml not part of pyramid itself anymore | Chris McDonough | |
| 2011-05-12 | garden | Chris McDonough | |
| 2011-05-12 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-05-11 | Silence stupid deprecation under Python >= 2.7. | Tres Seaver | |
| 2011-05-10 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-05-10 | Merge pull request #187 from aodag/master | Tres Seaver | |
| Instances if DefaultViewMapper provide IViewMapper. The class itself provides IViewMapperFactory. | |||
| 2011-05-09 | Merge pull request #188 from dairiki/master | Carlos de la Guardia | |
| Trivial doc typos... | |||
| 2011-05-09 | fixes trivial doc typos | Geoffrey T. Dairiki | |
| 2011-05-09 | wrong declaring for provided and implemented interface of DefaultViewMapper. | Atsushi Odagiri | |
| 2011-05-05 | added note about constructor argument for same purpose, for uniformity | cguardia | |
| 2011-05-05 | removed meth indicator, which caused parentheses to show beside the name of ↵ | cguardia | |
| the argument | |||
| 2011-05-05 | removed meth indicator, which was showing on the rendered docs | cguardia | |
| 2011-05-05 | Merge pull request #184 from mmerickel/fix_auth_tutorial | Carlos de la Guardia | |
| Fix auth tutorial docs/code | |||
| 2011-05-05 | Fixed some line numbers in the docs. | Michael Merickel | |
| 2011-05-05 | Fixed a bug in the wiki2/auth tutorial. | Michael Merickel | |
| 2011-05-04 | note pviews | Chris McDonough | |
| 2011-05-04 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-05-04 | Merge pull request #182 from cguardia/master | Chris McDonough | |
| Merge paster pviews command from cguardia's master | |||
| 2011-05-04 | Merge pull request #181 from dairiki/master | Carlos de la Guardia | |
| Minor documentation typo | |||
| 2011-05-04 | changed __doc__ to __text__ in dummy custom predicate | cguardia | |
| 2011-05-04 | Revert "test adding theme as a submodule" | cguardia | |
| This reverts commit 94c2dc0bae9cf14cc6a5548119933e4477d07042. | |||
| 2011-05-04 | Revert "fixed makefile to update theme submodule correctly" | cguardia | |
| This reverts commit f2d5cb59deba682d7c1d461ab5e90ba1802d42ac. | |||
| 2011-05-04 | Revert "added requirement file to test rtd integration" | cguardia | |
| This reverts commit 9c0b0adf505444831704879a00f299ad74837284. | |||
| 2011-05-04 | Revert "changed requirements file to test rtd integration" | cguardia | |
| This reverts commit 5d150878d489ee90737f3a35e609adbb55de53c3. | |||
| 2011-05-04 | Merge branch 'master' of https://github.com/Pylons/pyramid | cguardia | |
| 2011-05-04 | code refactoring for showing route->view relationship more correctly; tests ↵ | cguardia | |
| and docs for pull request | |||
| 2011-05-04 | Documentation typo fix | Geoffrey T. Dairiki | |
| 2011-04-27 | - Passing an ``environ`` dictionary to the ``__call__`` method of a | Chris McDonough | |
| "traverser" (e.g. an object that implements ``pyramid.interfaces.ITraverser`` such as an instance of ``pyramid.traversal.ResourceTreeTraverser``) as its ``request`` argument now causes a deprecation warning to be emitted. Consumer code should pass a ``request`` object instead. The fact that passing an environ dict is permitted has been documentation-deprecated since ``repoze.bfg`` 1.1, and this capability will be removed entirely in a future version. - The following (undocumented, dictionary-like) methods of the ``pyramid.request.Request`` object have been deprecated: ``__contains__``, ``__delitem__``, ``__getitem__``, ``__iter__``, ``__setitem__``, ``get``, ``has_key``, ``items``, ``iteritems``, ``itervalues``, ``keys``, ``pop``, ``popitem``, ``setdefault``, ``update``, and ``values``. Usage of any of these methods will cause a deprecation warning to be emitted. These methods were added for internal compatibility in ``repoze.bfg`` 1.1 (code that currently expects a request object expected an environ object in BFG 1.0 and before). In a future version, these methods will be removed entirely. | |||
| 2011-04-27 | - Previously, ``pyramid.request.Request`` inherited from | Chris McDonough | |
| ``webob.request.Request`` and implemented ``__getattr__``, ``__setattr__`` and ``__delattr__`` itself in order to overidde "adhoc attr" WebOb behavior where attributes of the request are stored in the environ. Now, ``pyramid.request.Request`` object inherits from (the more recent) ``webob.request.BaseRequest`` instead of ``webob.request.Request``, which provides the same behavior. ``pyramid.request.Request`` no longer implements its own ``__getattr__``, ``__setattr__`` or ``__delattr__`` as a result. | |||
| 2011-04-27 | pulled in mcdoncs changes | cguardia | |
| 2011-04-27 | Merge branch 'cguardia-master' into pviews | Chris McDonough | |
| 2011-04-27 | use __doc__ instead of __text__ to represent predicate output; inject ↵ | Chris McDonough | |
| bfg.routes.matchdict into environ to prevent return of wrong subpath; expose __predicates__ as actual predicates rather than text for ease of copying (although i dont like it) | |||
