Re: [Gimp-developer] command output from script-fu-server

2009-05-25 Thread Ioan Calin Borcoman
I've filed the bug as 583778 (http://bugzilla.gnome.org/show_bug.cgi?id=583778). Cheers. Ionutz On Mon, May 25, 2009 at 10:15 AM, Ioan Calin Borcoman wrote: > Let's hope it gets applied. I'll make a bug report and attach the patch to it. > > My code uses something like this to send the data: >

Re: [Gimp-developer] command output from script-fu-server

2009-05-25 Thread Ioan Calin Borcoman
Let's hope it gets applied. I'll make a bug report and attach the patch to it. My code uses something like this to send the data: def send(self, msg): l = len(msg) raw = 'G' + struct.pack('H%ds' % l, socket.htons(l), msg) self.socket.send(raw) To receive the data, I use some

Re: [Gimp-developer] command output from script-fu-server

2009-05-24 Thread Niels Giesen
> Hi, > > I have attached a small patch for script-fu-server that makes the > server return to the clients the output of the commands executed, just > like the script-fu-console does. > > Is the patch ok? Any chance to apply it the mainline? Should I make a > bug-report and attach the patch to it?