Opened 7 years ago

Closed 5 years ago

Last modified 5 years ago

#27994 closed New feature (fixed)

Document contrib.staticfiles.storage.ManifestFilesMixin

Reported by: GabrielDumbrava Owned by: Theofanis Despoudis
Component: Documentation Version: 1.10
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: yes
Easy pickings: no UI/UX: no

Description

There is no documentation for ManifestFilesMixin and it's very helpful. I've used it with S3BotoStorage to add hashes to static files.

Maybe other users might also find it useful.

from storages.backends.s3boto import S3BotoStorage
from django.contrib.staticfiles.storage import ManifestFilesMixin

class ManifestS3Storage(ManifestFilesMixin, S3BotoStorage):
    pass

Change History (7)

comment:1 by Tim Graham, 7 years ago

Summary: Please add documentation for ManifestFilesMixinDocument contrib.staticfiles.storage.ManifestFilesMixin
Triage Stage: UnreviewedAccepted

comment:2 by Theofanis Despoudis, 7 years ago

Owner: changed from nobody to Theofanis Despoudis
Status: newassigned

Hi, I would like to claim this ticket as my First Contribution!

comment:4 by Tim Graham, 7 years ago

Has patch: set

comment:5 by Tim Martin, 7 years ago

Patch needs improvement: set

comment:6 by Tim Graham <timograham@…>, 5 years ago

Resolution: fixed
Status: assignedclosed

In 084536a9:

Fixed #27994 -- Documented ManifestFilesMixin.

comment:7 by Tim Graham <timograham@…>, 5 years ago

In 082833c9:

[2.1.x] Fixed #27994 -- Documented ManifestFilesMixin.

Backport of 084536a9bec1237fabd63fe69a6c17806c9cde53 from master.

Note: See TracTickets for help on using tickets.
Back to Top