New issue 68 by runningg...@gmail.com: If using war.py that included
STATIC_URL logic, need to change web.xml in war_skel
http://code.google.com/p/django-jython/issues/detail?id=68
What steps will reproduce the problem?
1.Update war.py to be latest with STATIC_URL logic.
2.jython manage.py war
3.Deploy war
What is the expected output? What do you see instead?
War does not have the STATIC_URL folder.
What version of the product are you using? On what operating system?
1.3.0b1 with updated war.py
Please provide any additional information below.
Need to add this to the web.xml file:
{% if settings.STATIC_URL %}
<servlet-mapping>
<servlet-name>fileservlet</servlet-name>
<url-pattern>{{ settings.STATIC_URL }}*</url-pattern>
</servlet-mapping>
{% endif %}
Comment #1 on issue 68 by juneau001: If using war.py that included
STATIC_URL logic, need to change web.xml in war_skel
http://code.google.com/p/django-jython/issues/detail?id=68
(No comment was entered for this change.)