summaryrefslogtreecommitdiff
path: root/docs/api/static.rst
AgeCommit message (Collapse)Author
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-10-21first cut at removing default cache bustersMichael Merickel
2015-02-17remove the token from the ICacheBuster apiMichael Merickel
This exposes the QueryStringCacheBuster and PathSegmentCacheBuster public APIs alongside the md5-variants. These should be more cleanly subclassed by people wishing to extend their implementations.
2014-07-28Mo' features, mo' problems.Chris Rossi
2014-07-18Take mcdonc's advice. This should be easier for users to understand.Chris Rossi
2014-07-17Write the documentation.Chris Rossi
2011-07-14- New API class: ``pyramid.static.static_view``. This supersedes theChris McDonough
deprecated ``pyramid.view.static`` class. ``pyramid.satic.static_view`` by default serves up documents as the result of the request's ``path_info``, attribute rather than it's ``subpath`` attribute (the inverse was true of ``pyramid.view.static``, and still is). ``pyramid.static.static_view`` exposes a ``use_subpath`` flag for use when you don't want the static view to behave like the older deprecated version. - The ``pyramid.view.static`` class has been deprecated in favor of the newer ``pyramid.static.static_view`` class. A deprecation warning is raised when it is used. You should replace it with a reference to ``pyramid.static.static_view`` with the ``use_subpath=True`` argument.