X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/43a0821ebc84593e4bf9c073035574b28841471e..e8021e75c8ccc5b4a17c838e4956907aaa8d8d99:/redakcja/urls.py?ds=inline

diff --git a/redakcja/urls.py b/redakcja/urls.py
index b3da1ee6..d9297e29 100644
--- a/redakcja/urls.py
+++ b/redakcja/urls.py
@@ -28,8 +28,16 @@ urlpatterns = patterns('',
     url(r'^apiclient/', include('apiclient.urls')),
     url(r'^editor/', include('wiki.urls')),
     url(r'^cover/', include('cover.urls')),
+    (r'^jsi18n/$', 'django.views.i18n.javascript_catalog', dict(packages=['wiki'])),
+
 )
 
 if settings.DEBUG:
     urlpatterns += staticfiles_urlpatterns()
     urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
+
+if getattr(settings, 'SERVE_FILES_WITH_DEBUG_FALSE', False):
+    urlpatterns += patterns('',
+    (r'^%s(?P<path>.*)$' % settings.STATIC_URL[1:], 'django.views.static.serve', {'document_root': settings.STATIC_ROOT}),
+    (r'^%s(?P<path>.*)$' % settings.MEDIA_URL[1:], 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}),
+)