Opened 11 years ago

Closed 11 years ago

Last modified 11 years ago

#20305 closed Bug (fixed)

Advanced tutorial (reusable apps) neglects static files

Reported by: Marek Onuszko Owned by: nobody
Component: Documentation Version: 1.5
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

This page:
https://docs.djangoproject.com/en/1.5/intro/reusable-apps/

teaches how to produce packages, but the resulting package doesn't include static/ subdirectory. I tracked it to an omission in MANIFEST.in. It's missing this line:

recursive-include polls/static *

Change History (2)

comment:1 by Tim Graham <timograham@…>, 11 years ago

Resolution: fixed
Status: newclosed

In 86d3079d5797811c1e118cfd600a913685212165:

Fixed #20305 - Added include for polls/static to MANIFEST.in in tutorial.

Thanks monuszko for the report.

comment:2 by Tim Graham <timograham@…>, 11 years ago

In 0fc4c405a4985de92dde6e8088cd5773a72b2294:

[1.5.x] Fixed #20305 - Added include for polls/static to MANIFEST.in in tutorial.

Thanks monuszko for the report.

Backport of 86d3079d57 from master

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