Re: web based PO file generator

2009-02-03 Thread Udi Oron
Hi! Ori Idan wrote: I need a tool to translate a GNU gettext PO files that works over the web. Does someone knows of such a tool? Pootle is the standard, but it is a standalone server written in python (and not via apache): http://translate.sourceforge.net/wiki/pootle/index Launchpad has a tr

Re: Fw: Re: PAC 207 Webcam

2009-02-03 Thread Moshe Brace using Yahoo
gspca though will qc-usb work? If so how?Moshe --- On Mon, 2/2/09, Tzafrir Cohen wrote: From: Tzafrir Cohen Subject: Re: Fw: Re: PAC 207 Webcam To: linux-il@cs.huji.ac.il Date: Monday, 2 February, 2009, 9:28 PM On Mon, Feb 02, 2009 at 05:33:42PM +, Moshe Brace using Yahoo wrote: > [r...@loc

Re: ptrace in production systems

2009-02-03 Thread Shachar Shemesh
Lev Olshvang wrote: Hi Sha*C*har, About disadvantages of ptrace (IMHO): 1. controlling process should take care of signal processing (signals are delivered to the caller ??) No. Signals halt the debugged process, and the controlling process gets notified. It just needs to call "ptrace( PTRACE

Re: [YBA] TCP connection rate

2009-02-03 Thread Jonathan Ben Avraham
Super! On Tue, 3 Feb 2009, Gilad Ben-Yossef wrote: Date: Tue, 03 Feb 2009 10:25:14 +0200 From: Gilad Ben-Yossef To: Jonathan Ben Avraham Cc: m...@swiftouch.com, ILUG Subject: Re: [YBA] TCP connection rate Jonathan Ben Avraham wrote: Hi Marc, The .NET client has a bug that prevents use of

Re: ptrace in production systems

2009-02-03 Thread Shachar Shemesh
Oron Peled wrote: Why not have it restart itself? execve(argv[0], argv, yada, yada) if( restart ) { execv( argv[0], argv ) syslog( LOG_CRIT, "Configuration reload failed: %m" ) } at the end of main. from some signal handler? Oooh, no. The entire idea is to allow an orderly sh

Re: ptrace in production systems

2009-02-03 Thread Lev Olshvang
Valery Reznic wrote: The second point is that I don't need advice about how it can be done. I can think of three or four ways not mentioned here at all. They have disadvantages in relation to what I implemented, mostly in how long it takes to figure out that the daemon has, indeed, fini

Re: [YBA] TCP connection rate

2009-02-03 Thread Gilad Ben-Yossef
Jonathan Ben Avraham wrote: Hi Marc, The .NET client has a bug that prevents use of persistent MySQL connections. The application is already cached up the wazoo. Where would I look in the kernel to see if it is rejecting the connections as opposed to MySQL? Or is this just unlikely given tha