#!/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; require 'tbglobals.pl'; require 'header.pl'; # Process the form arguments my %form = &split_cgi_args(); $|=1; print "Content-type: text/html\n\n"; $form{noignore} = 1; # Force us to load all build info, not # paying any attention to ignore_builds stuff. $::maxdate = time(); $::mindate = $::maxdate - 24*60*60; $form{tree} = &validate_tree($form{tree}); my $treedata = &tb_load_data(\%form); my (@names, $i, $checked); if (defined($treedata)) { my $tree = $treedata->{name}; my $safe_tree = value_encode($tree); EmitHtmlHeader("administer tinderbox", "tree: $safe_tree"); # Sheriff my $current_sheriff = &tb_load_sheriff($tree); $current_sheriff =~ s/\s*$//; # Trim trailing whitespace; # Status message. my $status_message = &tb_load_status($tree); $status_message =~ s/\s*$//; # Trim trailing whitespace; # Tree rules. my $rules_message = &tb_load_rules($tree); $rules_message =~ s/\s*$//; # Trim trailing whitespace; # # Change sheriff # print "
Active | Only checked builds are shown. Add &noignore=1 to the tinderbox URL to override. |
Scrape | Checked builds will have the logs scanned for a token of the form TinderboxPrint:aaa,bbb,ccc. These values will show up as-is in the showbuilds.cgi output. |
Warnings | Checked builds will have the logs scanned for compiler warning messages. |