summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-05-18Revert to get rid of incorrect authorCarlos de la Guardia
Revert "added correct module name to method references so that proper links are generated" This reverts commit 7d34f86e98b6002bccd1e04f205b3387c6a1118d.
2011-05-18added correct module name to method references so that proper links are ↵John Anderson
generated
2011-05-15gardenChris McDonough
2011-05-15docstring/comment changesChris McDonough
2011-05-14template -> scaffoldChris McDonough
2011-05-14Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-05-14add 'What's new In Pyramid 1.1' documentChris McDonough
2011-05-14Merge pull request #190 from wichert/masterCarlos de la Guardia
Correct a typo in my surname
2011-05-14Correct spelling of my nameWichert Akkerman
2011-05-14applied some of the suggestions from issue #189. closes #189Chris McDonough
2011-05-14gardenChris McDonough
2011-05-14use lingua in docs (thanks to wichert)Chris McDonough
2011-05-13good enoughChris McDonough
2011-05-13fix IRouteMapper interface to match realityChris 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``) asChris McDonough
interface API documentation.
2011-05-13note location changeChris McDonough
2011-05-12rename 'paster_templates' to 'scaffolds', adjust referencesChris McDonough
2011-05-12zcml not part of pyramid itself anymoreChris McDonough
2011-05-12gardenChris McDonough
2011-05-12Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-05-11Silence stupid deprecation under Python >= 2.7.Tres Seaver
2011-05-10Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-05-10Merge pull request #187 from aodag/masterTres Seaver
Instances if DefaultViewMapper provide IViewMapper. The class itself provides IViewMapperFactory.
2011-05-09Merge pull request #188 from dairiki/masterCarlos de la Guardia
Trivial doc typos...
2011-05-09fixes trivial doc typosGeoffrey T. Dairiki
2011-05-09wrong declaring for provided and implemented interface of DefaultViewMapper.Atsushi Odagiri
2011-05-05added note about constructor argument for same purpose, for uniformitycguardia
2011-05-05removed meth indicator, which caused parentheses to show beside the name of ↵cguardia
the argument
2011-05-05removed meth indicator, which was showing on the rendered docscguardia
2011-05-05Merge pull request #184 from mmerickel/fix_auth_tutorialCarlos de la Guardia
Fix auth tutorial docs/code
2011-05-05Fixed some line numbers in the docs.Michael Merickel
2011-05-05Fixed a bug in the wiki2/auth tutorial.Michael Merickel
2011-05-04note pviewsChris McDonough
2011-05-04Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2011-05-04Merge pull request #182 from cguardia/masterChris McDonough
Merge paster pviews command from cguardia's master
2011-05-04Merge pull request #181 from dairiki/masterCarlos de la Guardia
Minor documentation typo
2011-05-04changed __doc__ to __text__ in dummy custom predicatecguardia
2011-05-04Revert "test adding theme as a submodule"cguardia
This reverts commit 94c2dc0bae9cf14cc6a5548119933e4477d07042.
2011-05-04Revert "fixed makefile to update theme submodule correctly"cguardia
This reverts commit f2d5cb59deba682d7c1d461ab5e90ba1802d42ac.
2011-05-04Revert "added requirement file to test rtd integration"cguardia
This reverts commit 9c0b0adf505444831704879a00f299ad74837284.
2011-05-04Revert "changed requirements file to test rtd integration"cguardia
This reverts commit 5d150878d489ee90737f3a35e609adbb55de53c3.
2011-05-04Merge branch 'master' of https://github.com/Pylons/pyramidcguardia
2011-05-04code refactoring for showing route->view relationship more correctly; tests ↵cguardia
and docs for pull request
2011-05-04Documentation typo fixGeoffrey T. Dairiki
2011-04-27- Passing an ``environ`` dictionary to the ``__call__`` method of aChris 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 fromChris 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-27pulled in mcdoncs changescguardia
2011-04-27Merge branch 'cguardia-master' into pviewsChris McDonough
2011-04-27use __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)