summaryrefslogtreecommitdiff
path: root/docs/glossary.rst
AgeCommit message (Collapse)Author
2014-02-10- Garden PR #1121Steve Piercy
2013-10-02rearrange the fixChris McDonough
2013-10-02fix the docs build and get rid of stray references to BeakerChris McDonough
2013-09-08- The ``renderer_globals_factory`` argument to theChris McDonough
``pyramid.config.Configurator` constructor and its ``setup_registry`` method has been removed. The ``set_renderer_globals_factory`` method of ``pyramid.config.Configurator`` has also been removed. The (internal) ``pyramid.interfaces.IRendererGlobals`` interface was also removed. These arguments, methods and interfaces had been deprecated since 1.1. Use a ``BeforeRender`` event subscriber as documented in the "Hooks" chapter of the Pyramid narrative documentation instead of providing renderer globals values to the configurator.
2013-08-06Up through JSON.Paul Everitt
2013-04-28use a cross-ref instead of a raw linkTshepang Lekhonkhobe
2013-04-06fix some cross-referencesTshepang Lekhonkhobe
Also, pyramid_zcml is cross-referenced, so add it to intersphinx_mapping dict.
2013-04-01Consistently link middleware term to the glossaryCatalin Iacob
2013-03-28fix linkTshepang Lekhonkhobe
2013-03-25improve description; fix linkTshepang Lekhonkhobe
2013-03-22rm unused glossary entryTshepang Lekhonkhobe
2013-03-16improve description; fix spellingTshepang Lekhonkhobe
2013-03-13consistency: use $VENV whenever virtualenv binaries are usedTshepang Lekhonkhobe
2013-03-12Merge pull request #896 from tshepang/consistencyMichael Merickel
consistency fixes
2013-03-12Merge pull request #872 from tshepang/virtualenvMichael Merickel
virtualenv refers both to the tool and the concept
2013-03-12Merge pull request #885 from tshepang/hyperlinksMichael Merickel
fix/update hyperlinks
2013-03-09capitalize; add term roleTshepang Lekhonkhobe
2013-03-05typoTshepang Lekhonkhobe
2013-03-05update linksTshepang Lekhonkhobe
2013-03-05fix linksTshepang Lekhonkhobe
2013-03-05make it clear where the link goesTshepang Lekhonkhobe
2013-03-05update linkTshepang Lekhonkhobe
2013-02-24virtualenv refers both to the tool and the conceptTshepang Lekhonkhobe
2013-01-30Updated gunicorn informationAnton Vlasenko
2013-01-19missing commaTshepang Lekhonkhobe
2013-01-04typosTshepang Lekhonkhobe
2013-01-02eliminate other repeated wordsTshepang Lekhonkhobe
2012-10-26- New ``physical_path`` view predicate. If specified, this value should be aChris McDonough
string or a tuple representing the physical traversal path of the context found via traversal for this predicate to match as true. For example: ``physical_path='/'`` or ``physical_path='/a/b/c'`` or ``physical_path=('', 'a', 'b', 'c')``. This is not a path prefix match or a regex, it's a whole-path match. It's useful when you want to always potentially show a view when some object is traversed to, but you can't be sure about what kind of object it will be, so you can't use the ``context`` predicate. The individual path elements inbetween slash characters or in tuple elements should be the Unicode representation of the name of the resource and should not be encoded in any way.
2012-09-19A ``check_csrf`` view predicate was added. For example, you can now doChris McDonough
``config.add_view(someview, check_csrf=True)``. When the predicate is checked, if the ``csrf_token`` value in ``request.params`` matches the csrf token in the request's session, the view will be permitted to execute. Otherwise, it will not be permitted to execute.
2012-09-16update docs to recommend 2.7, add distribute-related instructions for python ↵Chris McDonough
3, add windows instructions for python 3, closes #653
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-06add docs for third-party view predicatesChris McDonough
2012-04-28expand glossary term for scaffoldSteve Piercy
2012-04-13Fixed wsgi.org URLPatricio Paez
2012-02-14Update Akhet definition.Mike Orr
2012-01-18untangle some docs about using alternate wsgi servers (divide into 2 ↵Chris McDonough
sections, one about pserve, the other about waitress vs. others)
2011-12-08- New APIs: ``pyramid.path.AssetResolver`` andChris McDonough
``pyramid.path.DottedNameResolver``. The former can be used to resolve asset specifications, the latter can be used to resolve dotted names to modules or packages.
2011-12-04merge feature.introspection branchChris McDonough
2011-12-03break out 'extending config' into exconfig and add stuff about the action ↵Chris McDonough
method; move startup and router chapters to earlier in toc
2011-12-01https://docs.pylonsproject.org to http://docs.pylonsproject.org as ↵Chris Davies
readthedocs.org doesn't support https
2011-11-27- The SQLAlchemy Wiki tutorial has been updated. It now usesChris McDonough
``@view_config`` decorators and an explicit database population script. Closes #359.
2011-11-21degenshiChris McDonough
2011-10-06remove stray references to PasteChris McDonough
2011-10-06remove all reference to the paster command-line utilityChris McDonough
2011-09-04provide links to implementations from glossary entries where possible. ↵Chris McDonough
Closes #142
2011-08-28clean up inappropriate discussions of ZCMLChris McDonough
2011-08-25use routes in firstapp as they are more familar to most and put hello world ↵Dylan Jay
on the front page to make grab framework shoppers attention.
2011-08-13mention pyramid_exclogChris McDonough
2011-08-13- Projects created via a scaffold no longer depend on the ``WebError``Chris McDonough
package at all; configuration in the ``production.ini`` file which used to require its ``error_catcher`` middleware has been removed. Configuring error catching / email sending is now the domain of the ``pyramid_exclog`` package (see https://docs.pylonsproject.org/projects/pyramid_exclog/dev/).
2011-08-11mod->termChris McDonough