[Zope3-Users] ComponentLookupError

2009-05-17 Thread Tim Cook
I'm getting this traceback: == serving on http://127.0.0.1:8080 2009-05-17 11:56:42,332 ERROR [SiteError] http://localhost:8080 Traceback (most recent call last): File

Re: [Zope3-Users] ComponentLookupError

2007-01-08 Thread Stephan Richter
On Wednesday 13 December 2006 15:40, David Johnson wrote: ComponentLookupError: ((decimalwidget.widget.Decimal object at   0x4203972c, zope.publisher.browser.BrowserRequest instance   URL=http://192.168.81.89:8090/CRM/Vanderbilt/@@+/action.html),   InterfaceClass

Re: [Zope3-Users] ComponentLookupError

2006-12-14 Thread FB
Hi, On Wed, Dec 13, 2006 at 09:40:51PM +0100, David Johnson wrote: I'm very confused by the following error. Whenever I add certain content components I get the following error when add form is generated (I'm using standard addform). ComponentLookupError: ((decimalwidget.widget.Decimal

[Zope3-Users] ComponentLookupError

2006-12-13 Thread David Johnson
I'm very confused by the following error. Whenever I add certain content components I get the following error when add form is generated (I'm using standard addform). ComponentLookupError: ((decimalwidget.widget.Decimal object at 0x4203972c, zope.publisher.browser.BrowserRequest instance

Re: [Zope3-Users] ComponentLookupError

2006-06-01 Thread Stephan Richter
On Monday 15 May 2006 18:39, Jachin Rupe wrote: TypeError: ('Could not adapt', simple_abook.person.Person object at   0x3b3a6f0, InterfaceClass simple_abook.interfaces.IPerson) I think this is saying that it can't adapt my Person object to the   IPerson interface. Am I still missing

Re: [Zope3-Users] ComponentLookupError

2006-05-15 Thread Jachin Rupe
hi there thanks for the help... but I have a new problem. Now the addForm show up but if I try to actually add a person I get the following error: 2006-05-15T17:19:42 ERROR SiteError http://localhost:8080/+/ AddPerson.html%3D Traceback (most recent call last): File

Re: [Zope3-Users] ComponentLookupError

2006-05-12 Thread Egon Frerich
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Jachin, with these changes your application works: (new) - browser.py from zope.app.form.browser.editview import EditView from zope.app.form.browser.add import AddView from zope.app.form import CustomWidgetFactory from

[Zope3-Users] ComponentLookupError

2006-05-11 Thread Jachin Rupe
hi there here's a smaller, hopefully more clearer example of a problem I have been stuck on. I should probably also lead off by saying that I think what I am asking is basically this question. http://www.mail-archive.com/zope3-users@zope.org/msg00052.html However I have read

Re: [Zope3-Users] ComponentLookupError

2006-05-11 Thread Jachin Rupe
hi there opps I forgot: streetAddress.py from persistent import Persistent from zope.interface import implements from abook.interfaces import IStreetAddress class StreetAddress(Persistent): implements(IStreetAddress) street =