| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | 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 | use lingua in docs (thanks to wichert) | 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-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 | 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 | code refactoring for showing route->view relationship more correctly; tests ↵ | cguardia | |
| and docs for pull request | |||
| 2011-04-27 | Merge branch 'master' of https://github.com/Pylons/pyramid | cguardia | |
| 2011-04-25 | spell it out entirely | Chris McDonough | |
| 2011-04-25 | Merge branch 'master' of https://github.com/Pylons/pyramid | cguardia | |
| 2011-04-24 | Merge branch 'zodb-tutorial-test-reorg' of https://github.com/ppaez/pyramid ↵ | Chris McDonough | |
| into ppaez-zodb-tutorial-test-reorg | |||
| 2011-04-24 | Merge branch 'master' of https://github.com/jdnavarro/pyramid into ↵ | Chris McDonough | |
| jdnavarro-master | |||
| 2011-04-24 | fix rendering issue | Chris McDonough | |
| 2011-04-23 | BFG -> Pyramid | Danny Navarro | |
| 2011-04-22 | fix merge conflicts | Chris McDonough | |
| 2011-04-22 | - Make sure deprecation warnings aren't raised when tests are run. | Chris McDonough | |
| - Modify documentation for cross-referencing. - Use add_view(viewname) syntax rather than add_view(view=viewname) syntax for normalization. - Use warnings.warn rather than zope.deprecated in order to make testing easier. - Move tests which test deprecated methods of configurator to a separate test case. | |||
| 2011-04-22 | Merge branch 'disambiguate_add_route' of ↵ | Chris McDonough | |
| https://github.com/mmerickel/pyramid into mmerickel-disambiguate_add_route | |||
| 2011-04-22 | version bump | Chris McDonough | |
| 2011-04-21 | add 'adding a custom settings' | Chris McDonough | |
| 2011-04-20 | Sync with SQLAlchemy wiki tutorial | Patricio Paez | |
| 2011-04-20 | Adding Tests in the ZODB wiki tutorial | Patricio Paez | |
| - New section in the main index - Move Model and View tests there - Added Functional tests | |||
| 2011-04-20 | Fixed typos and added clarifications in a tutorial | Kirk Strauser | |
| I was working through the wiki2 tutorial this morning and found some slightly confusing bits. As I went along, I added the suggested changes to my local files to make them match the tutorial's version, but found several times that key parts were missing. I'm not new to Python so this didn't slow me down, but thought some clarifications might help new users. | |||
| 2011-04-20 | Upgraded the url dispatch tutorials to use add_view. | Michael Merickel | |
| 2011-04-20 | Converting docs to deprecate view parameters in config.add_route. | Michael Merickel | |
| 2011-04-19 | rendering | Chris McDonough | |
| 2011-04-19 | rendering | Chris McDonough | |
| 2011-04-19 | clarify | Chris McDonough | |
| 2011-04-18 | fixed makefile to update theme submodule correctly | cguardia | |
| 2011-04-18 | - Deprecated all assignments to ``request.response_*`` attributes such as | Chris McDonough | |
| ``request.response_content_type = 'foo'``. Assignments and mutations of the following request attributes that were considered by the framework for response influence are now deprecated: ``response_content_type``, ``response_headerlist``, ``response_status``, ``response_charset``, and ``response_cache_for``. Instead of assigning these to the request object for detection by the rendering machinery, users should use the appropriate API of the Response object created by accessing ``request.response`` (e.g. ``request.response_content_type = 'abc'`` -> ``request.response.content_type = 'abc'``). - Custom request objects are now required to have a ``response`` attribute (or reified property) if they are meant to be used with renderers. This ``response`` attribute should be an instance of the class ``pyramid.response.Response``. - The JSON and string renderer factories now use ``request.response.content_type`` rather than ``request.response_content_type``. They determine whether they should set the content type of the response by comparing the response's content type against the default (usually ``text/html``); if the content type is not the default, the renderer changes the content type (to ``application/json`` or ``text/plain`` for JSON and string renderers respectively). - Made it possible to assign to and delete ``pyramid.testing.DummyRequest.registry`` (bugfix). | |||
| 2011-04-18 | test adding theme as a submodule | cguardia | |
| 2011-04-16 | Consolidate two identical paragraphs | Patricio Paez | |
| 2011-04-16 | ZODB tutorial Adding Authorization reorganize | Patricio Paez | |
| - Sections sorted by general, views, templates - List steps in the introduction | |||
| 2011-04-16 | Improve ZODB tutorial (Adding Authorization) | Patricio Paez | |
| - Consolidate two sections and promote some to first level - Add a couple of terms | |||
| 2011-04-13 | - Add missing docs reference to | Chris McDonough | |
| ``pyramid.config.Configurator.set_view_mapper`` and refer to it within Hooks chapter section named "Using a View Mapper". | |||
| 2011-04-13 | - Make ``pyramid.interfaces.IAuthenticationPolicy`` and | Chris McDonough | |
| ``pyramid.interfaces.IAuthorizationPolicy`` public interfaces, and refer to them within the ``pyramid.authentication`` and ``pyramid.authorization`` API docs. - Render the function definitions for each exposed interface in ``pyramid.interfaces``. Closes #167. | |||
| 2011-04-11 | pyramid_sqla -> akhet | Chris McDonough | |
| 2011-04-11 | add description of MANIFEST.in | Chris McDonough | |
| 2011-04-11 | make prettier | Chris McDonough | |
| 2011-04-11 | fix improper use of :ref: (should have been :meth:) | Chris McDonough | |
| 2011-04-10 | Wrong attribute name; closes #146. | Chris McDonough | |
| 2011-04-01 | add patricio to list of contributors | Chris McDonough | |
| 2011-03-31 | Move Viewing the Application in a Browser up | Patricio Paez | |
| 2011-03-31 | Fix typos in the tutorials | Patricio Paez | |
| 2011-03-31 | Sync the Defining Views intro with the SQLAlchemy tutorial | Patricio Paez | |
