| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-07-14 | describe what Pyramid does | Chris McDonough | |
| 2011-07-14 | we no longer support py24 | Chris McDonough | |
| 2011-07-14 | mention traversal | Chris McDonough | |
| 2011-07-14 | note that flask does not use import ordering, but complexity ordering | Chris McDonough | |
| 2011-07-14 | Sentence was badly structured and also had a word capitalized after a comma | Carlos de la Guardia | |
| 2011-07-14 | Removed superfluous 'and' | Carlos de la Guardia | |
| 2011-07-14 | corrected typo | Carlos de la Guardia | |
| 2011-07-14 | eliminated repeated word | Carlos de la Guardia | |
| 2011-07-14 | typo | Chris McDonough | |
| 2011-07-14 | promote http_cache to major feature | Chris McDonough | |
| 2011-07-14 | forgot to change whatsnew | Chris McDonough | |
| 2011-07-14 | - New API class: ``pyramid.static.static_view``. This supersedes the | Chris McDonough | |
| deprecated ``pyramid.view.static`` class. ``pyramid.satic.static_view`` by default serves up documents as the result of the request's ``path_info``, attribute rather than it's ``subpath`` attribute (the inverse was true of ``pyramid.view.static``, and still is). ``pyramid.static.static_view`` exposes a ``use_subpath`` flag for use when you don't want the static view to behave like the older deprecated version. - The ``pyramid.view.static`` class has been deprecated in favor of the newer ``pyramid.static.static_view`` class. A deprecation warning is raised when it is used. You should replace it with a reference to ``pyramid.static.static_view`` with the ``use_subpath=True`` argument. | |||
| 2011-07-13 | move all paster commands to a separate chapter | Chris McDonough | |
| 2011-07-13 | prep for 1.1b2 | Chris McDonough | |
| 2011-07-12 | clarify | Chris McDonough | |
| 2011-07-12 | - New environment setting ``PYRAMID_PREVENT_HTTP_CACHE`` and new | Chris McDonough | |
| configuration file value ``prevent_http_cache``. These are synomymous and allow you to prevent HTTP cache headers from being set by Pyramid's ``http_cache`` machinery globally in a process. see the "Influencing HTTP Caching" section of the "View Configuration" narrative chapter and the detailed documentation for this setting in the "Environment Variables and Configuration Settings" narrative chapter. - New documentation section in View Configuration narrative chapter: "Influencing HTTP Caching". | |||
| 2011-07-12 | - The ``pyramid_routesalchemy`` and ``pyramid_alchemy`` scaffolds | Chris McDonough | |
| inappropriately used ``DBSession.rollback()`` instead of ``transaction.abort()`` in one place. - Wiki2 (SQLAlchemy + URL Dispatch) tutorial ``models.initialize_sql`` didn't match the ``pyramid_routesalchemy`` scaffold function of the same name; it didn't get synchronized when it was changed in the scaffold. | |||
| 2011-07-12 | - The ``Configurator.add_route`` method allowed two routes with the same | Chris McDonough | |
| route to be added without an intermediate ``config.commit()``. If you now receive a ``ConfigurationError`` at startup time that appears to be ``add_route`` related, you'll need to either a) ensure that all of your route names are unique or b) call ``config.commit()`` before adding a second route with the name of a previously added name or c) use a Configurator that works in ``autocommit`` mode. | |||
| 2011-07-12 | - Previously, If a ``BeforeRender`` event subscriber added a value via the | Chris McDonough | |
| ``__setitem__`` or ``update`` methods of the event object with a key that already existed in the renderer globals dictionary, a ``KeyError`` was raised. With the deprecation of the "add_renderer_globals" feature of the configurator, there was no way to override an existing value in the renderer globals dictionary that already existed. Now, the event object will overwrite an older value that is already in the globals dictionary when its ``__setitem__`` or ``update`` is called (as well as the new ``setdefault`` method), just like a plain old dictionary. As a result, for maximum interoperability with other third-party subscribers, if you write an event subscriber meant to be used as a BeforeRender subscriber, your subscriber code will now need to (using ``.get`` or ``__contains__`` of the event object) ensure no value already exists in the renderer globals dictionary before setting an overriding value. | |||
| 2011-07-12 | reviewed | Chris McDonough | |
| 2011-07-12 | warn about warnings in 2.7+ | Chris McDonough | |
| 2011-07-12 | fix sample | Chris McDonough | |
| 2011-07-12 | remove references to add_route view-related configuration | Chris McDonough | |
| 2011-07-12 | remove deprecated mechanism to associate views with routes; add description ↵ | Chris McDonough | |
| of scan mechanism | |||
| 2011-07-12 | add docs about logging config | Chris McDonough | |
| 2011-07-12 | add docs about logging config | Chris McDonough | |
| 2011-07-12 | remove unnecessary clause | Chris McDonough | |
| 2011-07-11 | simplify | Chris McDonough | |
| 2011-07-11 | add PyPy | Chris McDonough | |
| 2011-07-11 | add PyPy | Chris McDonough | |
| 2011-07-11 | convenience command | Chris McDonough | |
| 2011-07-11 | bad reference | Chris McDonough | |
| 2011-07-11 | simplify | Chris McDonough | |
| 2011-07-11 | we no longer support 24. | Chris McDonough | |
| 2011-07-11 | Decorator version of config.add_response_adapter. | Manuel Hermann | |
| 2011-07-11 | simplify | Chris McDonough | |
| 2011-07-11 | simplify wording | Chris McDonough | |
| 2011-07-11 | earlier info referenced later info, fix | Chris McDonough | |
| 2011-07-11 | move mention of controllers to end | Chris McDonough | |
| 2011-07-11 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-07-11 | move alternate calling convention to chapter bottom; fix reference | Chris McDonough | |
| 2011-07-10 | Merge pull request #229 from mmerickel/garden.webob-refs | Chris McDonough | |
| Modified docs to reference webob's new website. | |||
| 2011-07-10 | Modified docs to reference webob's new website. | Michael Merickel | |
| 2011-07-10 | Adding 'I' to example custom AuthenticationPolicy; it's an interface. | ejo | |
| 2011-07-10 | prep for 1.1b1 | Chris McDonough | |
| 2011-07-10 | add info to changes.txt and whatsnew about pshell changes; removed unused ↵ | Chris McDonough | |
| import and unwrap string | |||
| 2011-07-10 | Merge branch 'feature.pshell' of https://github.com/mmerickel/pyramid into ↵ | Chris McDonough | |
| mmerickel-feature.pshell | |||
| 2011-07-09 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-07-09 | make less confusing | Chris McDonough | |
| 2011-07-09 | Merge pull request #225 from ejo/patch-1 | Chris McDonough | |
| Minor wording change for accuracy | |||
