This commit is contained in:
kestes%walrus.com 2002-04-26 01:57:59 +00:00
Родитель 7577a5a2f4
Коммит c09ab186d4
5 изменённых файлов: 33 добавлений и 13 удалений

Просмотреть файл

@ -48,7 +48,7 @@ more info)
CGIWrap
http://cgiwrap.unixtools.org/
http://sourceforge.net/projects/cgiwrap/
sbox: Put CGI Scripts in a Box
http://stein.cshl.org/software/sbox/

Просмотреть файл

@ -1,8 +1,8 @@
# -*- Mode: perl; indent-tabs-mode: nil -*-
# $Revision: 1.10 $
# $Date: 2002-04-25 00:36:46 $
# $Revision: 1.11 $
# $Date: 2002-04-26 01:57:57 $
# $Author: kestes%walrus.com $
# $Source: /home/jrmuizel/cvs-mirror/mozilla/webtools/tinderbox2/src/default_conf/BuildStatus.pm,v $
# $Name: $
@ -263,4 +263,15 @@ sub status2descriptions {
return @out;
}
sub get_TinderboxPrint_separator{
# How should the TinderboxPrint statements be rendered?
# obvious choices are <br> or &nbsp;
return "<br>";
}
1;

Просмотреть файл

@ -5,8 +5,8 @@
# customizable settings.
# $Revision: 1.20 $
# $Date: 2002-04-25 23:33:14 $
# $Revision: 1.21 $
# $Date: 2002-04-26 01:57:56 $
# $Author: kestes%walrus.com $
# $Source: /home/jrmuizel/cvs-mirror/mozilla/webtools/tinderbox2/src/default_conf/TinderConfig.pm,v $
# $Name: $
@ -122,9 +122,9 @@ $REFRESH_TIME = (60 * 15);
$PopUpImpl = (
# 'HTMLPopUp::MozillaLayers',
# 'HTMLPopUp::MajorCoolWindow',
'HTMLPopUp::MajorCoolWindow',
# 'HTMLPopUp::None',
'HTMLPopUp::PortableLayers',
# 'HTMLPopUp::PortableLayers',
);

Просмотреть файл

@ -7,8 +7,8 @@
# the build was and display a link to the build log.
# $Revision: 1.29 $
# $Date: 2002-04-25 00:31:30 $
# $Revision: 1.30 $
# $Date: 2002-04-26 01:57:52 $
# $Author: kestes%walrus.com $
# $Source: /home/jrmuizel/cvs-mirror/mozilla/webtools/tinderbox2/src/lib/TinderDB/Build.pm,v $
# $Name: $
@ -1143,7 +1143,8 @@ sub status_table_row {
if ($current_rec->{'print'}) {
$links .= (
"\t\t<br>".
"\t\t".
BuildStatus::get_TinderboxPrint_separator().
$current_rec->{'print'}."\n".
"");
}

Просмотреть файл

@ -94,7 +94,7 @@ use TreeData;
use VCDisplay;
$VERSION = ( qw $Revision: 1.12 $ )[1];
$VERSION = ( qw $Revision: 1.13 $ )[1];
@ISA = qw(TinderDB::BasicTxtDB);
@ -487,6 +487,14 @@ sub status_table_row {
"windowwidth" => ($max_length * 10) + 100,
);
my $mailto_author=$author;
$mailto_author =~ s/\%/\@/;
# Do not display the full mail address in the status column
my $display_author=$author;
$display_author =~ s/\%.*//;
# If you have a VCDisplay implementation you should make the
# link point to its query method otherwise you want a 'mailto:'
# link
@ -500,7 +508,7 @@ sub status_table_row {
$query_link .=
HTMLPopUp::Link(
"href" => "mailto: $author",
"href" => "mailto: $mailto_author",
%popup_args,
);
@ -511,7 +519,7 @@ sub status_table_row {
'tree' => $tree,
'mindate' => $mindate,
'maxdate' => $maxdate,
'who' => $author,
'who' => $display_author,
%popup_args,
);