| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-04-12 | - use an environment variable and venv. See ↵ | Steve Piercy | |
| https://github.com/Pylons/pyramid/pull/2468#discussion_r59311019 - rename stanza from `testing_extras` to `tests_require` - switch from nose to pytest | |||
| 2016-04-11 | remove theme.min.css, it serves no purpose | Michael Merickel | |
| 2016-04-11 | fix readme to show directions in both alchemy and zodb | Michael Merickel | |
| 2016-04-10 | - update wiki tests step and its src files | Steve Piercy | |
| - add test_referrer_is_login() to provide 100% coverage | |||
| 2016-04-10 | - update wiki authorization step and its src files | Steve Piercy | |
| - trim index | |||
| 2016-04-10 | - update definingviews and its src files | Steve Piercy | |
| - fix css in zodb scaffold and wiki tutorial previous steps | |||
| 2016-04-09 | update basiclayout and its src | Steve Piercy | |
| 2016-04-09 | update basiclayout and its src | Steve Piercy | |
| 2016-04-09 | - add src/installation files | Steve Piercy | |
| 2016-02-23 | Use correct attribute name in the ZODB Wiki tutorial view template. | Tres Seaver | |
| 2015-05-27 | - clean up and make consistent across wiki tutorials | Steve Piercy | |
| - update templates and static assets for new design | |||
| 2015-05-27 | - clean up and make consistent across both wikis authorization.rst | Steve Piercy | |
| - update templates and static assets to new theme | |||
| 2015-05-26 | - clean up and make defininingviews consistent between two wiki tutorials | Steve Piercy | |
| - sort imports to be consistent with scaffold setup.py - update templates, static assets | |||
| 2015-05-25 | update template and static assets to current | Steve Piercy | |
| 2015-05-25 | update static assets, mytemplate.pt, caps | Steve Piercy | |
| 2014-04-08 | Drop setup.cfg from scaffolds | Wichert Akkerman | |
| Since setup.cfg is no longer needed for Babel, and no scaffold or documentation references nose there is no need to keep them. | |||
| 2014-04-08 | Remove Babel from all setup.cfg files | Wichert Akkerman | |
| 2013-11-09 | undeprecate remember/forget functions and remove ↵ | Chris McDonough | |
| remember_userid/forget_userid methods from request | |||
| 2013-10-30 | copy forward views.py changes to tests step | Chris McDonough | |
| 2013-10-30 | fix zodb tutorial wrt request-based authentication and authorization apis | Chris McDonough | |
| 2013-10-14 | make these tests pass on python 3.2+ | Chris McDonough | |
| 2013-09-06 | update the code in the wiki and wiki2 tutorials to use pyramid_chameleon | Michael Merickel | |
| 2013-08-03 | "Web Application Development Framework" -> "Web Framework". Yay. | Paul Everitt | |
| 2013-04-23 | replace deprecated method | Tshepang Lekhonkhobe | |
| 2013-04-02 | remove copyright bits from the tutorial examples | Tshepang Lekhonkhobe | |
| We don't want to have to keep remembering these if there's a change, and apparently it's also overkill, according to https://github.com/Pylons/pyramid/pull/953#issuecomment-15654314. | |||
| 2013-03-04 | fix #311 | Tshepang Lekhonkhobe | |
| 2012-12-13 | Make ZODB tutorial functional tests pass | Patricio Paez | |
| - Synchronize with the changes in pyramid_zodbdbconn in commit 64b0c468d4ae320d720d03d0cbc8e9a0b0e42f1f | |||
| 2012-12-01 | Sync ZODB tutorial source files with the scaffold | Patricio Paez | |
| 2012-11-20 | adding transaction module requirement to zodb wiki docs | ericrasmussen | |
| 2012-11-20 | More sync on ZODB wiki tutorial | Patricio Paez | |
| - literalinclude should refer to the file in the corresponding section - Remove extra lines | |||
| 2012-11-19 | Sync some ZODB wiki tutorial files with the scaffold | Patricio 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-04 | merged SHA512AuthTktAuthenticationPolicy into AuthTktAuthenticationPolicy | Michael Merickel | |
| AuthTktAuthenticationPolicy now accepts a hashalg parameter and is no longer deprecated. Docs recommend overriding hashalg and using 'sha512'. | |||
| 2012-11-04 | fix 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-17 | resolve contributors.txt merge conflict | Chris McDonough | |
| 2012-09-11 | Change variable name ``name`` to ``pagename`` in ZODB tutorial | Patricio Paez | |
| 2012-07-29 | prettify CSS stored in docs tutorials | David Gay | |
| 2012-07-29 | correct typo 'snall' to 'small' | David Gay | |
| 2012-04-08 | Final details | Patricio Paez | |
| - Normalize the Seeing our changes section - Changed import to recommended style | |||
| 2012-04-08 | Normalize Authorization in both tutorials 4 | Patricio 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-08 | Normalize Authorization in both tutorials 3 | Patricio 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-03-17 | - Remove references to do-nothing ``pyramid.debug_templates`` setting in all | Chris 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-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. | |||
| 2012-02-19 | - Put ``pyramid.includes`` targets within ini files in scaffolds on separate | Chris 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-19 | use 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-11-28 | move code from login.py to views.py (like sqla tutorial) | Chris McDonough | |
| 2011-11-18 | - Fix ZODB tutorial docs to match ZODB tutorial code (I removed program name | Chris McDonough | |
| from ``scan``). | |||
| 2011-11-11 | make more relocatable | Chris McDonough | |
| 2011-11-10 | Remove gratuitous whitespace. | kenmanheimer | |
| 2011-11-10 | Convert absolute 'tutorial' package references that are from within the | kenmanheimer | |
| package to relative ones, to reduce brittleness, eg when the user names the package something other than 'tutorial'. - make imports relative - use plain relative URLs for resources (like stylesheets and images) in page templates. This is the last batch of this kind of change that I know about. I've exercised the changes (via the browser and the test target) in a package with an alternate name, 'zodbtutorial', as well as in a package with the default name, 'tutorial'. | |||
