diff --git a/mozilla/webtools/tinderbox2/src/lib/HTMLPopUp/MozillaLayers.pm b/mozilla/webtools/tinderbox2/src/lib/HTMLPopUp/MozillaLayers.pm index 18fd9637407..5bc16731d81 100644 --- a/mozilla/webtools/tinderbox2/src/lib/HTMLPopUp/MozillaLayers.pm +++ b/mozilla/webtools/tinderbox2/src/lib/HTMLPopUp/MozillaLayers.pm @@ -15,8 +15,8 @@ -# $Revision: 1.15 $ -# $Date: 2002-05-10 22:56:57 $ +# $Revision: 1.16 $ +# $Date: 2002-05-10 23:07:57 $ # $Author: kestes%walrus.com $ # $Source: /home/befator/cvs/jail/cvsroot/mozilla/webtools/tinderbox2/src/lib/HTMLPopUp/MozillaLayers.pm,v $ # $Name: not supported by cvs2svn $ @@ -353,8 +353,10 @@ sub Link { $out .= "onClick=\" "; ($args{'windowtxt'}) && ($out .= "tip(".( - "$args{'windowwidth'},". - "$args{'windowheight'},". +# "$args{'windowheight'},". +# "$args{'windowwidth'},". + "$HTMLPopUp::DEFAULT_POPUP_HEIGHT,". + "$HTMLPopUp::DEFAULT_POPUP_WIDTH,". "\'$args{'windowtxt'}\'". ""). "); "); diff --git a/mozilla/webtools/tinderbox2/src/lib/TinderDB/VC_Bonsai.pm b/mozilla/webtools/tinderbox2/src/lib/TinderDB/VC_Bonsai.pm index 041796d469f..4516a99097b 100755 --- a/mozilla/webtools/tinderbox2/src/lib/TinderDB/VC_Bonsai.pm +++ b/mozilla/webtools/tinderbox2/src/lib/TinderDB/VC_Bonsai.pm @@ -40,8 +40,8 @@ # Contributor(s): -# $Revision: 1.62 $ -# $Date: 2002-05-10 23:00:41 $ +# $Revision: 1.63 $ +# $Date: 2002-05-10 23:07:53 $ # $Author: kestes%walrus.com $ # $Source: /home/befator/cvs/jail/cvsroot/mozilla/webtools/tinderbox2/src/lib/TinderDB/VC_Bonsai.pm,v $ # $Name: not supported by cvs2svn $ @@ -102,7 +102,7 @@ use VCDisplay; use TinderDB::Notice; -$VERSION = ( qw $Revision: 1.62 $ )[1]; +$VERSION = ( qw $Revision: 1.63 $ )[1]; @ISA = qw(TinderDB::BasicTxtDB); @@ -502,8 +502,8 @@ sub render_authors { $link_choices .= VCDisplay::query( 'tree' => $tree, - 'mindate' => $mindate, - 'maxdate' => $maxdate - $main::SECONDS_PER_DAY, + 'mindate' => $mindate - $main::SECONDS_PER_DAY, + 'maxdate' => $maxdate, 'who' => $author, "linktxt" => "Check-ins within 24 hours", @@ -512,8 +512,8 @@ sub render_authors { $link_choices .= VCDisplay::query( 'tree' => $tree, - 'mindate' => $mindate, - 'maxdate' => $maxdate - $main::SECONDS_PER_WEEK, + 'mindate' => $mindate - $main::SECONDS_PER_WEEK, + 'maxdate' => $maxdate, 'who' => $author, "linktxt" => "Check-ins within 7 days",