wxstyledtextctrl and xml markup

2007-09-13 Thread OpenPavilion Team
Hello community, I want to create an editor for a self defined xml markup language. I want to use wxpython with wxstyledtextctrl and I have looked around at yellowbrain site, but there are no examples. I also watched the styledtextctrl examples with wxpython 2.8.4. What I am looking for is an ex

Question: wxpython and 3d engine example with model load ?

2007-08-23 Thread OpenPavilion
Hello, did anyone succeed in combining wxpython and a 3d engine (pyogre, crystalblend, panda3d, soya etc.) ? I would like to create an application, which uses wxpython tree, menu and grid elements and embedds a 3d view of some of the listed objects in an own detail window, so showing the object a

Re: question: howto transfer objects between server and client?

2007-08-11 Thread OpenPavilion
On 11 Aug., 11:21, Irmen de Jong <[EMAIL PROTECTED]> wrote: > OpenPavilion wrote: > > Since XMLRPC has limited features: Is there any other server/client > > technique to transfer objects (not strings, or dictionaries, but self > > defined object types) ? >

question: howto transfer objects between server and client?

2007-08-11 Thread OpenPavilion
Hello community, maybe one of you can help me out with a question regarding the transfer of objects betwen client an server: I have three files: ### ClassA.py ### class ClassA: def setA(self, newA): self.a = newA def getA(self): return self.a ### client.py ###