[Zope3-dev] XML-RPC fails without error messages

2007-01-02 Thread Tim Terlegård
After doing stuff with XML-RPC I noticed that errors are never shown in the console. Exceptions are always shown when HTTP is used though. It's a tremendous help. Is there some reason why errors should not be displayed when using XML-RPC? handleException() in

[Zope3-dev] IFolder and IAdding

2006-10-21 Thread Tim Terlegård
There's a really useful method add in IAdding. As the novice zope3 developer I am I would like that method in IFolder (as well). Is there a good reason why IFolder or IWriteContainer doesn't have an add method? It's possible to add content to an IFolder through the IWriteContainer API, but I'd

Re: [Zope3-dev] IFolder and IAdding

2006-10-21 Thread Tim Terlegård
I want to use a formlib add form and I have a view called addEvent: browser:page for=zope.app.folder.interfaces.IFolder name=addEvent class=.eventforms.EventAddForm permission=zope.ManageContent / I changed the class argument to be a new class called

[Zope3-dev] formlib configuration

2006-10-21 Thread Tim Terlegård
What is the recommended way to redirect to some page after a formlib form is submitted or cancelled? Is it perhaps to override the action method? I don't find any directives for formlib. Are there any? I think redirection is a common task and to me it would make sense to have configuration