From 029bc0624ac3307c9d24996ad23957dab0ca4ba8 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Wed, 27 Feb 2002 16:01:45 +0000 Subject: Bug 126788 - templatise xml.cgi. --- xml.cgi | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) (limited to 'xml.cgi') diff --git a/xml.cgi b/xml.cgi index 8b71b3837..1773ec6cf 100755 --- a/xml.cgi +++ b/xml.cgi @@ -20,6 +20,7 @@ # # Contributor(s): Dawn Endico # Terry Weissman +# Gervase Markham use diagnostics; use strict; @@ -29,32 +30,27 @@ use lib qw(.); use Bug; require "CGI.pl"; +use vars qw($template $vars); + if (!defined $::FORM{'id'} || !$::FORM{'id'}) { - print "Content-type: text/html\n\n"; - PutHeader("Display as XML"); - print "
\n"; - print "Display bugs as XML by entering a list of bug numbers here:\n"; - print "\n"; - print "
\n"; - print " (e.g. 1000,1001,1002)\n"; - print "
\n"; - PutFooter(); + print "Content-Type: text/html\n\n"; + $template->process("show/choose_xml.html.tmpl", $vars) + || DisplayError("Template process failed: " . $template->error()) + && exit; exit; } quietly_check_login(); -my $exporter; -if (defined $::COOKIE{"Bugzilla_login"}) { - $exporter = $::COOKIE{"Bugzilla_login"}; -} -my @ids = split ( /,/, $::FORM{'id'} ); +my $exporter = $::COOKIE{"Bugzilla_login"} || undef; + +my @ids = split (/[, ]+/, $::FORM{'id'}); print "Content-type: text/plain\n\n"; -print Bug::XML_Header( Param("urlbase"), $::param{'version'}, - Param("maintainer"), $exporter ); +print Bug::XML_Header(Param("urlbase"), $::param{'version'}, + Param("maintainer"), $exporter); foreach my $id (@ids) { - my $bug = new Bug($id, $::userid); + my $bug = new Bug(trim($id), $::userid); print $bug->emitXML; } -- cgit v1.2.3-24-g4f1b