Re: [IronPython] Python Standard Library in IronPython

2008-10-28 Thread Seo Sanghyeon
2008/10/29 Kenneth Miller <[EMAIL PROTECTED]>: > http://github.com/xkenneth/gxml/tree/master What do you think about http://trac.defuze.org/wiki/bridge ? -- Seo Sanghyeon ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/lis

Re: [IronPython] Error building ASP.NET 3.5 websites

2008-10-28 Thread Michael Foord
Dino Viehland wrote: No - we've briefly spoke about having our 3.0 release be the next version to require a new CLR version and that would be CLR 4 where we get DLR support baked in - but there's nothing concrete yet. Thanks - just checking. :-) Michael -Original Message- From:

Re: [IronPython] Error building ASP.NET 3.5 websites

2008-10-28 Thread Dino Viehland
No - we've briefly spoke about having our 3.0 release be the next version to require a new CLR version and that would be CLR 4 where we get DLR support baked in - but there's nothing concrete yet. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael F

Re: [IronPython] Error building ASP.NET 3.5 websites

2008-10-28 Thread Michael Foord
Curt Hagenlocher wrote: [snip...] We hope to address this problem differently for the next release, but our promise to stay compatible with .NET 2.0 for this release has somewhat constrained the type of solution we are able to offer. Thanks for your patience! Is there an intention to move aw

Re: [IronPython] IronPython on Intellipad

2008-10-28 Thread Michael Foord
Do you have a link? Michael Dody Gunawinata wrote: It's a WPF editor with IronPython crack :) From the readme "Customizing commands Almost all commands that are available in Intellipad have been written in Python using the object model exposed by the application. The P

Re: [IronPython] IronPython on Intellipad

2008-10-28 Thread Curt Hagenlocher
See also http://blogs.msdn.com/intellipad On Tue, Oct 28, 2008 at 2:54 PM, Dody Gunawinata <[EMAIL PROTECTED]>wrote: > > http://code.msdn.microsoft.com/oslo/Release/ProjectReleases.aspx?ReleaseId=1707 > > > On Tue, Oct 28, 2008 at 11:46 PM, Michael Foord <[EMAIL PROTECTED] > > wrote: > >> Do you

Re: [IronPython] IronPython on Intellipad

2008-10-28 Thread Dody Gunawinata
http://code.msdn.microsoft.com/oslo/Release/ProjectReleases.aspx?ReleaseId=1707 On Tue, Oct 28, 2008 at 11:46 PM, Michael Foord <[EMAIL PROTECTED]>wrote: > Do you have a link? > > Michael > > Dody Gunawinata wrote: > >> It's a WPF editor with IronPython crack :) >> From the readme >> >> "Customiz

Re: [IronPython] Python Standard Library in IronPython

2008-10-28 Thread Kenneth Miller
All, This is a good idea, and I actually planned to do this for path manipulation some time ago, named "clipath" (analogy to "ntpath", "posixpath", etc.). Another obvious candidate is "clidom", reusing .NET's DOM classes. How would these modules be structured, I'd simply just recreate what

Re: [IronPython] IronPython on Intellipad

2008-10-28 Thread Michael Foord
Curt Hagenlocher wrote: That's what the "Connected Systems Division" was publicly calling Intellipad before it had a "real" name. Intellipad is an extensible text editor inspired by Emacs which uses IronPython as its extension language. Thanks! Michael On Tue, Oct 28, 2008 at 1:40 PM, Mi

Re: [IronPython] IronPython on Intellipad

2008-10-28 Thread Dody Gunawinata
It's a WPF editor with IronPython crack :) >From the readme "Customizing commands Almost all commands that are available in Intellipad have been written in Python using the object model exposed by the application. The Python files are scattered inside the Settings directory.

Re: [IronPython] IronPython on Intellipad

