[IronPython] IronPython/NWSGI 0-byte 200/404 response with HelloWorld?

2009-09-18 Thread Markus T�rnqvist
Hi! I asked this question on http://nwsgi.codeplex.com/Thread/View.aspx?ThreadId=69422 but to be better safe than sorry I'll ask this list too, sorry about the copypasta :) The platform is Windows 2003 Server, meaning IIS6, and IronPython 2.6 (because I'm hoping this will all lead up to Django,

Re: [IronPython] [Spec and Code Review] Python and Ruby in HTML script-tags

2009-09-18 Thread Michael Foord
Jimmy Schementi wrote: import/require tests are lacking, so I don't doubt that there are some issues, especially when embedding Python in C#. I'll make sure to add that to the new tests. FYI, all the DLR Silverlight tests will finally be released and runnable with a latest of Silverlight. The

Re: [IronPython] [Spec and Code Review] Python and Ruby in HTML script-tags

2009-09-18 Thread Jimmy Schementi
import/require tests are lacking, so I don't doubt that there are some issues, especially when embedding Python in C#. I'll make sure to add that to the new tests. FYI, all the DLR Silverlight tests will finally be released and runnable with a latest of Silverlight. The current tests contain so

Re: [IronPython] [Spec and Code Review] Python and Ruby in HTML script-tags

2009-09-18 Thread Michael Foord
This is great Jimmy. One thing I ask you to check - can you test the behaviour of Python engines when embedded in Silverlight (*both* from C# and from Python itself). Specifically can you check that imports still work. I've had several problems with this in Silverlight with IronPython 2.0 - eve

[IronPython] [Spec and Code Review] Python and Ruby in HTML script-tags

2009-09-18 Thread Jimmy Schementi
The write-up of "Bringing just-text back to Silverlight" is available at the link below, and I'll take any feedback on it. http://jimmy.schementi.com/silverlight/sl-back-to-just-text.pdf The implementation of the write-up is almost feature-complete, and I have hosted some pretty samples written

Re: [IronPython] Having Issues With KeyUp Event

2009-09-18 Thread Dino Viehland
You're probably missing a reference to System.Windows.Input, doing: clr.AddReference('System.Windows.Input') will probably make it work. -Original Message- From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of Nick Hird Sent: Friday, September

[IronPython] Having Issues With KeyUp Event

2009-09-18 Thread Nick Hird
I am new to IronPython and kinda new to Python but i decided to look around and find some samples and decided to build something using WPF inside IronPython. I am trying to add a KeyUp event to a TextBox and when i enter the texttbox and press any key i get an error. Now in WPF this code works just

[IronPython] ANN: Resolver One version 1.6.5 released

2009-09-18 Thread Giles Thomas
We are proud to announce the release of Resolver One, version 1.6.5. Resolver One is a Windows-based spreadsheet that integrates IronPython deeply into its recalculation loop, making the models you build more reliable and more maintainable. It's also still (we think) the largest IronPython ap

Re: [IronPython] Accessing CPython from compiled assemblies

2009-09-18 Thread David Escobar
Great, thanks! On Thu, Sep 17, 2009 at 10:45 AM, Harry Pierson wrote: > FYI, I covered how to compile CPython python packages into a DLL for > inclusion in my Pygments for WLWriter project. Relevant post is at > http://devhawk.net/2009/08/10/Compiling+Python+Packages+Into+Assemblies.aspx > > Ha