summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
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-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
2012-06-19point at pyramid_beaker docs rather than its github pageChris McDonough
2012-06-19fixed typosBlaise Laflamme
2012-06-19fixed typosBlaise Laflamme
2012-06-19added docs and changes for using defs in mako rendererBlaise Laflamme
2012-06-17merge contributorsChris McDonough
2012-06-17docs: Add view callable example to section on rendering_val.Jeff Cook
2012-06-13Merge pull request #610 from fabianbuechler/patch-1Chris McDonough
Fixed errors in URL dispatch docs in "Using a Route Prefix to Compose Applications" section
2012-06-12docs reference setup_logging instead of fileConfigMichael Merickel
2012-06-07Update documentation to clarify purpose of BeforeRender.rendering_val.Jeff Cook
2012-05-31Added missing word "name" Zeb Palmer
2012-05-23Fixed a few glitches in the "Using a Route Prefix to Compose Applications" ↵Fabian Büchler
section of the docs/narr/urldispatch.rst docs.
2012-05-15Fixed spelling errors and double backslash in `C:\`.Bryce Boe
2012-05-12configurator, not configurationChris McDonough
2012-05-12remove uses-interfaces-too-liberally (this was only true of bfg) and update ↵Chris McDonough
dependencies section
2012-05-11add link to explanationChris McDonough
2012-05-09Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2012-05-09activate sphinx.ext.viewcode extensionChris McDonough
2012-05-07Two grammatical fixesPatricio Paez
2012-05-06added sphinx theme as submodule, added rtd hack to update themeBlaise Laflamme
2012-05-04add python 3 as a uniquenessChris McDonough
2012-05-04gardenChris McDonough
2012-05-04add introspection to whats uniqueChris McDonough
2012-05-03allow __json__ and custom adapters to accept request argChris McDonough
2012-05-03Merge branch 'master' into feature.json-apiMichael Merickel