summaryrefslogtreecommitdiff
path: root/docs/glossary.rst
AgeCommit message (Collapse)Author
2016-03-30update installation and glossarySteve Piercy
2016-03-08rewrite renderer glossary entry to read more easilySteve Piercy
2016-02-20fix links for babel and chameleonSteve Piercy
2016-01-30clean up principal and userid glossary entries for grammar, rst syntaxSteve Piercy
2016-01-14Rename Cookbook to Pyramid Community CookbookSteve Piercy
- use .rst intersphinx labels for pages instead of broken URLs
2016-01-08revert glossary entry name for tox on 3.5. I'll get this on a massive update ↵Steve Piercy
on another pass. See https://github.com/Pylons/pyramid_cookbook/issues/155
2016-01-08update glossary with cookbook rst syntax. closes #2215Steve Piercy
2015-12-26Update glossary.rstBastien
fixed typo (cherry picked from commit 0a5c9a2)
2015-11-12update cache buster prose and add ManifestCacheBusterMichael Merickel
redux of #2013
2015-11-12Revert "fix/remove-default-cachebusters"Michael Merickel
This reverts commit 7410250313f893e5952bb2697324a4d4e3d47d22. This reverts commit cbec33b898efffbfa6acaf91cae45ec0daed4d7a. This reverts commit 345ca3052c395545b90fef9104a16eed5ab051a5, reversing changes made to 47162533af84bb8d26db6d1c9ba1e63d70e9070f.
2015-11-12complete cache buster docs using manifest exampleMichael Merickel
2015-02-07move the IResponseFactory into the public apiMichael Merickel
2015-01-01Fix typoJohn Anderson
2015-01-01Mkae the response factory a factory that takes a requestJohn Anderson
2014-12-27basic docs cleanupJohn Anderson
2014-11-10Merge branch 'master' into feature.security-docs-enhancementsMichael Merickel
2014-11-09- add Translation Context term to Glossary to allow Sphinx to build docs, in ↵Steve Piercy
reference to a recent update in the docstrings to the package translationstring https://github.com/Pylons/translationstring/blame/master/translationstring/__init__.py#L50
2014-08-13some tweaks to the usage of userid in the docsMichael Merickel
2014-08-12Docs: Introduce the concept of "userid" into the glossary.Karl O. Pinc
2014-05-03- spellingSteve Piercy
2014-04-08Update Lingua glossary item.Wichert Akkerman
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.