[pygtk] Configure error in latest pygtk-2.0 CVS builds

2002-08-29 Thread Art Haas
Hi. I'm building pygtk-2.0 from CVS, and am now getting an error when the configuration is setting up the Makefiles ... [ ... configure output ... ] configure: creating ./config.status config.status: creating Makefile config.status: creating pygtk-2.0.pc config.status: creating codegen/Makefile

Re: [pygtk] Configure error in latest pygtk-2.0 CVS builds

2002-08-29 Thread James Henstridge
Art Haas wrote: Hi. I'm building pygtk-2.0 from CVS, and am now getting an error when the configuration is setting up the Makefiles ... [ ... configure output ... ] configure: creating ./config.status config.status: creating Makefile config.status: creating pygtk-2.0.pc config.status: creating

[pygtk] Execute a shell script from python script

2002-08-29 Thread Richard BADER
Hi! does anybody knows how to execute a script shell from a python script with a method like os.execl() ? Richard BADER e-mail : [EMAIL PROTECTED] Agence Système d'information 6, rue Roger Camboulives - BP 1133 - 31036 Toulouse Cedex 01 - FRANCE Tél. : +33 534 619 261 - Fax : +33 534 619

Re: [pygtk] Execute a shell script from python script

2002-08-29 Thread Steve McClure
On Thu, 2002-08-29 at 09:38, Richard BADER wrote: Hi! does anybody knows how to execute a script shell from a python script with a method like os.execl() ? I use this, you should be able to change termcmd to whatever you want and pass arguments in the cmdargs list. I use a signal handler to

Re: [pygtk] ANNOUNCE: pygtk-0.6.11 and gnome-python-1.4.4

2002-08-29 Thread Jon Nelson
On Fri, 23 Aug 2002 23:29:28 +0800 James Henstridge [EMAIL PROTECTED] wrote: This is a brown paper bag release to fix the build problems some people were having with the previous release, and some corruption in gnome/ui.py. It turns off the anonymous symbol versioning if you have an older

Re: [pygtk] ANNOUNCE: pygtk-0.6.11 and gnome-python-1.4.4

2002-08-29 Thread Christian Reis
On Thu, Aug 29, 2002 at 10:00:01AM -0500, Jon Nelson wrote: Also, just for me, because I didn't want to change the many, many programs relying on existing behavior, I added a gtk.pth file as well: [jnelson@host idsehandler]$ cat /usr/lib/python1.5/site-packages/gtk.pth gtk-1.2

Re: [pygtk] ANNOUNCE: pygtk-0.6.11 and gnome-python-1.4.4

2002-08-29 Thread Jon Nelson
On Thu, 29 Aug 2002 12:09:08 -0300 Christian Reis [EMAIL PROTECTED] wrote: On Thu, Aug 29, 2002 at 10:00:01AM -0500, Jon Nelson wrote: Also, just for me, because I didn't want to change the many, many programs relying on existing behavior, I added a gtk.pth file as well:

Re: [pygtk] Execute a shell script from python script

2002-08-29 Thread Rob Brown-Bayliss
On Fri, 2002-08-30 at 01:38, Richard BADER wrote: Hi! does anybody knows how to execute a script shell from a python script with a method like os.execl() ? os.system('/path/to/your/script -and -some -args') it's fine as long as you don't really care about keeping in touch with the

Re: [pygtk] faking events

2002-08-29 Thread James Henstridge
Rob Brown-Bayliss wrote: Hi. I am having a problem with the gnome canvas redrawing. All works fine until I decide to show or hide some widgets on the canvas, then it seems that the canvas is not redrawing correctly until I mouse over the objects. Sounds like a canvas bug. Federico has a

Re: [pygtk] faking events

2002-08-29 Thread Rob Brown-Bayliss
On Fri, 2002-08-30 at 16:47, James Henstridge wrote: Well, calling queue_draw() on the widgets might do what you want. Moving the mouse over the widget essentially just changes the state and queues a redraw. It didn't make a difference. The problem seems to be, as you say, in the canvas

Re: [pygtk] faking events

2002-08-29 Thread James Henstridge
Rob Brown-Bayliss wrote: On Fri, 2002-08-30 at 16:47, James Henstridge wrote: Well, calling queue_draw() on the widgets might do what you want. Moving the mouse over the widget essentially just changes the state and queues a redraw. It didn't make a difference. The problem seems