From 898ff651169c56976e39424849ffc548bcba1f8c Mon Sep 17 00:00:00 2001 From: Dave Page Date: Tue, 29 Nov 2011 09:58:56 +0000 Subject: [PATCH] Include the secondary platform in the applications-v2.xml file. --- pgweb/downloads/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pgweb/downloads/views.py b/pgweb/downloads/views.py index 6247bbfe..173b41e9 100644 --- a/pgweb/downloads/views.py +++ b/pgweb/downloads/views.py @@ -218,6 +218,7 @@ def applications_v2_xml(request): x.startElement('application', {}) x.add_xml_element('id', a.textid) x.add_xml_element('platform', a.platform) + x.add_xml_element('secondaryplatform', a.secondaryplatform) x.add_xml_element('version', a.version) x.add_xml_element('name', a.name) x.add_xml_element('description', a.description)