Re: [Zope] Documentation and Books

2006-04-18 Thread Bakhtiar A Hamid
On 4/19/06, Erik Billing <[EMAIL PROTECTED]> wrote: I quite recently began looking at Zope and now I'm looking for a good book on the subject. I'm fairly familiar with both Python and webapp development in general, so I'm looking for a book covering pretty much everything about Zope I need to know,

[Zope] Cookie Crumbler/Authentication Question

2006-04-18 Thread Palermo, Tom
All,   I am working on a site that uses CookieCrumbler for the authentication. Part of this site allows a user to change their password via this line: userfolder.manage_users(submit='Change', REQUEST=user_info).   This works fine except after changing the password, the user is no longer aut

[Zope] Documentation and Books

2006-04-18 Thread Erik Billing
I quite recently began looking at Zope and now I'm looking for a good book on the subject. I'm fairly familiar with both Python and webapp development in general, so I'm looking for a book covering pretty much everything about Zope I need to know, rather then an introduction. I've read a few review

Re: [Zope] DELETE Objects

2006-04-18 Thread Erik Billing
Ok. If proxy is the way to do it, then it is so, even thaw I still think it's a little backwords. But you have a good point Stefan, of course objects may be viewed as an property of the parent container, and the permissions follows from that.  And of course it's not much of a problem to do the se

Re: [Zope] Getting www.domain.com:8080/manage to go through Apache

2006-04-18 Thread michael nt milne
ok, thanks. Does anyone know how to re-write everything going through /manage/ ? I realise this isn't an apache list but I've received some great help here. On 4/18/06, Chris Withers <[EMAIL PROTECTED]> wrote: michael nt milne wrote:> *However* these panes all fill with 404s, page not found which s

Re: [Zope] Permissions, files and folders

2006-04-18 Thread Erik Billing
Ok. I didn't find any epidoc on plone at a first googleing, but I have a closer look and post the link here if I find it. I solved some of the API doc problem by starting a local pydoc server (ex. pydoc -p 8079) which cover even the zope modules when I put them in the python path. But I'm still

Re: [Zope] DELETE Objects

2006-04-18 Thread Alexis Roda
Erik Billing escribió: Ok. Thanx. But why is it like this? I imagine that deleting an object in a folder where I do not have permission to delete every object, or the folder itself, is a quite common task. Using the manage_delObjects and a proxy really feels like I'm fighting the zope securit

[Zope] Custom 404 - Resource not found

2006-04-18 Thread Andy Yates
Is there a way to customize the Zope 404 error page? Site Error An error was encountered while publishing this resource. Resource not found Changing standard_error_message does not seem change this error page. I need to do this inside Zope or via the apache front end which talks to Zope through

Re: [Zope] Some installation glitches

2006-04-18 Thread Andrew Sawyers
> Andrew Sawyers wrote: >> I'm running Suse 10 - and I've got both /usr/lib and /usr/lib64 >> I don't believe that dependency has anything to do with Zope. >> >> > If I take the zope distribution tarball and do the configure, make, make > install dance, I get a 'lib64' directory inside the Zope in

Re: [Zope] Permissions, files and folders

2006-04-18 Thread Dieter Maurer
Erik Billing wrote at 2006-4-18 11:42 +0200: >Thank you, that worked nicely. But I was unable to call the LazyFilter from >the DTML document, I figure I have to import the ZTUtils module first. Is >there a special DTML-tag to do import? No, you have to go through a Python Script. But, you can mak

RE: No memory leak! (was: Re: [Zope] Memory Leak in Session Data Container)

2006-04-18 Thread Dieter Maurer
Andy Yates wrote at 2006-4-17 16:35 -0500: > ... >/Control_Panel/Database/temporary/manage_cacheParameters >Total number of objects in the database369885 >Total number of objects in memory from all caches15341 >Target number of objects in memory per cache5000 > >It seems odd to me that

Re: [Zope] Groupware in zope

2006-04-18 Thread Dieter Maurer
Saura Ramachandran wrote at 2006-4-18 10:50 +0530: > Is there a groupware in Zope with features like wiki, forum, >filemanager and other project management stuff in zope or plone? >Please share your experiences. You may have a look at CPS. -- Dieter ___

[Zope] Re: Groupware in zope

2006-04-18 Thread Rob Miller
Saura Ramachandran wrote: Hi, Is there a groupware in Zope with features like wiki, forum, filemanager and other project management stuff in zope or plone? Please share your experiences. you might find the Plone-based OpenCore software that is driving the openplans.org site useful. it's fe

Re: [Zope] DELETE Objects

2006-04-18 Thread Erik Billing
Ok. Thanx. But why is it like this? I imagine that deleting an object in a folder where I do not have permission to delete every object, or the folder itself, is a quite common task. Using the manage_delObjects and a proxy really feels like I'm fighting the zope security instead of getting supp

Re: [Zope] DELETE Objects

2006-04-18 Thread Andreas Jung
--On 18. April 2006 17:53:32 +0200 Erik Billing <[EMAIL PROTECTED]> wrote: Ok. Thanx. But why is it like this? I imagine that deleting an object in a folder where I do not have permission to delete every object, or the folder itself, is a quite common task. Using the manage_delObjects and a pr

Re: [Zope] DELETE Objects

2006-04-18 Thread Stefan H. Holek
Deletion *is* an operation on the container because it a) removes an attribute from the container b) removes an entry from the container's _objects tuple DELETE is for WebDAV. You options are a) Python Script with proxy role b) External Method (or another form of unrestricted Python code) Stefa

[Zope] Export html

2006-04-18 Thread [EMAIL PROTECTED]
Hello, I have an archetype, I want to export the html that I see in the view mode to a rtf (or similar) format. I tried to use the product "RTFExport" but it doesn't export from HTML (or I don't know how to do this). I have found the product "PloneOOoTransforms" , does anybody have experience with

Re: [Zope] DELETE Objects

2006-04-18 Thread Andreas Jung
--On 18. April 2006 14:15:48 +0200 Erik Billing <[EMAIL PROTECTED]> wrote: I want to create a python script that deletes a specific file from a folder. For now, the user who is calling the script does not have the Delete objects permission on the folder, only the file which he should be able t

[Zope] DELETE Objects

2006-04-18 Thread Erik Billing
I want to create a python script that deletes a specific file from a folder. For now, the user who is calling the script does not have the Delete objects permission on the folder, only the file which he should be able to delete. I have previously used the delObjects method on the folder to remo

Re: [Zope] Permissions, files and folders

2006-04-18 Thread Erik Billing
Thank you, that worked nicely. But I was unable to call the LazyFilter from the DTML document, I figure I have to import the ZTUtils module first. Is there a special DTML-tag to do import?  By the way? Is there some obvious documentation about the different modules that I have missed? As I mention

Re: [Zope] Windows Server 2003, II6 and ASP404 vs form posts

2006-04-18 Thread Chris Withers
Steve McMahon wrote: Anyone out there using Zope inside IIS 6 on Server 2003 via the ASP404 technique? Probably not. Just put Apache in front of IIS and have it do the rewriting. You'll likely protect your poor little IIS server a lot in the process ;-) cheers, Chris -- Simplistix - Conte

Re: [Zope] Getting www.domain.com:8080/manage to go through Apache

2006-04-18 Thread Chris Withers
michael nt milne wrote: *However* these panes all fill with 404s, page not found which seems strange considering I am able to get the login and front page ok.. Not at all, you only rewrite ^/manage(.*), nothing else will get rewritten. This is an Apache configuration issue, your best bet is to