[IronPython] DB-API for IronPython update

2006-09-11 Thread Sanghyeon Seo
I reorganized DB-API for IronPython codes a lot. It is now located under the separate directory, besides lib: http://sparcs.kaist.ac.kr/~tinuviel/fepy/dbapi/ connect()-compatible wrappers for MySQLdb, psycopg, and sqlite are now moved to their own files. connect() is now a module-level function,

Re: [IronPython] importing powershell ala the demo video

2006-09-11 Thread Dave Fugate
Work is now being wrapped up on the PowerShell demo which will hopefully be released early this week as a complete sample.  In the meantime, I'll give you a short summary of what to expect: * powershell.py is a nice little module Jim wrote which wraps the managed PowerShell API in a very P

Re: [IronPython] Passing Arguments in hosted enviroment

2006-09-11 Thread Bernd Rössl
Hey David, thanks for your help. Passing the args to a session dependend context seams to be not as abstract as i thought...i will do so. I think i can't pass on 'ExecuteFile' because there are a lot of different scripts that can be edited during runtime. This scripts aren't simple methods (curr

Re: [IronPython] Visual Studio Integration

2006-09-11 Thread Martin Maly
Current status of the Visual Studio integration is that it is still a sample that ships with Visual Studio SDK. While both Visual Studio SDK and IronPython teams added some new functionality since the first time the code was available, it is still a sample and it will probably stay so in the nea

[IronPython] Cheetah works on IronPython

2006-09-11 Thread Sanghyeon Seo
Cheetah is a template engine written in Python: http://cheetahtemplate.org/ IronPython is an implementation of the Python programming language running on .NET: http://www.codeplex.com/IronPython I tested Cheetah 2.0rc7 with IronPython 1.0 for a while, and it seems to work nicely. Here is a sample

Re: [IronPython] socket for IronPython update

2006-09-11 Thread Sylvain Hellegouarch
> Originally we were trying to implement "_socket" instead of "socket". We > ran into one problem with this: the standard socket.py module has an > implicit dependency upon CPython's reference counting garbage collector > (for implementing dup). We considered a hack to make this work but > ultima

Re: [IronPython] Question for Sanghyeon Seo on porting projects

2006-09-11 Thread M. David Peterson
Just a side note: Seo, you know you've made it to the top of the community expert stack when folks begin to single you out in the subject line ;)>> First a comment: Absolutely wonderful stuff you have been doing (socket, db-api, etc.)! Please keep up the good work. Amen!On 9/11/06, David Welden <[E

[IronPython] Question for Sanghyeon Seo on porting projects

2006-09-11 Thread David Welden
First a comment: Absolutely wonderful stuff you have been doing (socket, db-api, etc.)! Please keep up the good work.And now the question: I notice you have begun some exploratory work on a port of ctypes. I would like to use this to port one of my ctypes interfaces to Iron Python, but alas, I am n

[IronPython] Patch for CodePlex issue #3118

2006-09-11 Thread Sanghyeon Seo
David Fraser filed CodePlex issue #3118 on co_flags. After talking with him a bit on IRC, I could come up with a patch for the issue. http://sparcs.kaist.ac.kr/~tinuviel/download/patch-ironpython-co-flags It would be nice too see this fixed in the latest source code download. -- Seo Sanghyeon _

Re: [IronPython] profile module support

2006-09-11 Thread Dino Viehland
We haven’t discussed implementing any of the CPython profiling & debugging support as of yet.  I’ve opened CodePlex bug # 3124 (http://www.codeplex.com/WorkItem/List.aspx?ProjectName=IronPython) but I’m not really sure when we’d get to this (I believe we have some other bugs for various deb

Re: [IronPython] socket for IronPython update

2006-09-11 Thread Dino Viehland
Originally we were trying to implement "_socket" instead of "socket". We ran into one problem with this: the standard socket.py module has an implicit dependency upon CPython's reference counting garbage collector (for implementing dup). We considered a hack to make this work but ultimately r

[IronPython] Passing Arguments in hosted enviroment

2006-09-11 Thread Bernd Rössl
Hey David, thanks for your help. Passing the args to a session dependend context seams to be not as abstract as i thought...i will do so. I think i can't pass on 'ExecuteFile' because there are a lot of different scripts that can be edited during runtime. This scripts aren't simple methods (cur

Re: [IronPython] Can't get Ironpython to run on MacOS X...

2006-09-11 Thread Wolfgang Keller
> Nothing. It is a known Mono bug. >From the answer I got on the Mono list, I would guess that it's less well known to the Mono developers. :-( Sincerely, Wolfgang Keller -- My email-address is correct. Do NOT remove ".nospam" to reply. ___ users m

[IronPython] API doc ref

2006-09-11 Thread Stanislas Pinte
thanks a lot for that documentation...A must-have!! Stan. -- - Stanislas Pinte e-mail: [EMAIL PROTECTED] ERTMS Solutions http://www.ertmssolutions.com Rue de l'Autonomie, 1 Tel:+ 32

Re: [IronPython] socket for IronPython update

2006-09-11 Thread Sanghyeon Seo
2006/9/11, Sylvain Hellegouarch <[EMAIL PROTECTED]>: > Thanks a lot Seo. > > Any reason that I would have missed why the built-in socket module does > not include those missing module functions? Well, that question should be answered by IronPython team, not me. I think the reason is... well, beca

Re: [IronPython] socket for IronPython update

2006-09-11 Thread Sylvain Hellegouarch
Thanks a lot Seo. Any reason that I would have missed why the built-in socket module does not include those missing module functions? Thanks, - Sylvain > I updated my socket module for IronPython. Although standard > IronPython release already has a socket module, it doesn't support > makefile()

[IronPython] socket for IronPython update

2006-09-11 Thread Sanghyeon Seo
I updated my socket module for IronPython. Although standard IronPython release already has a socket module, it doesn't support makefile(), ssl(), and select.select() yet, so this module is still useful. http://sparcs.kaist.ac.kr/~tinuviel/fepy/lib/socket.py Changes are mostly following socket.cs

[IronPython] DB-API for IronPython update

2006-09-11 Thread Sanghyeon Seo
I updated my DB-API for IronPython module, with patches from Mark Rees. Thank you, Mark! http://sparcs.kaist.ac.kr/~tinuviel/fepy/lib/dbapi.py # 2006-09-11 sanxiyn Merged changes from Mark Rees # * 2006-09-06 mark Added support for transactions # * 2006-09-07 mark Execution of non-query stateme