Re: [IronPython] First cut of an interactive IronPython Interpreterrunning in the browser

2008-06-15 Thread Keith J. Farmer
Neat Small bug: the Start/End/Pos don't update until a key press. Probably a simple fix. J From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Foord Sent: Sunday, June 15, 2008 2:10 PM To: Discussion of IronPython Subject: Re: [IronPython] First cut of an interactive

Re: [IronPython] First cut of an interactive IronPython Interpreter running in the browser

2008-06-15 Thread Michael Foord
2008/6/15 Jonathan Slenders <[EMAIL PROTECTED]>: > Good work, this looks useful. Maybe you also want to capture the 'tab'-key > -- I hate spaces for indentation. > > Some bug I noticed, when calling stdout.write myself: This bug - along with not handling syntax errors properly - should now be fi

Re: [IronPython] Application Compatibility Documentation on ironpython.info

2008-06-15 Thread Dino Viehland
This is awesome, thanks! It'll make it that much easier to drive these apps to be working. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Hardy Sent: Saturday, June 14, 2008 10:48 AM To: Discussion of IronPython Subject: [IronPython] Application Co

Re: [IronPython] Announcing IronPython 2.0 Beta3

2008-06-15 Thread Michael Foord
Jimmy Schementi wrote: The "Silverlight" folder in the ipy release *should* basically mirror the sdlsdk for just python, but no one asked me about it beforehand. =P Sri, can we just update the IronPython release zip with the "script" folder from the SDLSDK? Michael, the IronPython release is l

[IronPython] Python in the Browser Project Page

2008-06-15 Thread Michael Foord
Hello all, I've setup a project page for "Python in the Browser", an interactive Python interpreter that runs in an HTML textarea. http://code.google.com/p/pythoninthebrowser/ There's no download yet, but I have checked in the current code. "Python in the Browser" is an interactive Python in

Re: [IronPython] First cut of an interactive IronPython Interpreter running in the browser

2008-06-15 Thread Michael Foord
Jonathan Slenders wrote: Good work, this looks useful. Maybe you also want to capture the 'tab'-key -- I hate spaces for indentation. Some bug I noticed, when calling stdout.write myself: Python 2.5.0 () on silverlight The interactive browser interpreter by Michael Foord >>> import

Re: [IronPython] First cut of an interactive IronPython Interpreter running in the browser

2008-06-15 Thread Jonathan Slenders
Good work, this looks useful. Maybe you also want to capture the 'tab'-key -- I hate spaces for indentation. Some bug I noticed, when calling stdout.write myself: Python 2.5.0 () on silverlight > The interactive browser interpreter by Michael Foord > >>> import sys > >>> sys.stdout.write('test')