From: minima <minima>
Date: Sun, 15 Jan 2006 20:18:48 +0000 (+0000)
Subject: add a 36 month limit on sh/log queries.
X-Git-Tag: R_1_52~21
X-Git-Url: http://dxspider.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=099d6af8baf48343a66c1aed49c3315d67d5042b;p=spider.git

add a 36 month limit on sh/log queries.
---

diff --git a/Changes b/Changes
index dc5fbbef..e9872d2e 100644
--- a/Changes
+++ b/Changes
@@ -4,6 +4,7 @@ with initialising the User file.
 2. Fixed the problem with certain things not being shown in sh/log (because of
 a regex that rejected too many things).
 3. Speeded up sh/log quite a bit at the same time.
+4. Add a default limit of the last 36 months for sh/log querys. 
 14Jan06=======================================================================
 1. undo frequency rounding change, it causes more problems than it solves.
 11Jan06=======================================================================
diff --git a/perl/DXLogPrint.pm b/perl/DXLogPrint.pm
index a968e53b..8ce8e35c 100644
--- a/perl/DXLogPrint.pm
+++ b/perl/DXLogPrint.pm
@@ -18,12 +18,14 @@ use RingBuf;
 
 use strict;
 
-use vars qw($VERSION $BRANCH);
+use vars qw($VERSION $BRANCH $maxmonths);
 $VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ );
 $BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/  || (0,0));
 $main::build += $VERSION;
 $main::branch += $BRANCH;
 
+$maxmonths = 36;
+
 #
 # print some items from the log backwards in time
 #
@@ -70,8 +72,9 @@ sub print
 	
 	$fcb->close;                                      # close any open files
 
+	my $months;
 	my $fh = $fcb->open($jdate); 
- L1: for (;@in < $to;) {
+ L1: for ($months = 0; $months < $maxmonths && @in < $tot; $months++) {
 		my $ref;
 		my $ring = RingBuf->new($tot);
 
@@ -87,6 +90,9 @@ sub print
 		$fh = $fcb->openprev();      # get the next file
 		last if !$fh;
 	}
+	
+	@in = splice @in, -$tot, $tot if @in > $tot;
+    
 	for (@in) {
 		my @line = split /\^/ ;
 		push @out, print_item(\@line);