summaryrefslogtreecommitdiff
path: root/main/templatetags/cdn.py
diff options
context:
space:
mode:
authorJohannes Krampf <johannes.krampf@gmail.com>2011-11-26 14:27:45 +0100
committerJohannes Krampf <johannes.krampf@gmail.com>2011-11-26 14:27:45 +0100
commit56c773b32fc68639eb55666b6cfaa32bc9618321 (patch)
treedcc047f0552224facb6d05cddf2fb72b973bd683 /main/templatetags/cdn.py
parentfbd23db51b7160a308cd88e407e676994eb08b10 (diff)
parent85657db05d7f65604340699cfcb9967c9e81a0ef (diff)
Merged with archweb trunk
Diffstat (limited to 'main/templatetags/cdn.py')
-rw-r--r--main/templatetags/cdn.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/main/templatetags/cdn.py b/main/templatetags/cdn.py
index c25040c0..5cb12fcf 100644
--- a/main/templatetags/cdn.py
+++ b/main/templatetags/cdn.py
@@ -23,12 +23,7 @@ class CDNPrefixNode(template.Node):
oncdn = getattr(settings, 'CDN_ENABLED', True)
if not oncdn:
return ''
- secure = 'secure' in context and context['secure']
# if left undefined, same behavior as if CDN is turned off
- paths = {
- False: getattr(settings, 'CDN_PATH', ''),
- True: getattr(settings, 'CDN_PATH_SECURE', ''),
- }
- return paths[secure]
+ return getattr(settings, 'CDN_PATH', '')
# vim: set ts=4 sw=4 et: