From: John H. <ec...@ya...> - 2011-04-27 02:37:36
|
I can look into the distributed source control system as suggested. Right now, Subversion is working and works pretty good. Pythoncard is currently hosted on CVS but I can't get CVSNT to work properly. We should migrate to better system than CVS anyway. It's nice to see some long lost names showing up again. May be you guys can explain to me how to handle events properly. In the Matplotlibcanvas widget, I am setting up the event list just like other widgets but the widget won't respond to the events until I reverted to native wxpython calls. self._bindEvents(event.WIDGET_EVENTS+event.MOUSE_EVENTS) # Couldn't get event handlers to work using the _bindEvents method. Had to resort to native wxPython event calls wx.EVT_PAINT(self, self._onPaint) wx.EVT_SIZE(self, self._onSize) wx.EVT_KEY_DOWN(self, self._onKeyDown) wx.EVT_KEY_UP(self, self._onKeyUp) wx.EVT_RIGHT_DOWN(self, self._onRightButtonDown) wx.EVT_RIGHT_UP(self, self._onRightButtonUp) wx.EVT_LEFT_DOWN(self, self._onLeftButtonDown) wx.EVT_LEFT_UP(self, self._onLeftButtonUp) wx.EVT_MOTION(self, self._onMotion) wx.EVT_MOUSEWHEEL(self, self._onMouseWheel) On 4/26/2011 4:34 AM, phil jones wrote: > I'm not really involved in PythonCard, but something struck me reading > the recent discussion. > > Would it not be a good idea to move to a distributed source control > system (bzr / hg / git) so that John and others could already be > sharing their updates with other PythonCard developers > > I understand why there has to be a master repository for "officially" > released versions of PythonCard, and the quality control it implies, > but DSCM can let work go on around the edges before the main repo > owner has time to assess and hand over commit privileges etc. > > phil > > On Tue, Apr 26, 2011 at 11:56 AM, Phil Edwards<ph...@li...> wrote: >> On 23/04/11 02:57, Andy Todd wrote: >>> If no one objects I'm happy to give John commit privileges to the >>> repository. That way he can add his changes and produce a 1.0 release. >>> >>> Regards, >>> Andy >> No objection from me - I've not had time to do anything with PythonCard >> for a good few years, so some new blood would be welcome! >> >> -- >> >> Regards >> >> Phil Edwards | PGP/GnuPG Key Id >> Brighton, UK | 0xDEF32500 >> >> >> >> ------------------------------------------------------------------------------ >> WhatsUp Gold - Download Free Network Management Software >> The most intuitive, comprehensive, and cost-effective network >> management toolset available today. Delivers lowest initial >> acquisition cost and overall TCO of any competing solution. >> http://p.sf.net/sfu/whatsupgold-sd >> _______________________________________________ >> Pythoncard-users mailing list >> Pyt...@li... >> https://lists.sourceforge.net/lists/listinfo/pythoncard-users >> > ------------------------------------------------------------------------------ > WhatsUp Gold - Download Free Network Management Software > The most intuitive, comprehensive, and cost-effective network > management toolset available today. Delivers lowest initial > acquisition cost and overall TCO of any competing solution. > http://p.sf.net/sfu/whatsupgold-sd > _______________________________________________ > Pythoncard-users mailing list > Pyt...@li... > https://lists.sourceforge.net/lists/listinfo/pythoncard-users > |