diff options
author | Dusty Phillips <buchuki@gmail.com> | 2008-10-12 01:52:51 +0200 |
---|---|---|
committer | Dusty Phillips <buchuki@gmail.com> | 2008-10-12 01:52:51 +0200 |
commit | 5acf6c46f28446b91dbfd041960953f01f4ffe0d (patch) | |
tree | 8a8e63ba53231d3c41ac187446e9d740cd69b73a /main | |
parent | 7dedeeafd5b2e34f05bd75e548ca56942919c668 (diff) | |
download | archweb-5acf6c46f28446b91dbfd041960953f01f4ffe0d.tar.gz archweb-5acf6c46f28446b91dbfd041960953f01f4ffe0d.tar.xz |
separate copyrighted middleware from my additions
Diffstat (limited to 'main')
-rw-r--r-- | main/middleware.py | 2 | ||||
-rw-r--r-- | main/utils.py | 16 |
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: - |