Re: [IronPython] Data Binding with DLR Languages

2008-12-03 Thread Jimmy Schementi
http://www.codeplex.com/sdlsdk/WorkItem/View.aspx?WorkItemId=11844 Agreed that it needs to be done. Feel free to make the first couple stabs at it, but it is a hard problem, so not sure if you have time for it. I'm organizing the project a bit more to have a set of tangible projects people can

Re: [IronPython] Data Binding with DLR Languages

2008-12-03 Thread Dan Eloff
On Wed, Dec 3, 2008 at 2:27 PM, Jimmy Schementi [EMAIL PROTECTED] wrote: http://www.codeplex.com/sdlsdk/WorkItem/View.aspx?WorkItemId=11844 Agreed that it needs to be done. Feel free to make the first couple stabs at it, but it is a hard problem, so not sure if you have time for it. I'm

[IronPython] Parsing scripts

2008-12-03 Thread Steve Baer
I would like to be able to add some sort of intellisense to a text editor for IronPython scripts. Something along the lines of reporting the available functions in a module after hitting a period. import clr clr. - (show something here) Are there utilities available in IronPython for analyzing

Re: [IronPython] Parsing scripts

2008-12-03 Thread Dino Viehland
The closest we have to this currently is what the console does w/ live objects. I think you could also find some examples of this in IronPython Studio (http://www.codeplex.com/IronPythonStudio) but there's nothing that's too sophisticated right now. From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [IronPython] Blocker: ProcessDialogKey on TextBox subclass

2008-12-03 Thread Dave Fugate
I think the following might be a workaround for this: import clr clr.AddReference('System.Windows.Forms') clr.AddReference('IronPython') from System.Windows.Forms import Form, Application, TextBox class MyTextBox(TextBox): ProcessDialogKeyCopy = TextBox.ProcessDialogKey def

[IronPython] Problem inheriting from C# abstract base class with overloaded constructors

2008-12-03 Thread Mark Traudt
If I create an abstract base class in C# that has overloaded constructors, and then subclass from this in IronPython, then I am unable to call the non-default base class constructor from the __new__ method in the subclass. If I try, I get the result shown after the code sample. Interestingly,

[IronPython] SilverShell 0.6 Released

2008-12-03 Thread Dan Eloff
A blatant plug for my own software here, but I just uploaded SilverShell 0.6.0: http://code.google.com/p/silvershell/ New in this release is the ability to run on the desktop with WPF, execution of code in background threads, and a scratchpad canvas for playing with UI controls. There are still

Re: [IronPython] Problem inheriting from C# abstract base class with overloaded constructors

2008-12-03 Thread Dino Viehland
This is bug #20021 - http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=20021 You should be able to declare the ctor public. It shouldn't be an error to do that but you'll get an FxCop warning if you run FxCop. I checked a fix for this in today into the Main branch (which is

Re: [IronPython] Problem inheriting from C# abstract base class with overloaded constructors

2008-12-03 Thread Dan Eloff
On Wed, Dec 3, 2008 at 9:19 PM, Dino Viehland [EMAIL PROTECTED] wrote: This is bug #20021 - http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=20021 I checked a fix for this in today into the Main branch (which is 2.1). I think that should show up on CodePlex tonight or

Re: [IronPython] SilverShell 0.6 Released

2008-12-03 Thread Keith J. Farmer
Neat.. I wonder how difficult it would be to be able to host IP, PS, etc, much like the Silverlight/DLR demo from last year. I imagine for DLR languages that's probably not terribly difficult, but I don't know how hard it would be to wrap a wrapper around the Powershell interpreter to make it

Re: [IronPython] Parsing scripts

2008-12-03 Thread orip
PySmell by Orestis Markou does completion through static analysis of Python code. I haven't tried it with IronPython but it could work, and from what I gather Orestis is happy to help. http://code.google.com/p/pysmell/ On Dec 4, 2:49 am, Dino Viehland [EMAIL PROTECTED] wrote: The closest we have