[Zope3-Users] Re: redirects in a formlib EditForm

2006-02-26 Thread jürgen Kartnaller
Joel Moxley wrote: > Hello list, > > I keep hearing about the wonders of formlib, so I've been trying to > migrate one of my zcml browser:editform generated forms to formlib. > Once I figured out how to "select(...)" fields to avoid problems with > the "__parent__" field on my interface, this wor

[Zope3-Users] Re: Cometh the hour... ZCML Configurator

2006-02-26 Thread Martin Aspeli
On Fri, 24 Feb 2006 01:33:55 +0100, Peter Bengtsson <[EMAIL PROTECTED]> wrote: Wanna watch a 700Kb screencast showing the pre-alpha ZCML Configurator? http://www.peterbe.com/zope/zcmlconfigurator/ Peter, I'm curious - what JavaScript library did you use for this? How did you integrate it

Re: [Zope3-Users] Re: redirects in a formlib EditForm

2006-02-26 Thread Joel Moxley
> > ** What is the best way to use a formlib EditForm to redirect a user > > after applying changes without fully cloning a "handle_edit_action" > > method? ** > > > > I'm doing it this way : > > def render(self): > if self.errors is None or self.errors: > return super(EditP

Re: [Zope3-Users] introductory app idea: music filesystem browser

2006-02-26 Thread Joel Moxley
On 2/26/06, Roman Susi <[EMAIL PROTECTED]> wrote: > Hi joel, > > I am learning Zope3 and certainly get thru those tutorials you mention. > Yet, Zope3 is a dark forest for me because there are just too many > things to remember (I think its Zope3's design drawback). Its like a > large shop of tools.

[Zope3-Users] Re: redirects in a formlib EditForm

2006-02-26 Thread jürgen Kartnaller
Joel Moxley wrote: >>> ** What is the best way to use a formlib EditForm to redirect a user >>> after applying changes without fully cloning a "handle_edit_action" >>> method? ** >>> >> I'm doing it this way : >> >> def render(self): >> if self.errors is None or self.errors: >>

RE: [Zope3-Users] zodb objects backup

2006-02-26 Thread Shaun Cutts
Thanks Gary! Ah -- very nice: so Data.fs *is* a transaction log. In theory an RDBMS with write ahead logging is still more secure because the transaction log is only backup, and the rest of the database is another copy of the current state (though not with undo capability). But with replication,

Re: [Zope3-Users] Re: redirects in a formlib EditForm

2006-02-26 Thread Gary Poster
On Feb 26, 2006, at 4:17 PM, jürgen Kartnaller wrote: Joel Moxley wrote: ** What is the best way to use a formlib EditForm to redirect a user after applying changes without fully cloning a "handle_edit_action" method? ** I'm doing it this way : def render(self): if self.errors

Re: [Zope3-Users] introductory app idea: music filesystem browser

2006-02-26 Thread Roman Susi
Joel Moxley wrote: > On 2/26/06, Roman Susi <[EMAIL PROTECTED]> wrote: > >>Hi joel, ... >>Probably such a simple app doesn't require more than 2 hours from >>seasoned Zope3 developer ;-) >> >>Regards, >>Roman > > > I think you're right. I rethought what an intro app should be, and I > think t

Re: [Zope3-Users] Re: redirects in a formlib EditForm

2006-02-26 Thread Joel Moxley
On 2/26/06, Gary Poster <[EMAIL PROTECTED]> wrote: > > On Feb 26, 2006, at 4:17 PM, jürgen Kartnaller wrote: > > > Joel Moxley wrote: > ** What is the best way to use a formlib EditForm to redirect a > user > after applying changes without fully cloning a "handle_edit_action" >

Re: [Zope3-Users] zodb objects backup

2006-02-26 Thread Tom Dossis
Shaun Cutts wrote: But with replication, this issue is taken care of. (Too bad replication isn't part of the core functionality) Maybe soon.. http://hathawaymix.org/Software/PGStorage ___ Zope3-users mailing list Zope3-users@zope.org http://mai

RE: [Zope3-Users] zodb objects backup

2006-02-26 Thread Shaun Cutts
> From: Tom Dossis [mailto:[EMAIL PROTECTED] > Shaun Cutts wrote: > > But with replication, this issue is taken care of. (Too bad replication > > isn't part of the core functionality) > > Maybe soon.. >http://hathawaymix.org/Software/PGStorage > Great! Another potential issue on the sc