2008-10-28 Thread Curt Hagenlocher
That's what the "Connected Systems Division" was publicly calling Intellipad before it had a "real" name. Intellipad is an extensible text editor inspired by Emacs which uses IronPython as its extension language. On Tue, Oct 28, 2008 at 1:40 PM, Michael Foord <[EMAIL PROTECTED]>wrote: > Dody Guna

Re: [IronPython] IronPython on Intellipad

2008-10-28 Thread Michael Foord
Dody Gunawinata wrote: The new Oslo technology "Emacs.Net" editor relies on IronPython to do the job that Lisp do for Emacs. What is Emacs.NET ? Michael "Error Executing Command: 'setmode(MMode)'. Microsoft.Scripting.Runtime.UnboundNameException: name 'setmode' is not defined at Iron

[IronPython] IronPython on Intellipad

2008-10-28 Thread Dody Gunawinata
The new Oslo technology "Emacs.Net" editor relies on IronPython to do the job that Lisp do for Emacs. "Error Executing Command: 'setmode(MMode)'.Microsoft.Scripting.Runtime.UnboundNameException: name 'setmode' is not defined at IronPython.Runtime.PythonContext.MissingName(SymbolId name) at

Re: [IronPython] Announcing IronPython 2.0 VS10 CTP

2008-10-28 Thread Dody Gunawinata
Hmm..is there any hosted VPC made available? I'm based in Cairo and a 23GB download will probably tie up the whole bandwidth of Africa. Dody G. On Tue, Oct 28, 2008 at 6:58 AM, Curt Hagenlocher <[EMAIL PROTECTED]>wrote: > Watch the the videos from the PDC, once they're posted. I know that some >

Re: [IronPython] Python Standard Library in IronPython

2008-10-28 Thread Seo Sanghyeon
2008/10/29 Kenneth Miller <[EMAIL PROTECTED]>: > I know I can access just about everything in the python standard library > by simply adding it to the ironpython path, however this is not a good > solution when writing dynamic applications in Silverlight. I can include the > standard library with

Re: [IronPython] Debugging in VS Expermental Hive

2008-10-28 Thread Dino Viehland
Currently you can't see module globals in the debugger but we are working on improving the VS experience. You should be able to see locals that are defined in a function though today. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, October 28, 200

[IronPython] Python Standard Library in IronPython

2008-10-28 Thread Kenneth Miller
All, I know I can access just about everything in the python standard library by simply adding it to the ironpython path, however this is not a good solution when writing dynamic applications in Silverlight. I can include the standard library with my silverlight application, but this b

[IronPython] Debugging in VS Expermental Hive

2008-10-28 Thread mikhail.osadnik
Hello A was hoping to get any help on ironpython scripts debugging under Visual Studio 2008 Experimental Hive. The problem is it appears impossible to watch variables in VS IDE .NET debugger apart from the line number ($line) which is somewhat redundant. The setup code is as follows:

Re: [IronPython] Error building ASP.NET 3.5 websites

2008-10-28 Thread Fernando Correia
Thank you, Curt. This workaround allows me to build ASP.NET websites targeting Framework 3.5. I can also build assemblies targeting 3.5. If Microsoft.Scripting.ExtensionAttribute.dll is "The 5th Assembly", what will this alternate version be called? The Ghost Assembly? =D 2008/10/24 Curt Hagenloc

Re: [IronPython] Current working directory in Silverlight?

2008-10-28 Thread Michael Foord
Kenneth Miller wrote: All, Trying to execute this code in Silverlight: from System.IO import Directory Directory.GetCurrentDirectory() What happens when you execute this code? How do I handle directories in silveright? I know it's a bit different since they're packaged. I nee

Re: [IronPython] Announcing IronPython 2.0 VS10 CTP

2008-10-28 Thread Michael Foord
Tim Roberts wrote: On Tue, 28 Oct 2008 00:36:05 +0200, "Dody Gunawinata" <[EMAIL PROTECTED]> wrote: Yup. It looks like more information needed on all of these dynamic features. In the first glance it looks like C# 4.0 is turning into VB 6 :) Are you saying that would be a bad thin