[Zope3-Users] Plone conference 2007

2007-09-12 Thread vincenzo barone
Hi guys, The conference registration closes in just over one month, on October 5th! If you want to come to the conference, now is the time to register http://ploneconference2007.bookdirect.it/ This year we will have a huge conference with a lot of very interesting talks and panels. Here is

[Zope3-Users] I need an advice

2007-09-12 Thread Santiago Videla
Hi there, I'm new in zope3 (1 week) but I have been working with Zope2 and Plone for 1 year. Now I have to design and develop a Web App for a small / medium company. The app have to manage the finance of the company, clients, services, stock, providers, prices, sales... the question is: what do

Re: [Zope3-Users] I need an advice

2007-09-12 Thread Luciano Ramalho
On 9/12/07, Santiago Videla [EMAIL PROTECTED] wrote: the question is: what do you think: should I use Zope3 or Plone3 ? Santiago, take a look at Grok: http://grok.zope.org Grok is Zope 3 with an API which makes the simple tasks simple. And as the complexity of the task increases, the entire

[Zope3-Users] z3c.formdemo fails upon ./bin/buildout

2007-09-12 Thread Fernando Correa Neto
Hi srs I think there was a mistake in the last version of z3c.form demo. (trunk) After running ./bin/buildout, it fails due to a develop = . z3c.form in buildout.cfg. I think z3c.form was supposed to be pulled from svn with a svn:externals set to z3c.form in the z3c.formdemo directory. Checking

[Zope3-Users] Moving from z3 tarball to z3 buildout/eggs

2007-09-12 Thread Derek Richardson
I developed my Vice outbound syndication library on z3.3 (originally) using the full tarball of z3.3. I now want to move to a buildout-based, eggified method of developing and testing Vice. I use functional tests (using zope.testbrowser.testing.Browser) in Vice. These functional tests log

[Zope3-Users] Re: Moving from z3 tarball to z3 buildout/eggs

2007-09-12 Thread Philipp von Weitershausen
Derek Richardson wrote: The problem is that I don't know how much of zope.app these tests depend on. Very few eggs are actually required by imports in Vice. But the library is not much use (and there's not much to test) without a pretty thorough install, I suspect. Should I be attempting to

[Zope3-Users] Re: Moving from z3 tarball to z3 buildout/eggs

2007-09-12 Thread Derek Richardson
Philipp von Weitershausen wrote: * If vice depends on the configuration of another package, but always assumed that this package's configuration was being loaded by Zope 3.3's site.zcml, make this dependency *explicit* now in vice's configure.zcml. For example, let's say that vice needs the

[Zope3-Users] Re: Moving from z3 tarball to z3 buildout/eggs

2007-09-12 Thread Philipp von Weitershausen
Derek Richardson wrote: One problem confronts me, though, before I do the boring work of sorting out the dependencies. My package is designed to run in both z2 and z3. So, I could add a bunch of z3-specific dependencies to a z3-configure.zcml that is loaded only if Five is not installed. Not

[Zope3-Users] Adapting or monkey patching?

2007-09-12 Thread Fernando Correa Neto
Hello everyone. Since there's no default adapter for OFS.interfaces.IItem, I was wondering the best approach to patch/adapt OFS.SimpleItem.Item raise_standardErrorMessage method so it sends an event upon errors. Currently I have a adapter that subclasses OFS.SimpleItem.Item and re-implements the