Re: [Zope-dev] More ZSQL weirdness (this time with Python Scripts ;-)

2001-03-23 Thread Chris Withers
Dieter Maurer wrote: Error Type: Bad Request Error Value: ['sec'] This is an old one ZSQL method's do not use the DTML namespace (where you "sec" goes to) Slaps forhead Thankyou, I wonder what needs to be done to make ZSQL methods work like everything else? cheers, Chris

[Zope-dev] ZEO question.

2001-03-23 Thread Chris Withers
Firstup, a quickie, where's the ZEO list gone? http://lists.python.org/mailman/listinfo/Zope-ZEO ...gives me: No such list zope-zeo And now onto the reason I was looking for that list: -WinNT 4.0 -Zope 2.3.1b1 -ZEO 0.4.1 E:\Zope\2.3.1b1python lib/python/ZEO/start.py -p 8000 Traceback

Re: [Zope-dev] ZEO question.

2001-03-23 Thread Martijn Pieters
On Fri, Mar 23, 2001 at 10:23:23AM +, Chris Withers wrote: Firstup, a quickie, where's the ZEO list gone? http://lists.python.org/mailman/listinfo/Zope-ZEO ...gives me: No such list zope-zeo It was renamed ZODB-Dev somewhere last month:

[Zope-dev] ZEO question.

2001-03-23 Thread Duncan Booth
And now onto the reason I was looking for that list: -WinNT 4.0 -Zope 2.3.1b1 -ZEO 0.4.1 E:\Zope\2.3.1b1python lib/python/ZEO/start.py -p 8000 Traceback (innermost last): File "lib/python/ZEO/start.py", line 315, in ? if __name__=='__main__': main(sys.argv) File

Re: [Zope-dev] ZEO question.

2001-03-23 Thread Andy
There is a second line to mess with, something about os.ppid I think. We should really have these changes made to the source - Original Message - From: "Chris Withers" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 23, 2001 2:23 AM Subject: [Zope-dev] ZEO question.

Re: [Zope-dev] ZEO question.

2001-03-23 Thread Duncan Booth
> > There is a second line to mess with, something about os.ppid I think. > We should really have these changes made to the source > Yes, you have to change line 310: open(zeo_pid,'w').write("%s %s" % (os.getppid(), os.getpid())) to: open(zeo_pid,'w').write("%s" % (os.getpid())) I have

Re: [Zope-dev] ZEO question.

2001-03-23 Thread Bill Anderson
On 23 Mar 2001 13:37:44 +, Duncan Booth wrote: ... BTW, I have managed to get ZEO running as an NT service complete with Core Session in a mounted BerkeleyDB 3.2 storage. I'd be interested in the BerkelyDB part, mind posting how you got the last part?

[Zope-dev] FastCGI question

2001-03-23 Thread sam gendler
I haven't used Zope to any significant degree in over a year. When I was last using Zope regularly, FastCGI still had some stability issues, which made it difficult to use in a production environment. However, I have always felt that FastCGI was the better solution when choosing between proxy,

[Zope-dev] Transparent Folder bug?

2001-03-23 Thread Andy McKay
Am I imagining it or do I have a transparent folders bug? It would seem that transparent folders adds an extra namespace to my objects and it searches through sub folders eg: Folder X: Document Foo. In the root with transparent folders i can happily call dtml-var Foo when I should not have

Re: [Zope-dev] Transparent Folder bug?

2001-03-23 Thread Andy McKay
Saying that I can now only reproduce this wierdness under certain circumstances. Id ignore this until I can find a solid example... Sorry -- Andy McKay. - Original Message - From: "Andy McKay" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 23, 2001 4:27 PM Subject:

RE: [Zope-dev] Transparent Folder bug?

2001-03-23 Thread Randall F. Kern
I had that problem a while back but forgot to report it to Mr. Transparent Folders (sorry...) Anyway, this patch to TransparentFoldersPatch.py should fix you right up: def _getattr(self, name): # This is the new ObjectManager.__getattr__(). If an object by the # given ID is

[Zope-dev] ParsedXML 1.0 released

2001-03-23 Thread Karl Anderson
We've just released ParsedXML 1.0, the first stable release. It can be downloaded from zope.org at http://www.zope.org/Members/karl/ParsedXML/ParsedXML. Parsed XML allows you to use XML objects in the Zope environment. You can create XML documents in Zope and leverage Zope to format, query,

Re: [Zope-dev] Transparent Folder bug?

2001-03-23 Thread Andy McKay
Thanks, I applied that patch and it didnt seem to help. Since this will production shortly I removed all traces of transparent folder. I have huge folders again, but thankfully Acquistion works properly. Thanks for your help. -- Andy McKay. - Original Message - From: "Randall F.