Re: [Zope3-Users] how work around broken egg?

2008-01-27 Thread Stephan Richter
On Friday 25 January 2008, John wrote: I easy_installed a broken z3c.form-1.7.2-py2.4.egg into my zopeproject.   I'd like to fix it.  It looks possible to use svn to checkout 1.7.0 or 1.8.0 right into the egg directory.  Will this work or is there some setup script to run?  Is there a way to

Re: [Zope3-Users] Beginner: Reference to ZPT macros

2008-01-27 Thread Stephan Richter
On Thursday 17 January 2008, Hermann Himmelbauer wrote: I personally don't like macros that much, therefore I prefer Stephan Richters pagelet/viewlet approach, which you can find in z3c.pagelet. We need to give credit to Roger here. He came up with pagelets as a response for hating macros like

Re: [Zope3-Users] Zope on WSGI for Deployment - best to still use proxy behind apache? Good/bad servers?

2008-01-27 Thread Stephan Richter
On Wednesday 23 January 2008, Jeff Shell wrote: Is there any preferred server to use or not use? why? Originally we wanted to drop support for zope.server over twisted, but it turned out that zope.server was much more stable. And ... mod_wsgi. I don't know much about it, but is it better to

Re: [Zope3-Users] How to store objects with multiple owners in the ZODB

2008-01-27 Thread Stephan Richter
On Tuesday 08 January 2008, Hermann Himmelbauer wrote: My question is: How would I store these documents in the ZODB? If I create a container object for each user and store the document there, how would then other users get a link to their own folder? Moreover, what happens if the original

Re: [Zope3-Users] sqlalchemy and FieldProperty

2008-01-27 Thread Stephan Richter
On Friday 21 December 2007, Darryl Cousins wrote: I find that when I map a class to a table I lose the auto-magic vaidation provided by FieldProperty when setting attributes. I bet you that sqlalchemy does some evil class hacking. Actually, I gotta check this out. :-) Yeah, from looking at the

Re: [Zope3-Users] Literal double quoted string within single quoted attribute in ZPT

2008-01-27 Thread Stephan Richter
On Monday 17 December 2007, David Pratt wrote: Hi. Is there solution for create a single quoted attribute using tal:attributes containing literal double quoted items. I am using a python method for generating the string. I understand structure will unquote but it does not work with an

Re: [Zope3-Users] `easy_install z3c.widget` fails

2008-01-27 Thread Stephan Richter
On Saturday 08 December 2007, Kent Tenney wrote: It can't find z3c.schema Is there a better place to report? http://svn.zope.org/z3c.schema/ But it has not been released as a package yet. I guess that should be done. Regards, Stephan -- Stephan Richter Web Software Design, Development and

Re: [Zope3-Users] formlib vs z3c.form

2008-01-27 Thread Stephan Richter
On Thursday 06 December 2007, Adam Summers wrote: How hard is it to get grok to play nicely with z3c.form et al? Has anyone any examples? Since nobody has answered this follow-up question, here is a quick one from me: It is not harder or easier to integrate than other Zope 3 code. I bet you

Re: [Zope3-Users] wiki refactoring

2008-01-27 Thread Stephan Richter
On Monday 10 December 2007, Roy Mathew wrote: Now that the zope3 wiki has grown from an afterthought, to a signifcantly useful body of knowledge, I'd like to make the following proposal:  o split the wiki into smaller bits.  o rework the introduction slightly.  o fix the question headers  

Re: [Zope3-Users] zcml for z3c.form

2008-01-27 Thread Stephan Richter
Hi John, On Thursday 24 January 2008, John wrote: I'm converting from formlib to z3c.form. Cool! :-) What should my configure.zcml look like? For formlib it is:   browser:page     for=zope.app.container.interfaces.IAdding     name=.Person     class=.browser.PersonAddForm    

Re: [Zope3-Users] sqlalchemy and FieldProperty

2008-01-27 Thread Darryl Cousins
On Sun, 2008-01-27 at 13:03 -0500, Stephan Richter wrote: On Friday 21 December 2007, Darryl Cousins wrote: I find that when I map a class to a table I lose the auto-magic vaidation provided by FieldProperty when setting attributes. I bet you that sqlalchemy does some evil class hacking.