Re: [IronPython] CherryPy 3 on top of IronPython 1.0... kind of working

2006-09-05 Thread Sanghyeon Seo
2006/9/6, Sylvain Hellegouarch <[EMAIL PROTECTED]>: > e. Finally because the default IP socket implementation does not > support makefile, I had to use Seo's socket.py module in lieu. To avoid > collision and because I did not want to recompile IP, I modified the > import from _cpwsgiserver.py as f

Re: [IronPython] CherryPy 3 on top of IronPython 1.0... kind of working

2006-09-05 Thread M. David Peterson
FYI -- I've added Sylvains code base from this post to the PyPod.NET Click-Once IP console app.  While there's more to this app than just this, if you access > http://pypod.net/console/index.html < from a Windows box, Click install, a few moments later (and as long as your Python Lib directory is

Re: [IronPython] [ANN] IronPython 1.0 released today!

2006-09-05 Thread Mark Rees
Thanks to everyone in the IronPython Team for an excellent product. I have been following the progress since Jim's first release and using it for real things over the last couple of months. I cannot believe I am developing cross-platform apps on Linux using a Microsoft product, Before we know it "p

Re: [IronPython] [ANN] IronPython 1.0 released today!

2006-09-05 Thread Keith J. Farmer
So when and where's the party? I'm just a building or so over ;) I just watched the Udell video. Great stuff From: [EMAIL PROTECTED] on behalf of Jim Hugunin Sent: Tue 9/5/2006 1:27 PM To: users@lists.ironpython.com Cc: python-list@python.org Subject: [IronPyt

Re: [IronPython] users Digest, Vol 26, Issue 6

2006-09-05 Thread David Taylor
#x27;t seem to > get loaded...?" cmment in the spec file? > > Seo Sanghyeon > ___ > users mailing list > users@lists.ironpython.com > http://lists.ironpython.com/listinfo.cgi/users-ironpython.com > -- /M:D M. David Peterson h

Re: [IronPython] [ANN] IronPython 1.0 released today!

2006-09-05 Thread Alex Henderson
Congratulations Jim, Dino & others! I simply love this project, and our company has been eagerly awaiting the version 1.0 release as it's at the core of scripting and expression evaluation engine in our flagship product - and has been since beta 4. Great work guys, it's much appreciated here in N

[IronPython] CherryPy 3 on top of IronPython 1.0... kind of working

2006-09-05 Thread Sylvain Hellegouarch
All, First congratulations for the fantastic work you have done with IronPython. Tested against: IP 1.0 (binaries) CP 3 (recent svn trunk) Python 2.4.3 .NET 2 on Windows XP (yeah my Linux system broke down...) Tonight I was trying to run CherryPy 3 [1](which will reach its first beta really soo

Re: [IronPython] ipy support in msxsl:script blocks

2006-09-05 Thread M. David Peterson
btw, the newly released docs in regards to develping extension functions for Saxon on .NET are located @ http://www.saxonica.com/documentation/extensibility/dotnetextensions.html On 9/5/06, M. David Peterson <[EMAIL PROTECTED]> wrote: Worth noting, from my post earlier today (http://www.oreillynet.

Re: [IronPython] ipy support in msxsl:script blocks

2006-09-05 Thread M. David Peterson
Worth noting, from my post earlier today (http://www.oreillynet.com/xml/blog/2006/09/mhksaxon_saxon_88basic_and_sch_1.html) regarding the release of Saxon on .NET 8.8,* in the .NET product, extension functions written in C# or other .NET languages can now be invokedWhile the same is more than like

Re: [IronPython] [ANN] IronPython 1.0 released today!

2006-09-05 Thread M. David Peterson
Congratulations, Jim!  Truly and amazing vision you and your development staff have brought into fruition :)From my recent post to the O'Reilly Windows DevCenter,ref: http://www.oreillynet.com/windows/blog/2006/09/jim_huguninmsft_announce_ironp.html Congratulations are in order to Jim Hugunin, Din

[IronPython] locale issues

2006-09-05 Thread Jonathan Jacobs
A few locale issues I've run across: Python 2.4.2 (#67, Sep 28 2005, 12:41:11) [MSC v.1310 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import locale >>> locale.getpreferredencoding() 'cp1252' >>> locale.getlocale() (None, None) >>> import

Re: [IronPython] IronPython RC2 RPM + YaST + YUM

2006-09-05 Thread M. David Peterson
Hey Seo,I know VERY little when it comes to the world of Unix, but at first look, after installation there does seem to be the standard site.py contained in /usr/lib/IronPython/Lib which is the same empty file (except for the Microsoft copyright information) contained in the standard distro via Cod

[IronPython] [ANN] IronPython 1.0 released today!

2006-09-05 Thread Jim Hugunin
I'm extremely happy to announce that we have released IronPython 1.0 today! http://www.codeplex.com/IronPython I started work on IronPython almost 3 years ago. My initial motivation for the project was to understand all of the reports that I read on the web claiming that the Common Language Ru

Re: [IronPython] ipy support in msxsl:script blocks

2006-09-05 Thread Dino Viehland
The answer to this appears to be no - The XSL processor uses Reflection to try and discover the method to be called. In IronPython reflection won't tell you what methods are available. We do support the ICustomTypeDescriptor interface which is another way to get this information (which enables

Re: [IronPython] How to Use site.py

2006-09-05 Thread Dino Viehland
Here's what the IronPythonConsole does to import site, this should basically work for you too. Basically it looks like you're on the right path but your site.py needs to exist somewhere on your current sys.path which you haven't configured. string site = System.Reflection.Assembly

Re: [IronPython] Traceback Objects?

2006-09-05 Thread Dino Viehland
This looks to be a bug (note if you're running on a 64-bit box though we disable tracebacks by default due to another issue). But what appears to be happening is we don't create the traceback if the exception is caught within the method that raises it. Compare with: >>> def test(): ... tr

Re: [IronPython] NotImplementedError: bad mode: rb+

2006-09-05 Thread Martin Maly
This is a bug in IP, I've filed it on codeplex (2911) for us to fix in one of the future releases. Martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of HEMMI, Shigeru Sent: Monday, September 04, 2006 5:13 PM To: Discussion of IronPython Subject: [IronP

[IronPython] ipy support in msxsl:script blocks

2006-09-05 Thread Jesse Wiles
Hi, Can I script XSL extension objects using Iron Python? Jesse Wiles ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] Traceback Objects?

2006-09-05 Thread Gary Stephenson
Thanks for that, Mark. For some reason I was unable to find the message from Dino that you quoted. As for the CPython thing, I'm trying to stick to a policy of only using ipy and C# (and as little C# as possible). cheers, gary - Original Message - From: "Mark Rees" <[EMAIL PROTECTED]

Re: [IronPython] Traceback Objects?

2006-09-05 Thread Mark Rees
Was hoping someone with more knowledge would answer your question but think theres been a holiday in the US. I cannot say if IP behaves the same as CPython in this case, but I was going to say that using the the standard traceback module allows printing of the stack. Even one of the IP team said it