[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

[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?

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:

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)

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.