Metadata-Version: 1.0
Name: z3c.hashedresource
Version: 1.0
Summary: Provides URLs for resources that change whenever their content changes.
Home-page: http://pypi.python.org/pypi/z3c.hashedresource
Author: Wolfgang Schnerring
Author-email: ws@gocept.com
License: ZPL 2.1
Description: ==================
        z3c.hashedresource
        ==================
        
        While we want browsers to cache static resources such as CSS-stylesheets and
        JavaScript files, we also want them *not* to use the cached version if the
        files on the server have been updated. (And we don't want to make end-users
        have to empty their browser cache to get the latest version. Nor explain how
        to do that over the phone every time.)
        
        To make browsers update their caches of resources immediately when the
        resource changes, the absolute URLs of resources can now be made to contain a
        hash of the resource's contents, so it will look like
        /++noop++12345/@@/myresource instead of /@@/myresource.
        
        In developer mode the hash is recomputed each time the resource is asked for
        its URL, while in production mode the hash is computed only once, so remember
        to restart the server after changing resource files (else browsers will still
        see the old URL unchanged and use their outdated cached versions of the files).
        
        To use this package, include its configure.zcml and use
        `z3c.hashedresource.interfaces.IHashedResourceSkin` or a skin that inherits from
        it.
        
        =======
        CHANGES
        =======
        
        1.0 (2009-06-16)
        ================
        
        - first released version
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
Classifier: Framework :: Zope3
