From: terry%netscape.com <> Date: Wed, 24 Mar 1999 06:32:19 +0000 (+0000) Subject: Can now query for a specified field being changed at a specified time, X-Git-Tag: bugzilla-2.4~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19ca3aa8dbc4f551836cd0dac9150118c9128ee1;p=thirdparty%2Fbugzilla.git Can now query for a specified field being changed at a specified time, optionally to a specified value. --- diff --git a/CHANGES b/CHANGES index d152a9ba1d..7128e0ebb2 100644 --- a/CHANGES +++ b/CHANGES @@ -10,6 +10,11 @@ query the CVS tree. For example, will tell you what has been changed in the last week. +3/22/99 Added the ability to query by fields which have changed within a date +range. To make this perform a bit better, we need a new index: + + alter table bugs_activity add index (field); + 3/10/99 Added 'groups' stuff, where we have different group bits that we can put on a person or on a bug. Some of the group bits control access to bugzilla features. And a person can't access a bug unless he has every group bit set diff --git a/buglist.cgi b/buglist.cgi index b5f5e1608d..1963578045 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -23,6 +23,7 @@ use diagnostics; use strict; require "CGI.pl"; +use Date::Parse; my $serverpush = 1; @@ -340,6 +341,57 @@ Click the Back button and try again."; } } +my $ref = $::MFORM{'chfield'}; + + +sub SqlifyDate { + my ($str) = (@_); + if (!defined $str) { + $str = ""; + } + my $date = str2time($str); + if (!defined $date) { + print "The string '$str' is not a legal date.\n"; + print "
Please click the Back button and try again.\n"; + exit; + } + return time2str("'%Y/%m/%d %H:%M:%S'", $date); +} + + + + + +if (defined $ref && 0 < @$ref) { + # Do surgery on the query to tell it to patch in the bugs_activity + # table. + $query =~ s/bugs,/bugs, bugs_activity,/; + + my @list; + foreach my $f (@$ref) { + push(@list, "\nbugs_activity.field = " . SqlQuote($f)); + } + $query .= "and bugs_activity.bug_id = bugs.bug_id and (" . + join(' or ', @list) . ") "; + $query .= "and bugs_activity.when >= " . + SqlifyDate($::FORM{'chfieldfrom'}) . "\n"; + my $to = $::FORM{'chfieldto'}; + if (defined $to) { + $to = trim($to); + if ($to ne "" && $to !~ /^now$/i) { + $query .= "and bugs_activity.when <= " . SqlifyDate($to) . "\n"; + } + } + my $value = $::FORM{'chfieldvalue'}; + if (defined $value) { + $value = trim($value); + if ($value ne "") { + $query .= "and bugs_activity.newvalue = " . + SqlQuote($value) . "\n"; + } + } +} + foreach my $f ("short_desc", "long_desc", "bug_file_loc", "status_whiteboard") { if (defined $::FORM{$f}) { diff --git a/globals.pl b/globals.pl index 409d12b63a..d6e18d2252 100644 --- a/globals.pl +++ b/globals.pl @@ -260,6 +260,7 @@ sub GenerateVersionTable { splice(@::log_columns, $w, 1); } } + @::log_columns = (sort(@::log_columns)); @::legal_priority = SplitEnumType($cols->{"priority,type"}); @::legal_severity = SplitEnumType($cols->{"bug_severity,type"}); diff --git a/makeactivitytable.sh b/makeactivitytable.sh index 047d81e7e3..9af62ef611 100755 --- a/makeactivitytable.sh +++ b/makeactivitytable.sh @@ -24,7 +24,6 @@ use bugs; drop table bugs_activity OK_ALL_DONE - mysql << OK_ALL_DONE use bugs; create table bugs_activity ( @@ -36,7 +35,8 @@ create table bugs_activity ( newvalue tinytext, index (bug_id), - index (when) + index (when), + index (field) ); diff --git a/query.cgi b/query.cgi index 88a690534e..08ac3f2245 100755 --- a/query.cgi +++ b/query.cgi @@ -31,13 +31,13 @@ use vars @::legal_resolution, @::legal_product, @::legal_bug_status, @::legal_priority, - @::legal_resolution, @::legal_opsys, @::legal_platform, @::legal_components, @::legal_versions, @::legal_severity, @::legal_target_milestone, + @::log_columns, %::versions, %::components, %::FORM; @@ -62,7 +62,8 @@ my %type; foreach my $name ("bug_status", "resolution", "assigned_to", "rep_platform", "priority", "bug_severity", "product", "reporter", "op_sys", - "component", "version", + "component", "version", "chfield", "chfieldfrom", + "chfieldto", "chfieldvalue", "email1", "emailtype1", "emailreporter1", "emailassigned_to1", "emailcc1", "emailqa_contact1", "email2", "emailtype2", "emailreporter2", @@ -92,6 +93,11 @@ foreach my $item (split(/\&/, $::buffer)) { } +if ($default{'chfieldto'} eq "") { + $default{'chfieldto'} = "Now"; +} + + my $namelist = ""; @@ -375,8 +381,26 @@ $emailinput2
+Changed in the
Where the field(s) + | + + | +changed. + |
+ |
+
changed to value |
+