Re: [Zope-dev] Python products

2001-02-07 Thread Jens Quade
Chris Withers <[EMAIL PROTECTED]> writes: > You may have to do somethign funky if you want to limit the types of object that subclasses of ZClass: ObjectManager have a "Subobjects" tab to limit the allowed meta types of the subobjects. Not all Folder features, but often less is more :) jens

[Zope-dev] Re: recent CVS update: dc/pyexpat, also: cPersistence stuff

2001-03-28 Thread Jens Quade
Steve Spicklemire <[EMAIL PROTECTED]> writes: > Hmm.. anybody seen this? Yes, but it's already gone... See http://lists.zope.org/pipermail/zope-checkins/2001-March/date.html for details. Anyway, I had to remove lib/python/Shared/DC/xml/pyexpat/Setup manually to build dcpyexpat.o, which was renam

[Zope-dev] DateTime: ISO date range limited

2001-10-29 Thread Jens Quade
Hi, I'd expect the following shouldn't raise an exception: [current Zope CVS] >>> x=DateTime(1000,1,1) >>> y=DateTime(x.HTML4()) Traceback (most recent call last): File "", line 1, in ? File "/home/jens/work/NGServer/dcCVS/Zope/lib/python/DateTime/DateTime.py", line 716, in __init__ yr

Re: [Zope-dev] DateTime: ISO date range limited

2001-10-29 Thread Jens Quade
"Andreas Jung" <[EMAIL PROTECTED]> writes: > This is a limitation of time.mktime() in Python but not of Zope. > The ValueError seems not to be documented in the Python docs. Yes, but it's the only call to 'mktime' in 'DateTime.py' and it seems that calling it is unnecessary. jens __

Re: [Zope-dev] improving str(REQUEST)

2001-10-30 Thread Jens Quade
seb bacon <[EMAIL PROTECTED]> writes: > Yes, I think you are right about collapsible trees getting in the way > when debugging. Where trees are useful is when you don't know what > you are looking for, i.e. newbies trying to understand Zope, so I > think there's still a case for it. A short int

Re: [Zope-dev] yes, segv11 and Broken pipes

2001-12-09 Thread Jens Quade
"Chris McDonough" <[EMAIL PROTECTED]> writes: > These failure reports are alarming, but I haven't seen > anything like them, and of course we can't fix what we can't > find. If anybody can make the problem recur repeatably, we > can almost certainly fix it. > > Sorry, > > - C > > > On Sun, 0

Re: [Zope-dev] yes, segv11 and Broken pipes

2001-12-10 Thread Jens Quade
"Dirk Datzert" <[EMAIL PROTECTED]> writes: > Its a Linux 2.2.19. What does IIRC means ? If I remember correctly. I could fix the problem (or a similar one) last summer by changing the Linux kernel. http://mailman.beehive.de/pipermail/zope/2001-June/000590.html http://mailman.beehive.de/piperma

Re: [Zope-dev] python scripts and variables

2002-03-05 Thread Jens Quade
Sebastian Sippl <[EMAIL PROTECTED]> writes: > I am starting a python script within a python script. like, context.script2(parameters,...)? > how do i pass the variables from one to the other? Use the parameter list. > container.py2 request