[Zope3-dev] Containerview Proposal

2005-09-29 Thread Uwe Oestermeier
Hi, Stefan Martin and I have written a proposal for a reimplementation of the container views. http://www.zope.org/Wikis/DevSite/Projects/ComponentArchitecture/ConfigurableContainerViews We would like to work on this at the NeckarSprint next week, so any feedback is welcome. Regards, Uwe

Re: [Zope3-dev] Containerview Proposal

2005-09-29 Thread Uwe Oestermeier
Benji York wrote: I'll be releasing some code today that does most of what this proposal wants for any collection of objects, not specifically container views (because you'll often want to represent tabular data that doesn't exist in any particular container). It would fairly easy to build a

[Zope3-dev] a way to get the client IP address in Zope 3?

2005-09-29 Thread Martijn Faassen
Hi there, There doesn't appear to be a way to get the client's IP address from the request. Zope 2 has a getClientAddr() on the request object that uses _client_addr, which gets created like this: if environ.has_key('REMOTE_ADDR'): self._client_addr = environ['REMOTE_ADDR'] if