From: minima Date: Thu, 23 Nov 2006 16:01:42 +0000 (+0000) Subject: add wrapping to overlength lines X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=70990c34d1dabdc17fe93d33a06a4b9097b30ee8;p=spider.git add wrapping to overlength lines --- diff --git a/Changes b/Changes index 65df80a0..f7fe8c7c 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ +23Nov06======================================================================= +1. added wrapping to over length lines in console.pl. 03Nov06======================================================================= 1. add CTY-1609 changes 2. add back Geo::Taf code with submitted mods diff --git a/perl/console.pl b/perl/console.pl index 597c5eff..88ffb927 100755 --- a/perl/console.pl +++ b/perl/console.pl @@ -23,14 +23,6 @@ BEGIN { unshift @INC, "$root/perl"; # this IS the right way round! unshift @INC, "$root/local"; - - sub main::mkver - { - my $s = shift; - my ($v, $b) = $s =~ /(\d+\.\d+)(?:\.(\d+\.\d+))?/; - $main::build += sprintf "%.3f", $v; - $main::branch += sprintf("%.3f", $b) if $b; - } } use Msg; @@ -42,6 +34,7 @@ use DXDebug; use IO::File; use Time::HiRes qw(gettimeofday tv_interval); use Curses 1.06; +use Text::Wrap; use Console; @@ -237,8 +230,13 @@ sub addtotop if ($inbuf =~ s/\x07+$//) { beep(); } - push @shistory, $inbuf; - shift @shistory if @shistory > $maxshist; + if (length $inbuf > $cols) { + $Text::Wrap::Columns = $cols; + push @shistory, wrap('',"\t", $inbuf); + } else { + push @shistory, $inbuf; + } + shift @shistory while @shistory > $maxshist; } show_screen(); } @@ -500,6 +498,8 @@ $conn->send_later("I$call|set/page $maxshist"); #Msg->set_event_handler(\*STDIN, "read" => \&rec_stdin); +$Text::Wrap::Columns = $cols; + my $lastmin = 0; for (;;) { my $t;