summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-03-24 12:32:38 -0500
committerDan McGee <dan@archlinux.org>2012-03-24 12:32:38 -0500
commit024fd1b2843d2abd0094faedfbc49e1d1a21edd0 (patch)
tree7928ea819db606d1e0b92e3ea0a63b1721c82ae7
parent9d011312e850aa3dcab539cbf633191b2f3b7f54 (diff)
downloadarchweb-024fd1b2843d2abd0094faedfbc49e1d1a21edd0.tar.gz
archweb-024fd1b2843d2abd0094faedfbc49e1d1a21edd0.zip
Remove cdnprefix template tag
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--local_settings.py.example2
-rw-r--r--main/templatetags/cdn.py12
2 files changed, 0 insertions, 14 deletions
diff --git a/local_settings.py.example b/local_settings.py.example
index 30a67d51..37ac29a6 100644
--- a/local_settings.py.example
+++ b/local_settings.py.example
@@ -53,7 +53,5 @@ SECRET_KEY = '00000000000000000000000000000000000000000000000'
## CDN settings
CDN_ENABLED = False
-# Scheme-relative URL, should work for both http/https
-CDN_PATH = '//example.com/path/'
# vim: set ts=4 sw=4 et:
diff --git a/main/templatetags/cdn.py b/main/templatetags/cdn.py
index b91553ed..f290a524 100644
--- a/main/templatetags/cdn.py
+++ b/main/templatetags/cdn.py
@@ -15,16 +15,4 @@ def jquery():
link = '%sjquery-%s.min.js' % (static_url, version)
return '<script type="text/javascript" src="%s"></script>' % link
-@register.tag
-def cdnprefix(parser, token):
- return CDNPrefixNode()
-
-class CDNPrefixNode(template.Node):
- def render(self, context):
- oncdn = getattr(settings, 'CDN_ENABLED', True)
- if not oncdn:
- return ''
- # if left undefined, same behavior as if CDN is turned off
- return getattr(settings, 'CDN_PATH', '')
-
# vim: set ts=4 sw=4 et: