Changes between Initial Version and Version 3 of Ticket #23583


Ignore:
Timestamp:
Oct 15, 2014, 1:52:51 PM (10 years ago)
Author:
blodone
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23583

    • Property Has patch unset
  • Ticket #23583 – Description

    initial v3  
    1 When using manage.py makemessages -d djangojs, it no longer works (for me) as makemessages now completely ignores media and static dirs, what's place where javscript is usually stored. This has been introduced as fix for issue #23010.
     1makemessages ignores any in-app paths that begin with static because of this line:
     2https://github.com/django/django/blob/master/django/core/management/commands/makemessages.py#L233
     3
     4it should ignore something like "<path>/*" but not "<path>*"
     5
     6reproducible:
     7https://github.com/blodone/django_static_broken
Back to Top