From d49463aa16101b59bc4adaa42b9dfdbe3735733f Mon Sep 17 00:00:00 2001 From: "slamm%netscape.com" Date: Mon, 24 Jul 2000 22:47:39 +0000 Subject: [PATCH] Add vxml from Jud Valeski --- webtools/tinderbox/showbuilds.cgi | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/webtools/tinderbox/showbuilds.cgi b/webtools/tinderbox/showbuilds.cgi index 5dcce4676546..99c0f6f39747 100755 --- a/webtools/tinderbox/showbuilds.cgi +++ b/webtools/tinderbox/showbuilds.cgi @@ -72,6 +72,7 @@ $rel_path = ''; &do_flash, exit if $form{flash}; &do_panel, exit if $form{panel}; &do_hdml, exit if $form{hdml}; +&do_vxml, exit if $form{vxml}; &do_tinderbox, exit; # end of main @@ -992,3 +993,26 @@ sub do_hdml { }; } + +sub do_vxml { + print "Content-type: text/vxml\n\n"; + print ''; + + %state_symbols = (success=>'green',busted=>'red',testfailed=>'test failed'); + + print "
"; + + if (is_tree_state_available()) { + print ""; + } + my (%build, %times); + tb_loadquickparseinfo($::tree, \%build, \%times); + + foreach my $buildname (sort keys %build) { + print "100"; + print ""; + } + print "200"; + print "
"; +}