aboutsummaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
authorStevan Radakovic <stevan.radakovic@linaro.org>2013-02-26 20:38:30 +0100
committerStevan Radakovic <stevan.radakovic@linaro.org>2013-02-26 20:38:30 +0100
commitfbdfdfab8f1add440c59cb363f44a54b724d7b9d (patch)
treeab9dfd021add1d2414b73831df77079a97001ecf /urls.py
parentff1b5b1279f60a804d862d7752e7ce9ff75c3e90 (diff)
Fix bug 1085007.
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/urls.py b/urls.py
index 9622fdd..88c68f2 100644
--- a/urls.py
+++ b/urls.py
@@ -22,6 +22,10 @@ urlpatterns = patterns('',
url(r'^css/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.CSS_PATH}),
+ url(r'^get-remote-static',
+ 'license_protected_downloads.views.get_remote_static',
+ name='get_remote_static'),
+
# The license page...
url(r'^license$',
'license_protected_downloads.views.show_license',