Re: [Twisted-Python] R: Twisted Python on Nokia E71x (Running the phone Python Interpreter)

2010-03-05 Thread Laurens Van Houtven
I don't use PUTools when developing for PyS60. The bluetooth console was nice, but recent versions of PyS60 ship with it already. My phone (6220 Classic) lets me do obex + bluetooth serial console at the same time so file sync is not a problem either. hth lvh

Re: [Twisted-Python] Escaping variable names

2010-03-05 Thread Kamil Wasilewski
> On Friday 05 March 2010, Kamil Wasilewski wrote: >> > server.doGetCountries(**{ >> > 'country-code': COUNTRYID, 'webapi-key': WEBAPIKEY >> > }) >> >> The above gives a syntax error... > What kind of syntax error? I tested this approached on the interactive > Python sh

Re: [Twisted-Python] Escaping variable names

2010-03-05 Thread Maarten ter Huurne
On Friday 05 March 2010, Kamil Wasilewski wrote: > > server.doGetCountries(**{ > > 'country-code': COUNTRYID, 'webapi-key': WEBAPIKEY > > }) > > The above gives a syntax error... What kind of syntax error? I tested this approached on the interactive Python shell and it

Re: [Twisted-Python] Escaping variable names

2010-03-05 Thread Kamil Wasilewski
Hello Maarten, Friday, March 5, 2010, 6:26:36 PM, you wrote: > On Friday 05 March 2010, Kamil Wasilewski wrote: >> from SOAPpy import WSDL >> wsdlFile = "http://webapi.allegro.pl/uploader.php?wsdl"; >> server = WSDL.Proxy(wsdlFile) >> server.soapproxy.config.argsOrdering = {'doGetCountries': >>

Re: [Twisted-Python] Lore to Sphinx Conversion Progress Report 6

2010-03-05 Thread Kevin Horn
On Fri, Mar 5, 2010 at 9:30 AM, Drew Smathers wrote: > On Thu, Mar 4, 2010 at 5:49 PM, Kevin Horn wrote: > >> >> It's been a while, I know you were all waiting with baited breath... >> >> First a few fixes: >> >> - Thanks to Tim Allen and Steve Steiner, several theme issues were fixed. >> This >>

Re: [Twisted-Python] Escaping variable names

2010-03-05 Thread Maarten ter Huurne
On Friday 05 March 2010, Kamil Wasilewski wrote: > from SOAPpy import WSDL > wsdlFile = "http://webapi.allegro.pl/uploader.php?wsdl"; > server = WSDL.Proxy(wsdlFile) > server.soapproxy.config.argsOrdering = {'doGetCountries': > ['country-code', 'webapi-key'] } > server.doGetCountries(country-code=

Re: [Twisted-Python] Escaping variable names

2010-03-05 Thread Phil Christensen
On Mar 5, 2010, at 12:15 PM, Kamil Wasilewski wrote: > server.soapproxy.config.argsOrdering = {'doGetCountries': ['country-code', > 'webapi-key'] } > server.doGetCountries(country-code=COUNTRYID}, webapi-key=WEBAPIKEY) > > The above method allows me to specify the order and name of variables bein

Re: [Twisted-Python] SSHSessionProcessProtocol.inConnectionLost() behavior and Git over Conch

2010-03-05 Thread Glyph Lefkowitz
On Mar 5, 2010, at 12:07 PM, James Y Knight wrote: > BTW, you can't reasonably implement this extension in conch even if > you wanted to, because openssh client will only send it to servers > which identify themselves as openssh servers. Does it just test the banner for being identical, or c

[Twisted-Python] Escaping variable names

2010-03-05 Thread Kamil Wasilewski
Hi, Ive got an issue where a variable name needs to have a minus sign (-) in it. from SOAPpy import WSDL wsdlFile = "http://webapi.allegro.pl/uploader.php?wsdl"; server = WSDL.Proxy(wsdlFile) server.soapproxy.config.argsOrdering = {'doGetCountries': ['country-code', 'webapi-key'] } server.doGetCo

Re: [Twisted-Python] SSHSessionProcessProtocol.inConnectionLost() behavior and Git over Conch

2010-03-05 Thread James Y Knight
On Mar 4, 2010, at 11:51 PM, Michael Hudson-Doyle wrote: > Maybe > it's a simple logic error and it method should be > 'outConnectionClosed' instead? I'd agree with that. Clearly it should not be sending EOF there for the server process closing its stdin. One more detail though: you actually

Re: [Twisted-Python] SSHSessionProcessProtocol.inConnectionLost() behavior and Git over Conch

2010-03-05 Thread Bo Shi
Thanks Michael; I have filed #4350. On Thu, Mar 4, 2010 at 11:51 PM, Michael Hudson-Doyle wrote: > On 4 March 2010 17:46, Bo Shi wrote: >> Hi All, >> >> I've been struggling with this issue off and on for the better part of >> a month now.  Having implemented a simple git SSH server using some o

Re: [Twisted-Python] Lore to Sphinx Conversion Progress Report 6

2010-03-05 Thread Drew Smathers
On Thu, Mar 4, 2010 at 5:49 PM, Kevin Horn wrote: > > It's been a while, I know you were all waiting with baited breath... > > First a few fixes: > > - Thanks to Tim Allen and Steve Steiner, several theme issues were fixed. > This > fixes a few minor display bugs and should make pages validate

Re: [Twisted-Python] Twisted 9.0.0?

2010-03-05 Thread exarkun
On 02:42 pm, ch...@simplistix.co.uk wrote: >Tim Allen wrote: >>...so presumably sdist *is* a prerequisite for upload. Or are you >>saying >>that you can store any old file as dist/$PACKAGE-$VERSION.tar.gz and >>"setup.py upload" will ship it to PyPI? > >I think that's true, but I admit, I haven't

Re: [Twisted-Python] Twisted 9.0.0?

2010-03-05 Thread Chris Withers
Tim Allen wrote: > ...so presumably sdist *is* a prerequisite for upload. Or are you saying > that you can store any old file as dist/$PACKAGE-$VERSION.tar.gz and > "setup.py upload" will ship it to PyPI? I think that's true, but I admit, I haven't checked myself ;-) Chris -- Simplistix - Conte

