From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27759 invoked from network); 19 Aug 2004 15:32:53 -0000 Received: from unknown (HELO lists.gnu.org) (199.232.76.165) by sourceware.org with SMTP; 19 Aug 2004 15:32:53 -0000 Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BxogL-0006iG-Lm for listarch-gnats-devel@sources.redhat.com; Thu, 19 Aug 2004 11:18:25 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1BxogE-0006hJ-3t for help-gnats@gnu.org; Thu, 19 Aug 2004 11:18:18 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1BxogA-0006gO-Vu for help-gnats@gnu.org; Thu, 19 Aug 2004 11:18:16 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BxogA-0006gE-Rq for help-gnats@gnu.org; Thu, 19 Aug 2004 11:18:14 -0400 Received: from [212.135.6.12] (helo=smarthost2.mail.uk.easynet.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Bxobj-0007Ob-IX for help-gnats@gnu.org; Thu, 19 Aug 2004 11:13:40 -0400 Received: from [217.207.170.178] (helo=gointernet.co.uk) by smarthost2.mail.uk.easynet.net with esmtp (Exim 4.10) id 1Bxobi-00028N-00 for help-gnats@gnu.org; Thu, 19 Aug 2004 16:13:38 +0100 Message-ID: <4124C3E2.4020508@gointernet.co.uk> Date: Thu, 19 Aug 2004 17:10:00 -0000 From: Adam Cade Organization: Go User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 X-Accept-Language: en-us, en MIME-Version: 1.0 To: help-gnats@gnu.org References: <20040813160030.2A9BB1C400D@mailfilter.gointernet.co.uk> In-Reply-To: <20040813160030.2A9BB1C400D@mailfilter.gointernet.co.uk> Subject: Re: Help-gnats Digest, Vol 21, Issue 7 X-BeenThere: help-gnats@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General discussion about GNU GNATS List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: multipart/mixed; boundary="===============0034120753==" Sender: help-gnats-bounces+listarch-gnats-devel=sources.redhat.com@gnu.org Errors-To: help-gnats-bounces+listarch-gnats-devel=sources.redhat.com@gnu.org X-SW-Source: 2004-q3/txt/msg00038.txt.bz2 This is a multi-part message in MIME format. --===============0034120753== Content-Type: multipart/alternative; boundary="------------060803050508050507010006" This is a multi-part message in MIME format. --------------060803050508050507010006 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 4959 ahh, sorry! GNATSWEB Thanks! help-gnats-request@gnu.org wrote: >Send Help-gnats mailing list submissions to > help-gnats@gnu.org > >To subscribe or unsubscribe via the World Wide Web, visit > http://lists.gnu.org/mailman/listinfo/help-gnats >or, via email, send a message with subject or body 'help' to > help-gnats-request@gnu.org > >You can reach the person managing the list at > help-gnats-owner@gnu.org > >When replying, please edit your Subject line so it is more specific >than "Re: Contents of Help-gnats digest..." > > >Today's Topics: > > 1. RE: Unparseable replies from GNATS server (Stuart Stevens) > 2. Failed to connect to gnatsweb server (Stuart Stevens) > 3. Re: Failed to connect to gnatsweb server (Chad Walstrom) > > >---------------------------------------------------------------------- > >Message: 1 >Date: Thu, 12 Aug 2004 10:26:50 -0700 >From: "Stuart Stevens" >Subject: RE: Unparseable replies from GNATS server >To: "'Stuart Stevens'" , > >Message-ID: >Content-Type: text/plain; charset="us-ascii" > >Hi > >Does anybody have a recommendation on how to add an append-only comments >field? > >I would like edits to allow new additions to the field and views to show the >whole field. > >Stuart > >-----Original Message----- >From: Stuart Stevens [mailto:stuart_stevens@sierralogic.com] >Sent: Wednesday, August 04, 2004 7:49 PM >To: 'Stuart Stevens'; help-gnats@gnu.org >Subject: RE: Unparseable replies from GNATS server > > > >In edit.c, set_field is being called with old_value set to 0x00. > > > > if ((old_value == NULL && new_value != NULL) > || (new_value == NULL && old_value != NULL) > || (new_value != old_value && strcmp (old_value, new_value) != 0)) > { > /* Ignore changes to readonly fields. */ > if (fieldDefForIndex (field)->readonly) > { > fieldsChanged[x] = 0; > set_field (new_pr, field, old_value, err); > } > else > { > fieldsChanged[x] = 1; > } > } > > > >-----Original Message----- >From: Stuart Stevens [mailto:stuart_stevens@sierralogic.com] >Sent: Wednesday, August 04, 2004 5:08 AM >To: 'Stuart Stevens'; help-gnats@gnu.org >Subject: RE: Unparseable replies from GNATS server > >I am running GNATS 4.0 on Linux - Red Hat 9. I pulled the TOT and rebuilt >this morning. I then run the daemon directly and I got a memory fault. The >daemon fails with the following field "Comment-new" added to dbconfig: > >field "Comments" { > multitext > read-only >} > >field "Comment-new" { > multitext > on-change { > append-to-field "Comments" { > "Comment added by %s on %D\n\n%s" > "$EditUserEmailAddress" "$CurrentDate" "$NewValue" > } > } > on-change { > set-field "Comment-new" { > "" > } > } >} > >I issued the following commands: > >lock 2511 stuart >editaddr stuart >edit 2511 > > >Next step is to get into the debugger. > >Any ideas? > >Thanks >Stuart > > > > > > > >------------------------------ > >Message: 2 >Date: Thu, 12 Aug 2004 20:06:17 -0700 >From: "Stuart Stevens" >Subject: Failed to connect to gnatsweb server >To: >Message-ID: >Content-Type: text/plain; charset="us-ascii" > > >I am trying to pull down the latest gnatsweb code and I was unable to login. >I used CVS 1.11.2 from behind a firewall. > > >cvs -d:pserver:anoncvs@subversions.gnu.org:/cvsroot/gnatsweb login >CVS password: >cvs [login aborted]: connect to subversions.gnu.org(199.232.41.3):2401 >failed: Connectit > > >-------------- next part -------------- >An HTML attachment was scrubbed... >URL: http://lists.gnu.org/pipermail/help-gnats/attachments/20040812/ffff46c9/attachment.html > >------------------------------ > >Message: 3 >Date: Fri, 13 Aug 2004 10:52:41 -0500 >From: Chad Walstrom >Subject: Re: Failed to connect to gnatsweb server >To: help-gnats@gnu.org >Message-ID: <20040813155241.GE21337@wookimus.net> >Content-Type: text/plain; charset="us-ascii" > >Stuart Stevens wrote: > > >>I am trying to pull down the latest gnatsweb code and I was unable to login. >>I used CVS 1.11.2 from behind a firewall. >> >> >>cvs -d:pserver:anoncvs@subversions.gnu.org:/cvsroot/gnatsweb login >>CVS password: >>cvs [login aborted]: connect to subversions.gnu.org(199.232.41.3):2401 >>failed: Connectit >> >> > >You're trying to connect to the subversion server for a CVS repository! >Bad! ;-) Take a look at this site for instructions: > >http://savannah.gnu.org/cvs/?group=gnatsweb > > > > -- Adam Cade , Go Internet Ltd email: adam@gointernet.co.uk voice: +44 (0)20 7419 0001 fax : +44 (0)20 7419 6519 web : www.gointernet.co.uk --------------060803050508050507010006 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit Content-length: 7252 ahh, sorry!

GNATSWEB

Thanks!

help-gnats-request@gnu.org wrote:
Send Help-gnats mailing list submissions to
	help-gnats@gnu.org

To subscribe or unsubscribe via the World Wide Web, visit
	http://lists.gnu.org/mailman/listinfo/help-gnats
or, via email, send a message with subject or body 'help' to
	help-gnats-request@gnu.org

You can reach the person managing the list at
	help-gnats-owner@gnu.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Help-gnats digest..."


Today's Topics:

   1. RE: Unparseable replies from GNATS server (Stuart Stevens)
   2. Failed to connect to gnatsweb server (Stuart Stevens)
   3. Re: Failed to connect to gnatsweb server (Chad Walstrom)


----------------------------------------------------------------------

Message: 1
Date: Thu, 12 Aug 2004 10:26:50 -0700
From: "Stuart Stevens" <stuart_stevens@sierralogic.com>
Subject: RE: Unparseable replies from GNATS server
To: "'Stuart Stevens'" <stuart_stevens@sierralogic.com>,
	<help-gnats@gnu.org>
Message-ID: <E1BvJQ6-0003es-Fk@lists.gnu.org>
Content-Type: text/plain;	charset="us-ascii"

Hi

Does anybody have a recommendation on how to add an append-only comments
field?

I would like edits to allow new additions to the field and views to show the
whole field.

Stuart

-----Original Message-----
From: Stuart Stevens [mailto:stuart_stevens@sierralogic.com] 
Sent: Wednesday, August 04, 2004 7:49 PM
To: 'Stuart Stevens'; help-gnats@gnu.org
Subject: RE: Unparseable replies from GNATS server



In edit.c, set_field is being called with old_value set to 0x00.



     if ((old_value == NULL && new_value != NULL)
         || (new_value == NULL && old_value != NULL)
         || (new_value != old_value && strcmp (old_value, new_value) != 0))
       {
         /* Ignore changes to readonly fields.  */
         if (fieldDefForIndex (field)->readonly)
           {
             fieldsChanged[x] = 0;
             set_field (new_pr, field, old_value, err);
           }
         else
           {
             fieldsChanged[x] = 1;
           }
       }

 

-----Original Message-----
From: Stuart Stevens [mailto:stuart_stevens@sierralogic.com]
Sent: Wednesday, August 04, 2004 5:08 AM
To: 'Stuart Stevens'; help-gnats@gnu.org
Subject: RE: Unparseable replies from GNATS server

I am running GNATS 4.0 on Linux - Red Hat 9.  I pulled the TOT and rebuilt
this morning.  I then run the daemon directly and I got a memory fault.  The
daemon fails with the following field "Comment-new" added to dbconfig:

field "Comments" {
    multitext
    read-only
}

field "Comment-new" {
    multitext
    on-change {
        append-to-field "Comments" {
                "Comment added by %s  on %D\n\n%s"
                "$EditUserEmailAddress" "$CurrentDate" "$NewValue"
        }
    }
    on-change {
        set-field "Comment-new" {
            ""
        }
    }
} 

I issued the following commands:

lock 2511 stuart
editaddr stuart
edit 2511
<email with changes>

Next step is to get into the debugger.

Any ideas?

Thanks
Stuart







------------------------------

Message: 2
Date: Thu, 12 Aug 2004 20:06:17 -0700
From: "Stuart Stevens" <stuart_stevens@sierralogic.com>
Subject: Failed to connect to gnatsweb server
To: <help-gnats@gnu.org>
Message-ID: <E1BvSRx-0003Fb-SV@lists.gnu.org>
Content-Type: text/plain; charset="us-ascii"


I am trying to pull down the latest gnatsweb code and I was unable to login.
I used CVS 1.11.2 from behind a firewall.


cvs -d:pserver:anoncvs@subversions.gnu.org:/cvsroot/gnatsweb login
CVS password:
cvs [login aborted]: connect to subversions.gnu.org(199.232.41.3):2401
failed: Connectit


-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.gnu.org/pipermail/help-gnats/attachments/20040812/ffff46c9/attachment.html

------------------------------

Message: 3
Date: Fri, 13 Aug 2004 10:52:41 -0500
From: Chad Walstrom <chewie@wookimus.net>
Subject: Re: Failed to connect to gnatsweb server
To: help-gnats@gnu.org
Message-ID: <20040813155241.GE21337@wookimus.net>
Content-Type: text/plain; charset="us-ascii"

Stuart Stevens wrote:
  
I am trying to pull down the latest gnatsweb code and I was unable to login.
I used CVS 1.11.2 from behind a firewall.


cvs -d:pserver:anoncvs@subversions.gnu.org:/cvsroot/gnatsweb login
CVS password:
cvs [login aborted]: connect to subversions.gnu.org(199.232.41.3):2401
failed: Connectit
    

You're trying to connect to the subversion server for a CVS repository!
Bad! ;-)  Take a look at this site for instructions:

http://savannah.gnu.org/cvs/?group=gnatsweb


  

-- 
Adam Cade , Go Internet Ltd
email: adam@gointernet.co.uk
voice: +44 (0)20 7419 0001
fax  : +44 (0)20 7419 6519
web  : www.gointernet.co.uk
--------------060803050508050507010006-- --===============0034120753== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline Content-length: 140 _______________________________________________ Help-gnats mailing list Help-gnats@gnu.org http://lists.gnu.org/mailman/listinfo/help-gnats --===============0034120753==--