Re: [Webware-discuss] Webware-discuss Digest, Vol 1, Issue 2024

2006-06-21 Thread Nader Emami
L.S., I am a newcomer to WebWare and I would like to learn this framework. Is a book about this somewhere? It would be better for me to have a book to practice some example.  I would apprciate any information. Best regards,Nader On 6/20/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Send Webwar

Re: [Webware-discuss] Webware-discuss Digest, Vol 1, Issue 2024

2006-06-21 Thread Christoph Zwerschke
Nader Emami wrote: > I am a newcomer to WebWare and I would like to learn this framework. Is > a book about this somewhere? It would > be better for me to have a book to practice some example. I don't think there is a book on Webware, but there is a bunch of helpful documentation around anyway. T

Re: [Webware-discuss] Dead threads: detection and recovery Oliver Bock

2006-06-21 Thread Wheeler, Richard
Why not parse the python code fragments before executing them and insert a check for a stop event in the beginning of each loop. It could even force a loop counter of some type that would allow the main thread to force the worker thread to stop processing through a stop event once a threshold has

Re: [Webware-discuss] Dead threads: detection and recovery

2006-06-21 Thread Tim Roberts
On Wed, 21 Jun 2006 15:01:03 -0400< "Wheeler, Richard" <[EMAIL PROTECTED]> wrote: >Why not parse the python code fragments before executing them and insert a >check for a stop event in the beginning of each loop. It could even force a >loop counter of some type that would allow the main thread to

Re: [Webware-discuss] Dead threads: detection and recovery

2006-06-21 Thread Oliver Bock
This is a good idea, but a lot of work. (It messes with my head whenever I get into the parse tree stuff.) Oliver -- Wheeler, Richard wrote: > Why not parse the python code fragments before executing them and insert a > check for a stop event in the beginning of each loop. It could even fo

Re: [Webware-discuss] Dead threads: detection and recovery Oliver Bock

2006-06-21 Thread Ian Bicking
Wheeler, Richard wrote: > Why not parse the python code fragments before executing them and insert a > check for a stop event in the beginning of each loop. It could even force a > loop counter of some type that would allow the main thread to force the > worker thread to stop processing through a

Re: [Webware-discuss] Dead threads: detection and recovery

2006-06-21 Thread Richard Wheeler
Ian Bicking <[EMAIL PROTECTED]> writes: > This recipe might be of use: > http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/496746 > > I don't believe it is threadsafe, but I'm not sure. I think it needs to > run the code in the main thread, then puts an alarm in a subthread that > interr