From 4d60513ac475ca6cf58244a3907fac4bb72041f9 Mon Sep 17 00:00:00 2001 From: "kestes%walrus.com" Date: Mon, 6 May 2002 19:04:58 +0000 Subject: [PATCH] fixes to HTML indentation, to make debugging easier. git-svn-id: svn://10.0.0.236/trunk@120842 18797224-902f-48f8-a5cc-f745e15eee43 --- .../tinderbox2/src/lib/TinderDB/Notice.pm | 18 +++++++++++------- .../tinderbox2/src/lib/TinderDB/Time.pm | 9 +++++---- 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/mozilla/webtools/tinderbox2/src/lib/TinderDB/Notice.pm b/mozilla/webtools/tinderbox2/src/lib/TinderDB/Notice.pm index 05621863c2a..c3559942435 100755 --- a/mozilla/webtools/tinderbox2/src/lib/TinderDB/Notice.pm +++ b/mozilla/webtools/tinderbox2/src/lib/TinderDB/Notice.pm @@ -30,8 +30,8 @@ # kestes@walrus.com Home. # Contributor(s): -# $Revision: 1.20 $ -# $Date: 2002-05-02 23:54:26 $ +# $Revision: 1.21 $ +# $Date: 2002-05-06 19:04:58 $ # $Author: kestes%walrus.com $ # $Source: /home/befator/cvs/jail/cvsroot/mozilla/webtools/tinderbox2/src/lib/TinderDB/Notice.pm,v $ # $Name: not supported by cvs2svn $ @@ -84,7 +84,7 @@ use Utils; use HTMLPopUp; use TinderDB::BasicTxtDB; -$VERSION = ( qw $Revision: 1.20 $ )[1]; +$VERSION = ( qw $Revision: 1.21 $ )[1]; @ISA = qw(TinderDB::BasicTxtDB); @@ -376,7 +376,8 @@ sub status_table_row { @outrow = ( - "\t". + "\t\n". + "\t\t". HTMLPopUp::Link( # if notice available is an image then @@ -389,10 +390,13 @@ sub status_table_row { "windowtitle" => "Notice Board", "windowheight" => (175 * $num_notices)+100, ). - "\n"); + "\n". + "\t\n"); } else { - @outrow = ("\t". - "$HTMLPopUp::EMPTY_TABLE_CELL\n"); + @outrow = ("\t\n". + "\t\t\n". + "\t\t\t$HTMLPopUp::EMPTY_TABLE_CELL\n". + "\t\t\n"); } diff --git a/mozilla/webtools/tinderbox2/src/lib/TinderDB/Time.pm b/mozilla/webtools/tinderbox2/src/lib/TinderDB/Time.pm index 681a1fd377f..53c2964cde4 100644 --- a/mozilla/webtools/tinderbox2/src/lib/TinderDB/Time.pm +++ b/mozilla/webtools/tinderbox2/src/lib/TinderDB/Time.pm @@ -30,8 +30,8 @@ -# $Revision: 1.8 $ -# $Date: 2002-05-06 18:36:28 $ +# $Revision: 1.9 $ +# $Date: 2002-05-06 19:04:57 $ # $Author: kestes%walrus.com $ # $Source: /home/befator/cvs/jail/cvsroot/mozilla/webtools/tinderbox2/src/lib/TinderDB/Time.pm,v $ # $Name: not supported by cvs2svn $ @@ -48,7 +48,7 @@ use VCDisplay; -$VERSION = ( qw $Revision: 1.8 $ )[1]; +$VERSION = ( qw $Revision: 1.9 $ )[1]; sub new { @@ -150,7 +150,8 @@ sub status_table_row { my(@outrow) = ("\t\n". "\t\t". - "$query_link\n"); + "\t\t\t$query_link\n". + "\t\t\n"); $self->last_hour($hour); return @outrow;