5 Copyright (c) 2003-2010, Andrew Dunstan
7 See accompanying License file for license details
14 ->uri('http://buildfarm.exim.org/EximBuildFarm')
15 ->proxy('http://buildfarm.exim.org/cgi-bin/show_status_soap.pl')
18 my $data = $obj->get_status->result;
19 my @fields = qw( branch sysname stage status
20 operating_system os_version
21 compiler compiler_version architecture
22 when_ago snapshot build_flags
25 print "Content-Type: text/plain\n\n";
27 my $head = join (' | ', @fields);
30 foreach my $datum (@$data)
32 my $line = join (' | ', @{$datum}{@fields});