[Zope-dev] cvs checkin?

2001-04-16 Thread Andy McKay
Im assuming I dont have a right to do cvs checkins... so how do I get this tiny stupid little change made, just email Brian ;P? Make newline_to_br xml compliant br / instead of br: --- d:\Zope-2.3.0-src\lib\python\DocumentTemplate\old_DT_Var.py Mon Apr 16 08:23 :10 2001 +++

Re: [Zope-dev] cvs checkin?

2001-04-16 Thread Casey Duncan
Andy McKay wrote: Im assuming I dont have a right to do cvs checkins... so how do I get this tiny stupid little change made, just email Brian ;P? Collector? Works for me 8^) http://classic.zope.org:8080/Collector -- | Casey Duncan | Kaivo, Inc. | [EMAIL PROTECTED] `--

Re: [Zope-dev] cvs checkin?

2001-04-16 Thread Andy McKay
M Subject: Re: [Zope-dev] cvs checkin? Andy McKay wrote: Im assuming I dont have a right to do cvs checkins... so how do I get this tiny stupid little change made, just email Brian ;P? Collector? Works for me 8^) http://classic.zope.org:8080/Collector -- | Casey Duncan | K

Re: [Zope-dev] cvs checkin?

2001-04-16 Thread R. David Murray
On Mon, 16 Apr 2001, Andy McKay wrote: I suppose, its just not really a bug and I've always thought of the collector as bug db. One of the options when you submit is "feature request w/patch". So the "bug collector" probably needs a name change... On the other hand, we all know about the

Re: [Zope-dev] cvs checkin?

2001-04-16 Thread Jonothan Farr
if find(v,'\r') = 0: v=join(split(v,'\r'),'') -if find(v,'\n') = 0: v=join(split(v,'\n'),'br\n') +if find(v,'\n') = 0: v=join(split(v,'\n'),'br /\n') Out of curiosity, what is the reason for using join(split(...)) instead of just replace()? Is it really faster or something?

RE: [Zope-dev] cvs checkin?

2001-04-16 Thread Brian Lloyd
if find(v,'\r') = 0: v=join(split(v,'\r'),'') -if find(v,'\n') = 0: v=join(split(v,'\n'),'br\n') +if find(v,'\n') = 0: v=join(split(v,'\n'),'br /\n') Out of curiosity, what is the reason for using join(split(...)) instead of just replace()? Is it really faster or