summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2012-09-15add pyramid.decorator.reify as an API. Closes #682Chris McDonough
2012-09-15Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2012-09-15point at cookbookChris McDonough
2012-09-13Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2012-09-13remove selinux caveatChris McDonough
2012-09-13hailmaryChris McDonough
2012-09-13mention non-support of SELinux-enabled systemsChris McDonough
2012-09-13remove chmodChris McDonough
2012-09-13wordingChris McDonough
2012-09-13docs renderingChris McDonough
2012-09-13Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2012-09-13add upgrading chapter, make docs render againChris McDonough
2012-09-11Merge pull request #687 from ppaez/tutcodefixPatricio Paez
Complete changes for issue #652
2012-09-11Change variable name ``name`` to ``pagename`` in ZODB tutorialPatricio Paez
2012-09-10change variable name ``name`` to ``pagename``Patricio Paez
- In the authorization and tests stages
2012-09-09rename set_request_method to add_request_method. closes #683Chris McDonough
2012-09-09- The ``pyramid.settings.get_settings()`` API was removed. It had beenChris McDonough
printing a deprecation warning since Pyramid 1.0. If your code depended on this API, use ``pyramid.threadlocal.get_current_registry().settings`` instead or use the ``settings`` attribute of the registry available from the request (``request.registry.settings``).
2012-09-09remove docs for chameleon_zpt and chameleon_text (gone)Chris McDonough
2012-08-30Fixed broken link in docs/narr/testing.rstRonan Amicel
Fixed link to "Dive into Python" (previous mirror is down).
2012-08-29close parenChris McDonough
2012-08-29add newness markersChris McDonough
2012-08-29wordingChris McDonough
2012-08-29add docs about chameleon zpt macro featureChris McDonough
2012-08-25Subscriber predicates:Chris McDonough
- Add ``add_subscriber_predicate`` method to Configurator. - Allow ``add_subscriber`` and ``subscriber`` venusian decorator to accept ``**predicates`` arguments. - Document subscriber predicate feature. - Share more code between view, route, and subscriber related method wrt predicates.
2012-08-23exposed the serve_forever line to the helloworld narrativeMichael Merickel
2012-08-23Merge branch 'master' of https://github.com/virhilo/pyramid into pull.650Michael Merickel
2012-08-23Fixed typo in docs/narr/views.rstRonan Amicel
2012-08-16readd set_request_property to docs (just so when people run across it in ↵Chris McDonough
in-the-wild code they're not totally confused); we'll remove it later
2012-08-16docs-deprecated set_request_propertyMichael Merickel
2012-08-15- An ``add_permission`` directive method was added to the Configurator. ThisChris McDonough
directive registers a free-standing permission introspectable into the Pyramid introspection system. Frameworks built atop Pyramid can thus use the the ``permissions`` introspectable category data to build a comprehensive list of permissions supported by a running system. Before this method was added, permissions were already registered in this introspectable category as a side effect of naming them in an ``add_view`` call, this method just makes it possible to arrange for a permission to be put into the ``permissions`` introspectable category without naming it along with an associated view. Here's an example of usage of ``add_permission``:: config = Configurator() config.add_permission('view')
2012-08-14Typo pwteens -> ptweensKees Hink
2012-08-11get heading levels rightChris McDonough
2012-08-06move stuff from config.util to registry so it can be a set of API (which are ↵Chris McDonough
now documented), resolve deferred discriminators in introspectable.register so that a directive can depend on a deferred discriminator, put head-adding code in predicate instead of in add_view itself
2012-08-06Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2012-08-06add as-of-version notesChris McDonough
2012-08-06gardenMichael Merickel
2012-08-06Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2012-08-06Merge branch 'feature.metaviewpredicates'Chris McDonough
2012-08-06add docs for third-party view predicatesChris McDonough
2012-08-05fixed line numbers in firstappŁukasz Fidosz
2012-08-04change variable name ``name`` to ``pagename``, for consistency with the ↵Daniel Haaker
view_page function (and the matchdict key for that matter)
2012-08-04add quotes for clarityDaniel Haaker
2012-08-04fix two minor typos in docsDaniel Haaker
2012-08-03fixed indentation in narr/helloworld.pyŁukasz Fidosz
2012-08-03no period required hereChris McDonough
2012-08-03Removing easy_install and demoing lines from index example. firstapp has ↵Wayne Witzel III
installation chapter links and having peopel using pyramid outside a virtualenv is a bad idea
2012-08-03Adding helpful link to installing chapter from first appWayne Witzel III
2012-08-02closes #643Chris McDonough
2012-07-25add logging call to wsgi setupMichael Merickel
2012-07-21corrected table name tables->pagesSiddhartha Kasivajhula