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 Changed 7 years ago by Tim Graham

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

comment:2 Changed 6 years ago by Theofanis Despoudis

Owner: changed from nobody to Theofanis Despoudis
Status: newassigned

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

comment:4 Changed 6 years ago by Tim Graham

Has patch: set

comment:5 Changed 6 years ago by Tim Martin

Patch needs improvement: set

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

Resolution: fixed
Status: assignedclosed

In 084536a9:

Fixed #27994 -- Documented ManifestFilesMixin.

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

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