Re: [Twisted-Python] [Twisted-commits] r33889 - Merge elementresource-5395: Add renderElement, for rendering Elements.

2012-03-17 Thread Itamar Turner-Trauring
On 03/16/2012 10:51 PM, dr...@wolfwood.twistedmatrix.com wrote: > Author: dreid > Date: Fri Mar 16 20:51:46 2012 > New Revision: 33889 > > Added: > trunk/twisted/web/topfiles/5395.feature >- copied unchanged from r33888, > /branches/elementresource-5395/twisted/web/topfiles/5395.featur

[Twisted-Python] "twistd web --port=9000" no longer works

2012-03-17 Thread Itamar Turner-Trauring
Apparently this was removed as part of deprecating the old strports syntax, but: 1) "twistd web --port=9000" never gave a deprecation warnings. itamar@blake:~$ twistd --version twistd (the Twisted daemon) 11.0.0 Copyright (c) 2001-2011 Twisted Matrix Laboratories. See LICENSE for de

[Twisted-Python] Problem about Multithread

2012-03-17 Thread hz hanks
Hi, All I just started Twisted and I've a problem when using it. I want to write a program for both the client and the server that the client can download something from the server. Therefore, I want every client and server pair can use multithread to download the different parts of the files at t

Re: [Twisted-Python] Problem about Multithread

2012-03-17 Thread Itamar Turner-Trauring
On 03/17/2012 09:01 PM, hz hanks wrote: > Hi, All > > I just started Twisted and I've a problem when using it. I want to > write a program for both the client and the server that the client can > download something from the server. Therefore, I want every client and > server pair can use multithrea

Re: [Twisted-Python] "twistd web --port=9000" no longer works

2012-03-17 Thread Glyph
On Mar 17, 2012, at 8:53 PM, Itamar Turner-Trauring wrote: > Apparently this was removed as part of deprecating the old strports syntax, > but: > > 1) "twistd web --port=9000" never gave a deprecation warnings. This is a problem for future user-visible feature deprecations: Python won't show

Re: [Twisted-Python] cfreactor and global state

2012-03-17 Thread Glyph
On Mar 13, 2012, at 10:44 PM, Itamar Turner-Trauring wrote: > twisted.internet.test.reactormixins says: > CFReactor uses APIs which manipulate global state, so it's not safe to run > its own reactor-builder tests under itself. > > We also don't have a buildslave running under cfreactor. Which me

Re: [Twisted-Python] [Twisted-commits] r33889 - Merge elementresource-5395: Add renderElement, for rendering Elements.

2012-03-17 Thread Glyph
On Mar 17, 2012, at 7:53 AM, Itamar Turner-Trauring wrote: > On 03/16/2012 10:51 PM, dr...@wolfwood.twistedmatrix.com wrote: >> Author: dreid >> Date: Fri Mar 16 20:51:46 2012 >> New Revision: 33889 >> >> Added: >>trunk/twisted/web/topfiles/5395.feature >> - copied unchanged from r3388

[Twisted-Python] Weekly Bug Summary

2012-03-17 Thread exarkun
Bug summary __ Summary for 2012-03-11 through 2012-03-18 Opened Closed Total Change Enhancements: 18 14812 +4 Defects: 21 21536 +0 Tasks: 7 6 6

Re: [Twisted-Python] Problem about Multithread

2012-03-17 Thread hz hanks
Thank you so much for your instant reply. Sorry for my ignorance, but could you tell how to have several reactor.connectTCP calls. From the textbook I'm reading, I just know that I can first call reactor.connectTCP(sys.argv[1], int(sys.argv[2]), stdioProxyFactory( )) and then call reactor.run( ) D