mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
306e1a2d46
Bug #345804 r=bear
71 lines
2.0 KiB
Perl
Executable File
71 lines
2.0 KiB
Perl
Executable File
#!/usr/bonsaitools/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 lib "@TINDERBOX_DIR@";
|
|
require 'tbglobals.pl';
|
|
require 'imagelog.pl';
|
|
require 'showbuilds.pl';
|
|
|
|
umask 002;
|
|
|
|
# Process the form arguments
|
|
%form = ();
|
|
&split_cgi_args();
|
|
|
|
# Show 12 hours by default
|
|
#
|
|
$nowdate = time;
|
|
if (not defined($maxdate = $form{maxdate})) {
|
|
$maxdate = $nowdate;
|
|
}
|
|
if ($form{showall}) {
|
|
$mindate = 0;
|
|
}
|
|
else {
|
|
$default_hours = 12;
|
|
$hours = $default_hours;
|
|
$hours = $form{hours} if $form{hours};
|
|
$mindate = $maxdate - ($hours*60*60);
|
|
}
|
|
|
|
$::tree = $form{tree};
|
|
|
|
# $rel_path is the relative path to webtools/tinderbox used for links.
|
|
# It changes to "../" if the page is generated statically, because then
|
|
# it is placed in tinderbox/$::tree.
|
|
$rel_path = '';
|
|
|
|
&show_tree_selector, exit if $::tree eq '';
|
|
&do_quickparse, exit if $form{quickparse};
|
|
&do_express, exit if $form{express};
|
|
&do_rdf, exit if $form{rdf};
|
|
&do_static, exit if $form{static};
|
|
&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_wml, exit if $form{wml};
|
|
&do_tinderbox, exit;
|
|
|
|
# end of main
|
|
#=====================================================================
|