diff options
author | Dan McGee <dan@archlinux.org> | 2010-09-07 16:04:56 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-09-08 00:09:13 -0500 |
commit | 9df541f95f12d2fad5c9911008882b7ff35a9514 (patch) | |
tree | a41c05af3448e3ae49acd4d413fd9f51653e5e7f /settings.py | |
parent | f498ceca1de3b3db0b96007b33eed620702acce9 (diff) |
Implement package difference filtering
This is done as client-side JS which makes the page nice and fast. Minor
versions can be excluded, as can packages in [multilib]. In addition,
architecture filtering is in place so you can limit the subset of shown
packages to those in any, both, one or the other.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/settings.py b/settings.py index b1ad20ec..6e98adce 100644 --- a/settings.py +++ b/settings.py @@ -51,6 +51,8 @@ TEMPLATE_LOADERS = ( 'django.template.loaders.app_directories.load_template_source', ) +# This bug is a real bummer: +# http://code.djangoproject.com/ticket/14105 MIDDLEWARE_CLASSES = ( 'main.middleware.UpdateCacheMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', |