| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-03-13 | Wording improvements to Defining Views section of tutorial. | Audrey Roy | |
| 2012-03-13 | Wording improvements to Defining Views section of tutorial. | Audrey Roy | |
| 2012-03-13 | Merge pull request #480 from ppaez/typos | Chris McDonough | |
| Typos | |||
| 2012-03-13 | Typos | Patricio Paez | |
| 2012-03-13 | Merge pull request #478 from ↵ | Chris McDonough | |
| shentonfreude/shentonfreude/bug.sqltut-test-populate-settings Shentonfreude/bug.sqltut test populate settings | |||
| 2012-03-13 | Merge remote-tracking branch 'upstream/master' into ↵ | Chris Shenton | |
| shentonfreude/bug.sqltut-test-populate-settings | |||
| 2012-03-13 | Show modification to scripts/populate.py to accept memory DB URI | Chris Shenton | |
| The text didn't describe editing the populate.py to accept an optional ``settings`` argument, which _callFUT() in tests.py passed in. This is used to specify a memory-backed SQLite DB which we can wipe-n-load during testing. Show how to replace main() in populate.py per our source code to accept this argument, and use it to set the DB URI; it also uses our Page model. | |||
| 2012-03-13 | Improved the Authorization chapter | Patricio Paez | |
| - Highlighted the added lines in the listings - Simplified 'Viewing the application in a browser' and added link to Starting the application | |||
| 2012-03-13 | Sync section titles with the summary | Patricio Paez | |
| 2012-03-13 | Improved the Authorization chapter | Patricio Paez | |
| - Added a summary of the steps - Fixed a couple of typos | |||
| 2012-03-13 | Merge pull request #474 from ppaez/wiki-documentation | michr | |
| Clarify two steps in the SQL wiki tutorial | |||
| 2012-03-12 | The import also has changed and needs to be edited by the user, so I ↵ | Audrey Roy | |
| highlighted it. | |||
| 2012-03-12 | Clarify two steps in the SQL wiki tutorial | Patricio Paez | |
| - Highlight the added or changed lines | |||
| 2012-03-12 | More clarification, telling the user to open specified files. | Audrey Roy | |
| 2012-03-12 | Clarified which files to open/edit. Highlighted the lines to be edited in ↵ | Audrey Roy | |
| models.py. | |||
| 2012-03-12 | Merge pull request #471 from ppaez/wiki-documentation | Carlos de la Guardia | |
| Added links to 'Starting the Application' | |||
| 2012-03-12 | More concise views.py section. | Audrey Roy | |
| 2012-03-12 | Added links to Starting the Application | Patricio Paez | |
| - Sections 'Viewing the Application in a Browser' in the 'Defining the Domain Model' and 'Defining the Views' chapters now offer a quick link in both wiki tutorials, as suggested by Paulo. | |||
| 2012-03-12 | Added the Design chapter on both wiki tutorials | Patricio Paez | |
| 2012-03-11 | only self | Chris McDonough | |
| 2012-03-11 | view class methods were missing self parameter. | Carlos de la Guardia | |
| 2012-03-05 | add_traverser | Chris McDonough | |
| 2012-03-04 | point people at pylons-discuss rather than pylons-devel | Chris McDonough | |
| 2012-03-04 | garden titles of index | Chris McDonough | |
| 2012-03-03 | untangle impacts of python 3 compat | Chris McDonough | |
| 2012-03-02 | Merge branch '1.3-branch' | Chris McDonough | |
| 2012-03-02 | Correct section name in pshell example. | Martijn Pieters | |
| The section in the example is called 'app:main', not 'app:MyProject'. | |||
| 2012-03-02 | Correct minor grammatical error. | Martijn Pieters | |
| 2012-03-02 | Merge pull request #455 from rspivak/ae6d08b96d3a366f979719c05926dc5292d904d3 | Chris McDonough | |
| Finished callbacks documentation update | |||
| 2012-03-02 | Remove some confusion about finished callbacks. | Ruslan Spivak | |
| Rework an example code and remove an incorrect statement about request.exception being set when an exception occurs in a view. The reason for the change is issue #454: https://github.com/Pylons/pyramid/issues/454 | |||
| 2012-03-02 | prep for 1.3b2 | Chris McDonough | |
| 2012-03-02 | point at sqla bug | Chris McDonough | |
| 2012-03-01 | Merge branch 'master' into 1.3-branch | Chris McDonough | |
| 2012-03-01 | wrong class name, fixes #451 | Chris McDonough | |
| 2012-03-01 | Remove mention of the `root_factory` argument. | Martijn Pieters | |
| The example code earlier on the page does not use the `root_factory` argument, only the `settings` argument. This is a fix for pyramid issue #452. | |||
| 2012-02-29 | fix decorators | Chris McDonough | |
| 2012-02-26 | prep for 1.3b1 | Chris McDonough | |
| 2012-02-26 | fix instance creation | Chris McDonough | |
| 2012-02-26 | make latex render again | Chris McDonough | |
| 2012-02-24 | docs-deprecate tmpl_context | Chris McDonough | |
| 2012-02-24 | Merge branch 'master' into 1.3-branch | Chris McDonough | |
| 2012-02-24 | More trivial typos | Paul Winkler | |
| 2012-02-24 | Trivial typos | Paul Winkler | |
| 2012-02-23 | fix | Chris McDonough | |
| 2012-02-22 | prep for 1.3a9 | Chris McDonough | |
| 2012-02-22 | fix | Chris McDonough | |
| 2012-02-22 | allow user to pass content type and encoding, change favicon example to use ↵ | Chris McDonough | |
| FileResponse | |||
| 2012-02-22 | - New APIs: ``pyramid.response.FileResponse`` and | Chris McDonough | |
| ``pyramid.response.FileIter``, for usage in views that must serve files "manually". | |||
| 2012-02-22 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-02-22 | - New API: ``pyramid.config.Configurator.add_forbidden_view``. This is a | Chris McDonough | |
| wrapper for ``pyramid.Config.configurator.add_view`` which does the right thing about permissions. It should be preferred over calling ``add_view`` directly with ``context=HTTPForbidden`` as was previously recommended. - New API: ``pyramid.view.forbidden_view_config``. This is a decorator constructor like ``pyramid.view.view_config`` that calls ``pyramid.config.Configurator.add_forbidden_view`` when scanned. It should be preferred over using ``pyramid.view.view_config`` with ``context=HTTPForbidden`` as was previously recommended. - Updated the "Creating a Not Forbidden View" section of the "Hooks" chapter, replacing explanations of registering a view using ``add_view`` or ``view_config`` with ones using ``add_forbidden_view`` or ``forbidden_view_config``. - Updated all tutorials to use ``pyramid.view.forbidden_view_config`` rather than ``pyramid.view.view_config`` with an HTTPForbidden context. | |||
