| Age | Commit message (Collapse) | Author |
|
redux of #2013
|
|
This reverts commit 7410250313f893e5952bb2697324a4d4e3d47d22.
This reverts commit cbec33b898efffbfa6acaf91cae45ec0daed4d7a.
This reverts commit 345ca3052c395545b90fef9104a16eed5ab051a5, reversing
changes made to 47162533af84bb8d26db6d1c9ba1e63d70e9070f.
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|