philringnalda%gmail.com 2a8ac5c9a7 Bug 667266 - Microscopically speed up processbuild.pl by dropping some '90s output formats, r=bear
git-svn-id: svn://10.0.0.236/trunk@262427 18797224-902f-48f8-a5cc-f745e15eee43
2011-06-27 16:30:58 +00:00

59 lines
1.9 KiB
Perl
Executable File

#!/usr/bin/perl --
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is the Tinderbox build tool.
#
# The Initial Developer of the Original Code is Netscape Communications
# Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
use strict;
use lib "@TINDERBOX_DIR@";
require 'tbglobals.pl';
require 'showbuilds.pl';
umask 002;
# Process the form arguments
my %form = &split_cgi_args();
&show_tree_selector(\%form), exit if $form{tree} eq '';
my $mode_count=0;
foreach my $mode ('quickparse', 'express', 'rdf', 'flash', 'static', 'panel',
'hdml', 'vxml', 'wml', 'json', 'json2', 'status') {
$mode_count++ if defined($form{$mode});
}
if ($mode_count > 1) {
print "Content-Type: text/plain; charset=utf-8\n\n";
print "Error: Only one mode type can be specified at a time.\n";
exit(0);
}
&do_quickparse(\%form), exit if $form{quickparse};
&do_express(\%form), exit if $form{express};
&do_rdf(\%form), exit if $form{rdf};
&do_static(\%form), exit if $form{static};
&do_panel(\%form), exit if $form{panel};
&do_json(\%form), exit if $form{json};
&do_json2(\%form), exit if $form{json2};
&do_status(\%form), exit if $form{status};
&do_tinderbox(\%form), exit;
# end of main
#=====================================================================