Re: [Zope3-Users] Copy / Move ZODB Content From Dev Zope3Instance to Production Zope3 Instance?

2008-01-22 Thread Jeremy Roberts
Christopher Warner wrote: On Tue, 2008-01-22 at 18:16 +0100, Brian Sutherland wrote: On Tue, Jan 22, 2008 at 12:08:10PM -0500, Christopher Warner wrote: We do something similar but with our Zope2 instances. With Zope3 we don't have a ZODB and do all distribution using Debian packages. So how

[Zope3-Users] Copy / Move ZODB Content From Dev Zope3 Instance to Production Zope3 Instance?

2008-01-19 Thread Jeremy Roberts
Linux 686 python 2.4.4 Zope-3.3.1 Hi all, I'm curious if there is a handy way to copy / move content objects between Zope3 instances? (where the interface definitions for those object types agree across instances of course!) Let's say I have one Zope3 instance used for development, and

[Zope3-Users] XMLRPC Method with **kwargs

2007-12-13 Thread Jeremy Roberts
Hello zope3 users! I'm using Zope-3.3.1, and I'm trying to expose a method via xmlrpc and I'm having trouble supporting a variable number of kwargs. My use case does not know ahead of time how many arguments will be passed to the method, hence the use of **kwargs in the method signature. I

Re: [Zope3-Users] XMLRPC Method with **kwargs

2007-12-13 Thread Jeremy Roberts
Darryl Cousins wrote: Hi Jeremy, On Thu, 2007-12-13 at 19:29 -0500, Jeremy Roberts wrote: class ToolCodeXMLRPC(MethodPublisher): An XMLRPC view for ToolCode objects. def renderCode(self, **kwargs): return self.context.renderCode(kwargs) try using: def renderCode(self

[Zope3-Users] Site Search (Text) Design Pattern Trouble

2007-10-26 Thread Jeremy Roberts
ISiteSection object, I still need a way to determine which ISiteSection views display content from which ITidbit objects. blarg. I'm starting to suspect my design pattern here isn't going to support my requirements. Has anyone solved this problem or have any pattern advice? Thanks! -Jer -- Jeremy