public inbox for gnats-devel@sourceware.org
 help / color / mirror / Atom feed
From: "Stuart Stevens" <stuart_stevens@sierralogic.com>
To: "help-gnats" <help-gnats@gnu.org>
Subject: FW: [support #103527] Stored queries fail when fields contain a dash
Date: Mon, 01 Nov 2004 21:20:00 -0000	[thread overview]
Message-ID: <E1COjjB-0005Wv-SC@lists.gnu.org> (raw)


I am not sure how to submit defects.  I entered a tech support request which
follows.  The defect causes stored queries to fail depending on the query
and what field names contain a dash.  Most of our stored queries were
failing.

Stuart


 [support #103527] Full Item Snapshot:

URL: <http://savannah.gnu.org/support/?func=detailitem&item_id=103527>
Project: Gnatsweb
Submitted by: Stuart Stevens
On: Mon 11/01/2004 at 21:17

Category:  None
Priority:  5 - Normal
Severity:  7 - Major
Resolution:  None
Privacy:  Public
Assigned to:  None
Originator Email:  
Status:  Open


Summary:  Stored queries fail when fields contain a dash

Original Submission:  Stored queries are stripped of fields with no values.
The pattern used is "/w+=;/" which does not include dashes.  Fields that are
split improperly cause the parser to make an incorrect query when the wuery
is reexecuted.

    Date: Friday, October 29, 2004 @ 10:20:00
  Author: stuart
    Path: /cvsroot/firmware/gnats/gnatsweb

Modified: gnatsweb.pl (1.1.1.1 -> 1.2)

GNAT 50087 Field names with dashes are removed intact


-------------+
 gnatsweb.pl |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)


Index: firmware/gnats/gnatsweb/gnatsweb.pl
diff -u firmware/gnats/gnatsweb/gnatsweb.pl:1.1.1.1
firmware/gnats/gnatsweb/gnatsweb.pl:1.2
--- firmware/gnats/gnatsweb/gnatsweb.pl:1.1.1.1	Thu Oct 28 14:41:11 2004
+++ firmware/gnats/gnatsweb/gnatsweb.pl	Fri Oct 29 10:20:00 2004
@@ -20,7 +20,7 @@
 # Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 # 02111-1307, USA.
 #
-# $Id: gnatsweb.pl,v 1.1.1.1 2004/10/28 21:41:11 stuart Exp $
+# $Id: gnatsweb.pl,v 1.2 2004/10/29 17:20:00 stuart Exp $
 #
 
 use strict;
@@ -241,7 +241,7 @@
 
 # Version number + RCS revision number
 $VERSION = '4.00';
-my $REVISION = (split(/ /, '$Revision: 1.1.1.1 $ '))[1];
+my $REVISION = (split(/ /, '$Revision: 1.2 $ '))[1];
 my $GNATS_VERS = '0.0';
 
 # bits in fieldinfo(field, flags) has (set=yes not-set=no)
@@ -2585,8 +2585,10 @@
 
   # strip empty params out of $query_string.  in a gnats db with many
   # fields, the query-string will become very long, and may exceed the
-  # 4K limit for cookies.
-  $query_string =~ s/w+=;//g;
+  # 4K limit for cookies.  The pattern must match escaped field names
+  # and include dashes.  A field name cannot contain ":" or ">".  If
+  # it contains a ";" or a left or right arrow then the HTML will fail.
+  $query_string =~ s/[^ =;:>]+=;//g;
 
   if (length($query_string . $global_cookie_path .
"gnatsweb-query-$queryname") > 4050) {
     # this cookie is going to be longer than 4K, so we'll have to punt












For detailed info, follow this link:
<http://savannah.gnu.org/support/?func=detailitem&item_id=103527>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/






_______________________________________________
Help-gnats mailing list
Help-gnats@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnats

                 reply	other threads:[~2004-11-01 21:20 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1COjjB-0005Wv-SC@lists.gnu.org \
    --to=stuart_stevens@sierralogic.com \
    --cc=help-gnats@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).