summaryrefslogtreecommitdiff
path: root/packages/views/__init__.py
diff options
context:
space:
mode:
authorJohannes Krampf <johannes.krampf@gmail.com>2011-12-03 14:44:42 +0100
committerJohannes Krampf <johannes.krampf@gmail.com>2011-12-03 14:44:42 +0100
commit183c4d9cefa95f46c3fa3a6936f837542426eac2 (patch)
tree32b2af21ef05a6dee93546328120d0f9183578e2 /packages/views/__init__.py
parentf71f3e23eda8e1ff447340812025ab724aff14cb (diff)
Allow architecure selection for difference view
Diffstat (limited to 'packages/views/__init__.py')
-rw-r--r--packages/views/__init__.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/views/__init__.py b/packages/views/__init__.py
index e3264161..bbfe7c9f 100644
--- a/packages/views/__init__.py
+++ b/packages/views/__init__.py
@@ -226,13 +226,14 @@ def download(request, name, repo, arch):
def arch_differences(request):
# TODO: we have some hardcoded magic here with respect to the arches.
- arch_a = Arch.objects.get(name='i686')
- arch_b = Arch.objects.get(name='x86_64')
+ arch_a = Arch.objects.get(name=request.GET.get('arch_a', 'i686'))
+ arch_b = Arch.objects.get(name=request.GET.get('arch_b', 'x86_64'))
differences = get_differences_info(arch_a, arch_b)
context = {
'arch_a': arch_a,
'arch_b': arch_b,
'differences': differences,
+ 'arches': Arch.objects.filter(agnostic=False)
}
return direct_to_template(request, 'packages/differences.html', context)