Re: [IronPython] suddenly IronPython needs 2.0 SDK

2009-06-10 Thread Justin Regele
Yeah, everything suddenly worked again. On Wed, Jun 10, 2009 at 3:54 PM, Curt Hagenlocher wrote: > Sounds strange. Did reinstallation of the SDK solve your problem? > > On Mon, Jun 8, 2009 at 6:43 PM, Justin Regele wrote: > >> Last week I moved a python application into IronPython and under >>

Re: [IronPython] suddenly IronPython needs 2.0 SDK

2009-06-10 Thread Curt Hagenlocher
Sounds strange. Did reinstallation of the SDK solve your problem? On Mon, Jun 8, 2009 at 6:43 PM, Justin Regele wrote: > Last week I moved a python application into IronPython and under IronPython > studio I was building and debugging and everything just worked. But today I > was getting errors

Re: [IronPython] Checking syntax of source code without running it

2009-06-10 Thread Curt Hagenlocher
Through the hosting API, it's something like this: engine = IronPython.Hosting.Python.CreateEngine() source = engine.CreateScriptSourceFromString(text, SourceCodeKind.File) errors = ErrorListener() command = source.Compile(errors) if command is None: # compilation failed Here, ErrorListener i

[IronPython] Checking syntax of source code without running it

2009-06-10 Thread Harri Vartiainen
Hi, What's the best way to check syntax of IronPython source code without actually running it? I'd like to embed IronPython to application and make it as user friendly as possible, so all checking before running the code would be helpful. There are many options listed here for CPython: http:/

Re: [IronPython] Generate xap for SL when assemblies are located in sub-directory

2009-06-10 Thread Jimmy Schementi
Replace the /x with /z: Chiron.exe /d:app /z:app.xap /r:app/dependencies Looking at Chiron.exe help: /x[ap]: Specifies XAP file to generate Does not start the web server, cannot be combined with /w or /b ... /z[ipdlr]: Like /x, but includes files needed for dynamic language apps

[IronPython] IronPython 2.6 CodePlex Source Update

2009-06-10 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/54434. DELETED SOURCES $/IronPython/IronPython_Main/Lib MODIFIED SOURCES $/Ir

Re: [IronPython] Fwd: [Mono-dev] Current 'xbuild' status

2009-06-10 Thread Michael Foord
Seo Sanghyeon wrote: FYI. So IronPython 2.0.1 can now be compiled with Mono? Very cool. Does that mean we can expect a new FePy release? Michael From: Ankit Jain Date: 2009/6/10 Subject: [Mono-dev] Current 'xbuild' status Current xbuild status: It can handle solutions (.sln) now, th

[IronPython] Generate xap for SL when assemblies are located in sub-directory

2009-06-10 Thread Kristian Jaksch
This works fine when the xap is generated in memory with /b from VS 2008 but how to make it work when creating a real app.xap file? What I have is this: root/app/dependencies chiron is located in the "root". The "app.py" is located in "app" and the assemblies are located in "dependencies". The