[Zope3-Users] Problem with Python 2.4.4

2006-10-24 Thread Torvald Bringsvor
I guess this may be a Python problem rather than a
zope problem, but I just thought I'd check here.

I have set up Zope 3.3.0 with Python 2.4.4, and it
didn't quite work. Some operations such as adding a
content object provoked an error from cgi.py line 716,
this line reads:
  line = self.fp.readline(116)

and then Python reacts that readline should have max
one argument, but it gets two. By correcting it to
   line = self.fp.readline()

everything works well.

Have anybody else had this problem?

-Torvald
___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] Problem with Python 2.4.4

2006-10-24 Thread Jim Fulton

Torvald Bringsvor wrote:

I guess this may be a Python problem rather than a
zope problem, but I just thought I'd check here.

I have set up Zope 3.3.0 with Python 2.4.4, and it
didn't quite work. Some operations such as adding a
content object provoked an error from cgi.py line 716,
this line reads:
  line = self.fp.readline(116)

and then Python reacts that readline should have max
one argument, but it gets two. By correcting it to
   line = self.fp.readline()

everything works well.

Have anybody else had this problem?


You should report this in the Zope 3 collector,
http://www.zope.org/Collectors/Zope3-dev.

It looks like Zope's file stream object that it passes to
the CGI module needs to grow a maximum size.

Jim

--
Jim Fulton   mailto:[EMAIL PROTECTED]   Python Powered!
CTO  (540) 361-1714http://www.python.org
Zope Corporation http://www.zope.com   http://www.zope.org
___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] Problem with Python 2.4.4

2006-10-24 Thread Thierry Florac
Le mardi 24 octobre 2006 à 07:51 -0400, Jim Fulton a écrit :
 Torvald Bringsvor wrote:
  I guess this may be a Python problem rather than a
  zope problem, but I just thought I'd check here.
  
  I have set up Zope 3.3.0 with Python 2.4.4, and it
  didn't quite work. Some operations such as adding a
  content object provoked an error from cgi.py line 716,
  this line reads:
line = self.fp.readline(116)
  
  and then Python reacts that readline should have max
  one argument, but it gets two. By correcting it to
 line = self.fp.readline()
  
  everything works well.
  
  Have anybody else had this problem?
 
 You should report this in the Zope 3 collector,
 http://www.zope.org/Collectors/Zope3-dev.
 
 It looks like Zope's file stream object that it passes to
 the CGI module needs to grow a maximum size.

Hi,

I had the same problem on Debian GNU/Linux.
Problem is due to a security patch applied on cgi.py in Debian's
unstable release.


  Thierry Florac
-- 
  Chef de projet intranet/internet
  Office National des Forêts - Département Informatique
  2, Avenue de Saint-Mandé
  75570 PARIS Cedex 12
  Mél : [EMAIL PROTECTED]
  Tél. : +33 01.40.19.59.64
  Fax. : +33 01.40.19.59.85

___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] Problem with Python 2.4.4

2006-10-24 Thread Marius Gedminas
On Tue, Oct 24, 2006 at 02:00:05PM +0200, Thierry Florac wrote:
 Le mardi 24 octobre 2006 à 07:51 -0400, Jim Fulton a écrit :
  Torvald Bringsvor wrote:
   I have set up Zope 3.3.0 with Python 2.4.4, and it
   didn't quite work. Some operations such as adding a
   content object provoked an error from cgi.py line 716,
   this line reads:
 line = self.fp.readline(116)
   
   and then Python reacts that readline should have max
   one argument, but it gets two. By correcting it to
  line = self.fp.readline()
   
   everything works well.
   
   Have anybody else had this problem?
  
  You should report this in the Zope 3 collector,
  http://www.zope.org/Collectors/Zope3-dev.
  
  It looks like Zope's file stream object that it passes to
  the CGI module needs to grow a maximum size.
 
 I had the same problem on Debian GNU/Linux.
 Problem is due to a security patch applied on cgi.py in Debian's
 unstable release.

I've fixed this bug a couple of weeks ago.  It was
http://www.zope.org/Collectors/Zope3-dev/535

(It's not marked as resolved, because the Zope file stream object
discards the maximum size, circumventing the CGI security patch, and
that's because Twisted's file stream object doesn't accept a maximum
size).

Marius Gedminas
-- 
Read what I mean, not what I write.


signature.asc
Description: Digital signature
___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] Problem with Python 2.4.4

2006-10-24 Thread Jim Fulton

Marius Gedminas wrote:

On Tue, Oct 24, 2006 at 02:00:05PM +0200, Thierry Florac wrote:

Le mardi 24 octobre 2006 à 07:51 -0400, Jim Fulton a écrit :

Torvald Bringsvor wrote:

I have set up Zope 3.3.0 with Python 2.4.4, and it
didn't quite work. Some operations such as adding a
content object provoked an error from cgi.py line 716,
this line reads:
  line = self.fp.readline(116)

and then Python reacts that readline should have max
one argument, but it gets two. By correcting it to
   line = self.fp.readline()

everything works well.

Have anybody else had this problem?

You should report this in the Zope 3 collector,
http://www.zope.org/Collectors/Zope3-dev.

It looks like Zope's file stream object that it passes to
the CGI module needs to grow a maximum size.

I had the same problem on Debian GNU/Linux.
Problem is due to a security patch applied on cgi.py in Debian's
unstable release.


I've fixed this bug a couple of weeks ago.  It was
http://www.zope.org/Collectors/Zope3-dev/535

(It's not marked as resolved, because the Zope file stream object
discards the maximum size, circumventing the CGI security patch, and
that's because Twisted's file stream object doesn't accept a maximum
size).


I wonder if a newer version of twisted fixes this.

I wonder why we aren't using 2.2.

Jim

--
Jim Fulton   mailto:[EMAIL PROTECTED]   Python Powered!
CTO  (540) 361-1714http://www.python.org
Zope Corporation http://www.zope.com   http://www.zope.org
___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users


Re: [Zope3-Users] Problem with Python 2.4.4

2006-10-24 Thread Marius Gedminas
On Tue, Oct 24, 2006 at 10:42:41AM -0400, Jim Fulton wrote:
 Marius Gedminas wrote:
 I've fixed this bug a couple of weeks ago.  It was
 http://www.zope.org/Collectors/Zope3-dev/535
 
 (It's not marked as resolved, because the Zope file stream object
 discards the maximum size, circumventing the CGI security patch, and
 that's because Twisted's file stream object doesn't accept a maximum
 size).
 
 I wonder if a newer version of twisted fixes this.

http://twistedmatrix.com/trac/ticket/1451 says it was fixed on Oct 10
(ten days ago).

 I wonder why we aren't using 2.2.

Marius Gedminas
-- 
Go not unto the Usenet for advice, for you will be told both yea and nay (and
quite a few things that just have nothing at all to do with the question).


signature.asc
Description: Digital signature
___
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users