Re: [Zope3-Users] Re: Next steps...

2006-07-24 Thread Tim Penhey
On 7/24/06, Philipp von Weitershausen [EMAIL PROTECTED] wrote: Note that in newer Zopes we have a debug shell which saves you a lot oftyping. Simply execute bin/zopectl debug from your instance (you don'teven have to put $INSTANCE/lib/python on your PYTHONPATH), the effect is the same as the

Re: [Zope3-Users] Next steps...

2006-07-22 Thread Tim Penhey
On Friday 21 July 2006 16:24, Tim Penhey wrote: Hi All, Going through Philipp's book some more... Once the sections get to content types the samples always show: from zope.app.debug import Debugger debugger = Debugger(db=var/Data.fs, config_file=etc/site.zcml) Given

[Zope3-Users] Next steps...

2006-07-21 Thread Tim Penhey
Hi All, Going through Philipp's book some more... Once the sections get to content types the samples always show: from zope.app.debug import Debugger debugger = Debugger(db=var/Data.fs, config_file=etc/site.zcml) The purpose for this doesn't seem to be described anywhere. I

[Zope3-Users] A gentle push in the right direction needed

2006-07-19 Thread Tim Penhey
Hi all, I have an application that is written with Struts (Java servlet and JSP) with a postgresql database which I am attempting to rewrite with zope 3. Having read over half of Web Component Development with Zope 3 I thought it was high time to get started. However I seem to have hit my

Re: [Zope3-Users] A gentle push in the right direction needed

2006-07-19 Thread Tim Penhey
On Wednesday 19 July 2006 22:03, Darryl Cousins wrote: Hi Tim, My solution was to use an address container to act as the 'addressbook'. An adapter is used to attach (using annotations) the addressbook to any object which implements IHaveAddressInfo. An interesting idea. Doctest: