[Zope-dev] Security-Problem

2003-02-18 Thread Andre Schubert
Hi all, i have a little Security-Problem which results in the following Error reported by Shane Hathaway's nice VerboseSecurity: Error Type: Unauthorized Error Value: The owner of the executing script does not have the required permission. Access to 'foobar' of (Folder instance at 932b600)

Re: [Zope-dev] Security-Problem

2003-02-18 Thread Shane Hathaway
On 02/18/2003 09:16 AM, Andre Schubert wrote: I try to explain what happens. Lets say i have a user called foo who has Manager-Roles across a Zope-site. foo has added 2 DTMLMethods to a folder called bar and foobar. foobar is called from inside bar (dtml-call foobar). He also created a Role

Re: [Zope-dev] How can I tell what a Zope Process is doing?

2003-02-18 Thread Leonardo Rochael Almeida
On Tue, 2003-02-18 at 13:04, Chris Withers wrote: [...] The problem is that I'm having a pretty hard time figuring out what this process is doing and how I can prevent it. So, does anyone have any idea how I can find out? This page has really helped me in the past

[Zope-dev] Zope 2.5.1 with ZEO 2.0.2

2003-02-18 Thread Brian R Brinegar
Hello, We are trying to upgrade the ZEO component of our Zope 2.5.1 system from ZEO 1.0 to ZEO 2.0.2. We are using Python 2.1.3, everything is compiled from source. Everything installs and starts fine, however when a request is made to the ZEO Client it hangs. The ZEO Server log shows no

Re: [Zope-dev] How can I tell what a Zope Process is doing?

2003-02-18 Thread Toby Dickenson
On Tuesday 18 February 2003 4:04 pm, Chris Withers wrote: Hi, I have a Zope instance whose memory usage is ballooning every so often (to 800Mb or so :-S) Now, I can see using top that one Zope process is using a lot of CPU and I'm guessing it's doing some silly iteration that's dragging huge

[Zope-dev] RDF Musings and TinyTables

2003-02-18 Thread Shane Hathaway
I just read the RDF article published here: http://www.xml.com/pub/a/2003/02/12/rdflib.html I've understood the mechanics of RDF for a while, but never understood what makes it better than what we already have. Now I think I get it: RDF theory is a new kind of database abstraction. It's

Re: [Zope-dev] Security-Problem

2003-02-18 Thread Joachim Werner
Andre Schubert schrieb: Hi all, i have a little Security-Problem which results in the following Error reported by Shane Hathaway's nice VerboseSecurity: Error Type: Unauthorized Error Value: The owner of the executing script does not have the required permission. Access to 'foobar' of (Folder

[Zope-dev] zope connector

2003-02-18 Thread Tena Sakai
Folks, I am interested in accessing resorcces from two or more zope servers. For example, br hahaha! br dtml-var name=funny br hohoho! br The code snippet above will, when rendered, yield: hahaha! hehehe! hohoho! provided that the entity funny ultamately

[Zope-dev] Transcience getId() KeyError

2003-02-18 Thread Alan Runyan
Using Zope2.6.0 final on FreeBSD; Python 2.1.3 this is at iMeme. Question: I thought I read Tim squashed most (all?) of the known bugs in BTree's in 2.6. Is this true? Has anyone seen this? in a Product i'm using/wrote... we try to get the SESSION.getId() and get a KeyError. Here is the

RE: [Zope-dev] zope connector

2003-02-18 Thread sean . upton
Use ZEO and DBTab and a shared mounted object database that both Zope instances have access to. Put any objects that need to be accessed by both Zope servers in that common storage mounted at some folder-level in your zope setup. Sean -Original Message- From: Tena Sakai [mailto:[EMAIL

Re: [Zope-dev] Transcience getId() KeyError

2003-02-18 Thread Chris McDonough
I think BTrees still have some bugs. 2.6.1 has a workaround for this very issue, or you can just replace the Transience package itself from CVS. On Tue, 2003-02-18 at 17:01, Alan Runyan wrote: Using Zope2.6.0 final on FreeBSD; Python 2.1.3 this is at iMeme. Question: I thought I read Tim

[Zope-dev] Re: [Zope] passing browser Id value #2

2003-02-18 Thread Dieter Maurer
Mario Bianchi wrote at 2003-2-17 18:17 +: The point is that the parsing and embedding are to be performed 'on exit' -so to say-, i.e. when Zope has already processed the web request and built an HTML page to be sent back. You want to change the RESPONSE method setBody, maybe

Re: [Zope-dev] Security-Problem

2003-02-18 Thread Andre Schubert
On Tue, 18 Feb 2003 12:01:45 -0500 Shane Hathaway [EMAIL PROTECTED] wrote: On 02/18/2003 09:16 AM, Andre Schubert wrote: I try to explain what happens. Lets say i have a user called foo who has Manager-Roles across a Zope-site. foo has added 2 DTMLMethods to a folder called bar and foobar.