From ae5483c230d08c65d91eb7cece106b4f13a56232 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Wed, 25 Aug 2010 13:45:04 -0500 Subject: 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 --- urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'urls.py') diff --git a/urls.py b/urls.py index 74c439f..f2ad6b2 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\d+)/$', 'packages.views.search'), + (r'^packages/differences/$', 'packages.views.arch_differences'), (r'^packages/$', 'packages.views.search'), (r'^packages/(?P\d+)/$', 'packages.views.search'), -- cgit v1.2.3-24-g4f1b