Re: [Twisted-Python] Twisted 9.0.0?

2010-03-05 Thread Tim Allen
On Fri, Mar 05, 2010 at 11:11:35AM +, Chris Withers wrote: > Tim Allen wrote: > > If "setup.py upload" involves "setup.py sdist" then I guess this is > > ticket #4138 again. > > No, it doesn't... see the release process I use for my own packages here: > > http://packages.python.org/errorhandl

Re: [Twisted-Python] Twisted 9.0.0?

2010-03-05 Thread Chris Withers
Tim Allen wrote: > On Thu, Mar 04, 2010 at 01:55:50PM -0500, Glyph Lefkowitz wrote: >> Now that our release process is better documented (THANK YOU JML), you >> might be able to have a look at >> and figure out >> where 'setup.py upload' could fit

Re: [Twisted-Python] Twisted 9.0.0?

2010-03-05 Thread Mark van Lent
On 3/4/10 21:21 , exar...@twistedmatrix.com wrote: >> I think that easy_install and related tools can be directed to the >> proper download location by providing a Download-URL on the PyPI page. >> >> E.g. the page for Twisted 9.0.0: >> http://pypi.python.org/pypi/Twisted/9.0.0 >> >> should have a

Re: [Twisted-Python] R: Twisted Python on Nokia E71x (Running the phone Python Interpreter)

2010-03-05 Thread Werner Thie
Hi I mostly diddled with the cam and automated uploading of pictures with simple JSON encoding over WLAN, and as I said, twisted is running with a few patches on the E61i.. Using putools http://people.csail.mit.edu/kapu/symbian/python.html helped a lot. Please find attached a tiny example

[Twisted-Python] R: Twisted Python on Nokia E71x (Running the phone Python Interpreter)

2010-03-05 Thread lorma...@libero.it
>Date: Thu, 4 Mar 2010 15:57:43 -0600 >From: Prince Riley >Subject: [Twisted-Python] Twisted Python on Nokia E71x (Running the > phone Python Interpreter) >To: twisted-python@twistedmatrix.com >Message-ID: > >Content-Type: text/plain; charset="iso-8859-1" > >Has anyone experimented