summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-08-25 13:45:04 -0500
committerDan McGee <dan@archlinux.org>2010-08-25 13:45:04 -0500
commitae5483c230d08c65d91eb7cece106b4f13a56232 (patch)
tree95fd2c95d29da95a544e1ac110e94e363a91d179 /urls.py
parentebfc46026fd726222c32ed1251a4752dee88ca42 (diff)
downloadarchweb-ae5483c230d08c65d91eb7cece106b4f13a56232.tar.gz
archweb-ae5483c230d08c65d91eb7cece106b4f13a56232.zip
Package Differences by Architecture view
Implements FS#20416. Port over the architecture differences view from archlinux.de and reimplement in Django with our DB schema. Also use a far simpler SQL query to do the dirty work rather than the triple UNION operation. This is accomplished by doing a bit more of the fetching work in code once we know what packages are actually involved. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/urls.py b/urls.py
index 74c439fc..f2ad6b2a 100644
--- a/urls.py
+++ b/urls.py
@@ -29,6 +29,7 @@ urlpatterns = patterns('',
# because other projects link to it
(r'^packages/search/$', 'packages.views.search'),
(r'^packages/search/(?P<page>\d+)/$', 'packages.views.search'),
+ (r'^packages/differences/$', 'packages.views.arch_differences'),
(r'^packages/$', 'packages.views.search'),
(r'^packages/(?P<page>\d+)/$', 'packages.views.search'),