summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main/middleware.py2
-rw-r--r--main/utils.py16
2 files changed, 2 insertions, 16 deletions
diff --git a/main/middleware.py b/main/middleware.py
index df0a7a4..8f249c6 100644
--- a/main/middleware.py
+++ b/main/middleware.py
@@ -55,6 +55,8 @@ class RequireLoginMiddleware(object):
user_holder = threading.local()
user_holder.user = None
+# END REQUIRE LOGIN MIDDLEWARE
+
class AutoUserMiddleware(object):
'''Saves the current user so it can be retrieved by the admin'''
def process_request(self, request):
diff --git a/main/utils.py b/main/utils.py
index 74ec50e..c258c11 100644
--- a/main/utils.py
+++ b/main/utils.py
@@ -1,18 +1,2 @@
-from django.conf import settings
-from django.core.cache import cache
-from django.shortcuts import render_to_response
-from django.template import RequestContext
-
-def prune_cache(django_page_url):
- if not settings.CACHE:
- return
- cache_prefix = 'views.decorators.cache.cache_page.'
- cache_prefix += settings.CACHE_MIDDLEWARE_KEY_PREFIX + '.'
- cache_postfix = '.d41d8cd98f00b204e9800998ecf8427e'
- cache.delete('%s%s%s' % (cache_prefix,django_page_url,cache_postfix))
-
#utility to make a pair of django choices
make_choice = lambda l: [(str(m), str(m)) for m in l]
-
-# vim: set ts=4 sw=4 et:
-