Re: [IronPython] Are Converters (IValueConverter) supported in IronPython + Silverlight?

2010-01-20 Thread Jimmy Schementi
Are you using clrtype.py or a C# stub? If you're not using either of these, then you will get a AG_E_PARSER_BAD_TYPE when trying to tell XAML about your Python type, since the corresponding CLR type won't be found. If send your python and XAML code, then I can help you figure this out. ~Jimmy

Re: [IronPython] Are Converters (IValueConverter) supported in IronPython + Silverlight?

2010-01-20 Thread Edward J. Stembler
I installed the Developer runtime, which incidentally is LinkID=150227 for Mac. In any case, I got my Converter recognized as a .NET type; however I couldn't get passed the AG_E_PARSER_BAD_TYPE error when loading the converter reference in XAML. I initially thought there may be some namespace i

[IronPython] Write a Ruby or Python web-app and win cash!

2010-01-20 Thread Jimmy Schementi
MIX 10K Smart Coding Challenge: http://mix10k.visitmix.com 9 days left, an counting, to enter your minimalist creation into the MIX 10K Smart Coding Challenge. I can be anything you want, it just has to be less than 10 kilobytes of source code. You can use HTML5, or Silverlight, and also use Ru

[IronPython] IronPython 2.6 CodePlex Source Update

2010-01-20 Thread merllab
This is an automated email letting you know that sources have recently been pushed out. You can download these newer sources directly from http://ironpython.codeplex.com/SourceControl/changeset/view/63401. ADDED SOURCES $/IronPython/IronPython_Main/Src/IronPython/Compiler/PythonDynami

Re: [IronPython] IronPython in Visual Studio 2008

2010-01-20 Thread Dino Viehland
There've been a couple of bugs discovered in settrace but they're getting fixed for 2.6.1 (the import os issue works on my machine w/o me having to fix anything, so I guess it's a duplicate of some other bug). Bummer, I was hoping Wing might have implemented debugging like PyDev (a set of scrip

Re: [IronPython] Strange error using settrace - help needed

2010-01-20 Thread Dave Fugate
Thanks for reporting this Frank! Looks like a legit bug to me, and I've filed it on CodePlex - see http://ironpython.codeplex.com/WorkItem/View.aspx?WorkItemId=25994. Dave -Original Message- From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf

Re: [IronPython] IronPython in Visual Studio 2008 (fwd)

2010-01-20 Thread Michael Foord
On 20/01/2010 16:27, Joshua Kramer wrote: Michael Foord wrote: "The short answer is no. The Wing debugger is written in C. The SharpDevelop debugger (written in C#) does work with IronPython though." I'm not sure what the language that the editor is written with has to do with it. Nothin

Re: [IronPython] IronPython in Visual Studio 2008 (fwd)

2010-01-20 Thread Joshua Kramer
Michael Foord wrote: "The short answer is no. The Wing debugger is written in C. The SharpDevelop debugger (written in C#) does work with IronPython though." I'm not sure what the language that the editor is written with has to do with it. Eclipse + PyDev is written in Java and it works 95%

Re: [IronPython] IronPython in Visual Studio 2008

2010-01-20 Thread Jan Rouvillain
Dear Michael Foord, The short answer is no. The Wing debugger is written in C. The SharpDevelop > debugger (written in C#) does work with IronPython though. > It's not that white or black. If the IronPython code does not call windows application run, then you can step through the code. You are ri

Re: [IronPython] IronPython in Visual Studio 2008

2010-01-20 Thread Michael Foord
On 20/01/2010 02:34, Dino Viehland wrote: Does Wing now work w/ IronPython for debugging now that we added sys.settrace in 2.6? Does settrace work? I've seen two questions about it in as many days that are as yet unanswered. The short answer is no. The Wing debugger is written in C. The S

[IronPython] Strange error using settrace - help needed

2010-01-20 Thread see_toronto
Hi, probably I'm just not experienced enough with IP to see what's going wrong. If I run a script using ipy.exe and add the standard Python Lib folder to sys.path, I can use "import os". If I do the same, but issue an sys.settrace prior to the import the executions failes with an index out of ran

Re: [IronPython] Are Converters (IValueConverter) supported in IronPython + Silverlight?

2010-01-20 Thread Jimmy Schementi
> I took a simple converter and ported it to IronPython, however > I'm getting the ever helpful SystemError 2255. Do you have the Silverlight "Developer" runtime? The "Consumer" runtime give you only error codes, while the developer runtime gives you actual exception messages. Here's the devel