summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki
AgeCommit message (Collapse)Author
2013-01-20point to the sources of the wiki tutorials in just one location; fix #763Tshepang Lekhonkhobe
* This avoids having to update the link multiple times. * Also, mention their location, in case user has Pyramid checkout.
2013-01-02Reduce duplicated installation instructions from the tutorialsTshepang Lekhonkhobe
* This also removes the mention of running 'source bin/activate' (see #759).
2013-01-02eliminate other repeated wordsTshepang Lekhonkhobe
2013-01-01eliminate repeated "the" wordsTshepang Lekhonkhobe
2013-01-01"usernames" is a more correct termTshepang Lekhonkhobe
2012-12-13Improvements to the ZODB tutorial Tests chapterPatricio Paez
- Standardize with the SQL tutorial
2012-12-13Make ZODB tutorial functional tests passPatricio Paez
- Synchronize with the changes in pyramid_zodbdbconn in commit 64b0c468d4ae320d720d03d0cbc8e9a0b0e42f1f
2012-12-01Update line referencesPatricio Paez
- In the Basic Layout and Authorization chapters of the ZODB wiki tutorial
2012-12-01Sync ZODB tutorial source files with the scaffoldPatricio Paez
2012-11-22Sync the tutorial docs for the transaction dependencyPatricio Paez
2012-11-20adding transaction module requirement to zodb wiki docsericrasmussen
2012-11-20More sync on ZODB wiki tutorialPatricio Paez
- literalinclude should refer to the file in the corresponding section - Remove extra lines
2012-11-19Sync some ZODB wiki tutorial files with the scaffoldPatricio Paez
- Files that are not referred to in a literalinclude in the tutorial docs - setup.py and development.ini appear in a literalinclude but no lines are emphasized and there is no impact.
2012-11-04merged SHA512AuthTktAuthenticationPolicy into AuthTktAuthenticationPolicyMichael Merickel
AuthTktAuthenticationPolicy now accepts a hashalg parameter and is no longer deprecated. Docs recommend overriding hashalg and using 'sha512'.
2012-11-04fix docs, upgrade tutorials, add change note, deprecate using ↵Chris McDonough
zope.deprecation instead of a warning, make hashalg arg a kwarg in certain cases in case someone (maybe me) is using nonapi function imports from authentication
2012-09-17resolve contributors.txt merge conflictChris McDonough
2012-09-11Change variable name ``name`` to ``pagename`` in ZODB tutorialPatricio Paez
2012-08-04add quotes for clarityDaniel Haaker
2012-07-29prettify CSS stored in docs tutorialsDavid Gay
2012-07-29correct typo 'snall' to 'small'David Gay
2012-04-29Normalize 'Make a project' on both wiki tutorialsPatricio Paez
2012-04-28Link the first usage of "scaffold" to its definition in the glossary.Steve Piercy
2012-04-16Normalize and update the last sectionPatricio Paez
2012-04-13Simplify the introductionPatricio Paez
- Moved the selection of the templates to the Design chapter - Improved the Views section in the Design chapter - Normalize in both tutorials
2012-04-12Improve the Adding Templates section in both tutorialsPatricio Paez
- As suggested by Paulo in the PyCon sprint
2012-04-08Final detailsPatricio Paez
- Normalize the Seeing our changes section - Changed import to recommended style
2012-04-08Normalize Authorization in both tutorials 4Patricio Paez
- Sync content of Add login and logout views, Add the login.pt template, Return a logged_in flag, Add a logout link sections - Normalize sections of views.py
2012-04-08Normalize Authorization in both tutorials 3Patricio Paez
- Sync content in Adding Authentication and Authorization policies, Add permission declarations sections - Added mising permission=view in SQL tutorial - Moved __init__.py listing to Seeing our changes
2012-04-07Normalize Authorization in both tutorials 2Patricio Paez
- Sync content of Add users and groups, and Add an ACL. - Added yellow highlight to listings in Seeing our changes, added models.py
2012-04-07Ordered sections as per the summaryPatricio Paez
2012-04-07Normalize Authorization in both tutorials 1Patricio Paez
- Sync the content of the introduction and the Viewing the Application in a Browser sections - Sync the section structure
2012-03-17warn about python 3Chris McDonough
2012-03-17- Remove references to do-nothing ``pyramid.debug_templates`` setting in allChris McDonough
Pyramid-provided ``.ini`` files. This setting previously told Chameleon to render better exceptions; now Chameleon always renders nice exceptions regardless of the value of this setting. Fixes #491.
2012-03-17normalize zodb tut design doc with text from sqla design docChris McDonough
2012-03-17normalize zodb tut design doc with text from sqla design docChris McDonough
2012-03-17link to tests stage sourceChris McDonough
2012-03-17master->1.3-branchChris McDonough
2012-03-16use the 1.3-branch urls for sources in tutorialChris McDonough
2012-03-12Added links to Starting the ApplicationPatricio 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-12Added the Design chapter on both wiki tutorialsPatricio Paez
2012-02-22- New API: ``pyramid.config.Configurator.add_forbidden_view``. This is aChris 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.
2012-02-19- Put ``pyramid.includes`` targets within ini files in scaffolds on separateChris McDonough
lines in order to be able to tell people to comment out only the ``pyramid_debugtoolbar`` line when they want to disable the toolbar.
2012-01-29show decorators along with view callables, fixes #393Chris McDonough
2012-01-19use method-based setting of authorization and authentication policy (see ↵Chris McDonough
issue #398)
2012-01-02- Use the ``waitress`` WSGI server instead of ``wsgiref`` in scaffolding.Chris McDonough
2011-12-27gardenMichael Merickel
2011-11-28move code from login.py to views.py (like sqla tutorial)Chris McDonough
2011-11-26output warning to use populate command to console after alchemy scaffold ↵Chris McDonough
rendering; emit logging statements when populate is run
2011-11-18- Fix ZODB tutorial docs to match ZODB tutorial code (I removed program nameChris McDonough
from ``scan``).
2011-11-11make more relocatableChris McDonough