[Zope3-Users] Re: state of pure Zope 3 CMSs?

2006-08-07 Thread Tonico Strasser
Andreas Reuleaux schrieb: I wonder what is that state of pure Zope 3 CMSs? Good question! Tonico ___ Zope3-users mailing list Zope3-users@zope.org http://mail.zope.org/mailman/listinfo/zope3-users

[Zope3-Users] zope3's TAL & ZPT reference

2006-08-07 Thread Michele Amori
Hello all, actually I'm a zope newbie. I must develop web applications with zope 3.2, in the next future, so I'd like some help from this ML. I'm searching for a ZPT (or TAL) reference for Zope 3...where is it? Thank you, -- Michele ___ Zope3-users mai

[Zope3-Users] nextURL not working as expected

2006-08-07 Thread Florian Lindner
Hello, I habe a view class derived from zope.formlib.form.AddForm: class AddLink(form.AddForm): form_fields = form.fields(ILink) def createAndAdd(self, data): self.link = Link() self.link.title = data['title'] self.link.description = data['description']

Re: [Zope3-Users] zope3's TAL & ZPT reference

2006-08-07 Thread Andreas Jung
--On 7. August 2006 14:57:16 +0200 Michele Amori <[EMAIL PROTECTED]> wrote: Hello all, actually I'm a zope newbie. I must develop web applications with zope 3.2, in the next future, so I'd like some help from this ML. I'm searching for a ZPT (or TAL) reference for Zope 3...where is it? L

Re: [Zope3-Users] nextURL not working as expected

2006-08-07 Thread Andreas Reuleaux
I am using nextURL() in a similar fashion (only using create(), no add part) and it works fine for me, i. e. I am redirected as expected, see the code snippet below. I guess with the line self.context[data["title"]] = self.link your are trying to add the object. - This is just my guess: You

Re: [Zope3-Users] zope3's TAL & ZPT reference

2006-08-07 Thread Florian Lindner
Am Montag, 7. August 2006 14:57 schrieb Michele Amori: > Hello all, > actually I'm a zope newbie. I must develop web applications with zope 3.2, > in the next future, so I'd like some help from this ML. > I'm searching for a ZPT (or TAL) reference for Zope 3...where is it? Take a look here: http:

Re: [Zope3-Users] zope3's TAL & ZPT reference

2006-08-07 Thread Gary Poster
On Aug 7, 2006, at 11:10 AM, Florian Lindner wrote: Am Montag, 7. August 2006 14:57 schrieb Michele Amori: Hello all, actually I'm a zope newbie. I must develop web applications with zope 3.2, in the next future, so I'd like some help from this ML. I'm searching for a ZPT (or TAL) reference

Re: [Zope3-Users] nextURL not working as expected

2006-08-07 Thread Florian Lindner
Am Montag, 7. August 2006 17:08 schrieb Andreas Reuleaux: > I am using nextURL() in a similar fashion (only using create(), > no add part) and it works fine for me, i. e. I am redirected as > expected, see the code snippet below. > > I guess with the line > > self.context[data["title"]] = self.

[Zope3-Users] default defaultView

2006-08-07 Thread Florian Lindner
Hello, is there a kind of default defaultView? So when a object is called and no defaultView is defined that a view like index.html is called? I thought yes, but a test has not proven that. If there is really no such default, why? I think a little bit more (optional) convention over configuratio

Re: [Zope3-Users] Grant Principals in Bulk

2006-08-07 Thread Stephan Richter
On Wednesday 02 August 2006 07:52, [EMAIL PROTECTED] wrote: > Is there a way to grant roles to a group of principals? Do I have to do > those one at a time also? There are groups of course to do this sort of thing. But of course you can do this programmatically. It's just a simple for loop. Rega