| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-07-01 | - Deprecated the ``set_renderer_globals_factory`` method of the Configurator | Chris McDonough | |
| and the ``renderer_globals`` Configurator constructor parameter. | |||
| 2011-07-01 | typo | Chris McDonough | |
| 2011-07-01 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-07-01 | Add JSONP renderer | Chris McDonough | |
| 2011-06-30 | Merge pull request #221 from niallo/patch-1 | Carlos de la Guardia | |
| Zap word "either" describing acceptable values to Configurator.add_view() "request_method" kwarg. | |||
| 2011-06-30 | Zap word "either" describing request_method. By my reading, the word ↵ | Niall O'Higgins | |
| "either" implies there is an alternative to one of the listed strings (perhaps that you can pass some other kind of value such as a sequence of allowed request methods - which is not the case). | |||
| 2011-06-30 | garden | Chris McDonough | |
| 2011-06-30 | garden | Chris McDonough | |
| 2011-06-28 | unused import | Chris McDonough | |
| 2011-06-26 | - ``pyramid.testing.DummyRequest`` now raises deprecation warnings when | Chris McDonough | |
| attributes deprecated for ``pyramid.request.Request`` are accessed (like ``response_content_type``). This is for the benefit of folks running unit tests which use DummyRequest instead of a "real" request, so they know things are deprecated without necessarily needing a functional test suite. | |||
| 2011-06-26 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-06-26 | added github url option in docs conf for ribbon | Blaise Laflamme | |
| 2011-06-26 | prep for 1.1a3 | Chris McDonough | |
| 2011-06-26 | - Added ``mako.preprocessor`` config file parameter; allows for a Mako | Chris McDonough | |
| preprocessor to be specified as a Python callable or Python dotted name. See https://github.com/Pylons/pyramid/pull/183 for rationale. Closes #183. | |||
| 2011-06-26 | try to replicate github #213 | Chris McDonough | |
| 2011-06-26 | - Accessing or setting deprecated response_* attrs on request | Chris McDonough | |
| (e.g. ``response_content_type``) now issues a deprecation warning at access time rather than at rendering time. | |||
| 2011-06-26 | appeasement | Chris McDonough | |
| 2011-06-23 | garden | Chris McDonough | |
| 2011-06-23 | coverage | Chris McDonough | |
| 2011-06-23 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-06-23 | Merge pull request #217 from mmerickel/fix.classmethod_predicates | Chris McDonough | |
| A fix for classmethod-based custom predicates with no __text__ property. | |||
| 2011-06-23 | A fix for classmethod-based custom predicates with no __text__ property. | Michael Merickel | |
| 2011-06-22 | prep for 1.1a2 | Chris McDonough | |
| 2011-06-22 | garden | Chris McDonough | |
| 2011-06-22 | leave undefined | Chris McDonough | |
| 2011-06-22 | take robert forkels advice | Chris McDonough | |
| 2011-06-22 | - If multiple specs were provided in a single call to | Chris McDonough | |
| ``config.add_translation_dirs``, the directories were inserted into the beginning of the directory list in the wrong order: they were inserted in the reverse of the order they were provided in the ``*specs`` list (items later in the list trumped ones earlier in the list). This is now fixed. Note however, that later calls to ``config.add_translation_dirs`` continue to insert directories into the beginning of the list of translation directories created by earlier calls. This means that the same translation found in a directory added via ``add_translation_dirs`` later in the configuration process will be found before one added earlier via a separate call to ``add_translation_dirs`` in the configuration process. | |||
| 2011-06-22 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-06-22 | suggestions from sluggo | Chris McDonough | |
| 2011-06-21 | fix typo | Carlos de la Guardia | |
| 2011-06-21 | changes suggested by sluggo | Chris McDonough | |
| 2011-06-21 | garden | Chris McDonough | |
| 2011-06-21 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-06-21 | Merge pull request #215 from mmerickel/fix.template_deprecation | Chris McDonough | |
| Fixed a bw-compat issue with PyramidTemplate being moved. | |||
| 2011-06-21 | Fixed a bw-compat issue with PyramidTemplate being moved. | Michael Merickel | |
| 2011-06-21 | avoid some getattrs | Chris McDonough | |
| 2011-06-21 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-06-21 | - The pyramid Router attempted to set a value into the key | Chris McDonough | |
| ``environ['repoze.bfg.message']`` when it caught a view-related exception for backwards compatibility with :mod:`repoze.bfg` during error handling. It did this by using code that looked like so:: # "why" is an exception object try: msg = why[0] except: msg = '' environ['repoze.bfg.message'] = msg Use of the value ``environ['repoze.bfg.message']`` was docs-deprecated in Pyramid 1.0. Our standing policy is to not remove features after a deprecation for two full major releases, so this code was originally slated to be removed in Pyramid 1.2. However, computing the ``repoze.bfg.message`` value was the source of at least one bug found in the wild (https://github.com/Pylons/pyramid/issues/199), and there isn't a foolproof way to both preserve backwards compatibility and to fix the bug. Therefore, the code which sets the value has been removed in this release. Code in exception views which relies on this value's presence in the environment should now use the ``exception`` attribute of the request (e.g. ``request.exception[0]``) to retrieve the message instead of relying on ``request.environ['repoze.bfg.message']``. Closes #199. | |||
| 2011-06-20 | corrected missing apostrophe and then extra apostrophe | Carlos de la Guardia | |
| 2011-06-20 | typo | Carlos de la Guardia | |
| 2011-06-20 | Removed superfluous word | Carlos de la Guardia | |
| 2011-06-20 | prep for 1.1a1 | Chris McDonough | |
| 2011-06-20 | bring whatsnew up to date | Chris McDonough | |
| 2011-06-20 | bring whatsnew up to date | Chris McDonough | |
| 2011-06-20 | responsecode -> exception_response | Chris McDonough | |
| 2011-06-20 | - Register the default exception view for context of | Chris McDonough | |
| webob.exc.WSGIHTTPException (convenience). - Use ``exc.message`` in docs rather than ``exc.args[0]`` now that we control this. | |||
| 2011-06-20 | note backwards incompat related to ISettings | Chris McDonough | |
| 2011-06-19 | - Copy exception templates from webob.exc into pyramid.httpexceptions and | Chris McDonough | |
| ensure they all work. | |||
| 2011-06-19 | failUnless -> assertTrue to appease the unittest naming nazis | Chris McDonough | |
| 2011-06-19 | coverage | Chris McDonough | |
