From 75082eeb8e619fdd839593f1e74053ccd7d58137 Mon Sep 17 00:00:00 2001 From: "jouni%heikniemi.net" <> Date: Tue, 9 Jul 2002 17:58:10 +0000 Subject: Bug 149246: Allow use of relative time units in query screen. Patch by Michael Schindler , 2xr=jouni --- buglist.cgi | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'buglist.cgi') diff --git a/buglist.cgi b/buglist.cgi index 9638d9c0f..46c26fd16 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -23,6 +23,7 @@ # Stephan Niemz # Andreas Franke # Myk Melez +# Michael Schindler ################################################################################ # Script Initialization @@ -158,6 +159,27 @@ if ($::FORM{'cmdtype'} eq 'runnamed') { sub SqlifyDate { my ($str) = @_; $str = "" if !defined $str; + if ($str =~ /^-?(\d+)([dDwWmMyY])$/) { # relative date + my ($amount, $unit, $date) = ($1, lc $2, time); + my ($sec, $min, $hour, $mday, $month, $year, $wday) = localtime($date); + if ($unit eq 'w') { # convert weeks to days + $amount = 7*$amount + $wday; + $unit = 'd'; + } + if ($unit eq 'd') { + $date -= $sec + 60*$min + 3600*$hour + 24*3600*$amount; + return time2str("%Y-%m-%d %H:%M:%S", $date); + } + elsif ($unit eq 'y') { + return sprintf("%4d-01-01 00:00:00", $year+1900-$amount); + } + elsif ($unit eq 'm') { + $month -= $amount; + while ($month<0) { $year--; $month += 12; } + return sprintf("%4d-%02d-01 00:00:00", $year+1900, $month+1); + } + return undef; # should not happen due to regexp at top + } my $date = str2time($str); if (!defined($date)) { my $htmlstr = html_quote($str); -- cgit v1.2.3-24-g4f1b