From 084536a9bec1237fabd63fe69a6c17806c9cde53 Mon Sep 17 00:00:00 2001 From: Theofanis Despoudis Date: Thu, 1 Nov 2018 15:15:13 +0000 Subject: [PATCH] Fixed #27994 -- Documented ManifestFilesMixin. --- docs/ref/contrib/staticfiles.txt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/ref/contrib/staticfiles.txt b/docs/ref/contrib/staticfiles.txt index ef85c7959f..10a8adfccf 100644 --- a/docs/ref/contrib/staticfiles.txt +++ b/docs/ref/contrib/staticfiles.txt @@ -400,6 +400,14 @@ simply specify a custom entry in the :setting:`CACHES` setting named required to ensure that the file hash is correct in the case of nested file paths. +``ManifestFilesMixin`` +---------------------- + +.. class:: storage.ManifestFilesMixin + +Use this mixin with a custom storage to append the MD5 hash of the file's +content to the filename as :class:`~storage.ManifestStaticFilesStorage` does. + Finders Module ==============