Re: [IronPython] First cut of an interactive IronPython Interpreterrunning in the browser

2008-06-16 Thread Keith J. Farmer
Very simple fix indeed, then :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Foord Sent: Monday, June 16, 2008 12:55 AM To: Discussion of IronPython Subject: Re: [IronPython] First cut of an interactive IronPython Interpreterrunning in the brows

Re: [IronPython] Python in the Browser updates

2008-06-16 Thread Miha Valencic
Any ideas how to get it working on Mac? Thanks, Miha. On Tue, Jun 17, 2008 at 1:04 AM, Michael Foord <[EMAIL PROTECTED]> wrote: > For those who are interested, I've updated "Python in the Browser". > > And the online demo: > > http://www.voidspace.org.uk/ironpython/silverlight-console/console.ht

Re: [IronPython] Silverlight+IronPython: external DLLs

2008-06-16 Thread Jimmy Schementi
Jonathan, Make your AppManifest.xaml file look like this, this will let you download DLLs from the root of the current domain. You can also add http://foo.com to the beginning of the path and have it download from a different server (which needs to have a clientaccess.xml or clientaccesspolicy.

[IronPython] Python in the Browser updates

2008-06-16 Thread Michael Foord
For those who are interested, I've updated "Python in the Browser". Both the repository: http://code.google.com/p/pythoninthebrowser/ And the online demo: http://www.voidspace.org.uk/ironpython/silverlight-console/console.html There are a few minor but nice improvements: * The Javascript now

[IronPython] ironpython xna problem

2008-06-16 Thread Gigs_
Hi all! i want to run some ironpython xna script, but all the tim im getting error. I tried this in c# and it is working, i have installed directx runtime, xna studio 2.0 and xna framework. later i tried with xna 3.0 and same thing this is error: Could not load file or assembly 'Microsoft.X

Re: [IronPython] DLR Videos from Lang.NET Symposium

2008-06-16 Thread Ben Hall
Excellent! Let everyone know when when they are available ;) On Mon, Jun 16, 2008 at 10:13 PM, Jimmy Schementi <[EMAIL PROTECTED]> wrote: > Yep, I actually just got them on my machine yesterday (someone else had > recorded them). They're good quality, so I'm going to compress them and get > them

Re: [IronPython] DLR Videos from Lang.NET Symposium

2008-06-16 Thread Jimmy Schementi
Yep, I actually just got them on my machine yesterday (someone else had recorded them). They're good quality, so I'm going to compress them and get them online soon. > -Original Message- > From: [EMAIL PROTECTED] [mailto:users- > [EMAIL PROTECTED] On Behalf Of Ben Hall > Sent: Monday, Ju

[IronPython] DLR Videos from Lang.NET Symposium

2008-06-16 Thread Ben Hall
Hi, I was just wondering if the two DLR sessions from Lang.NET Symposium was going to be made available - they are marked as "coming soon". The two sessions being "Vision of the DLR" and "Targeting DLR" Thanks Ben ___ Users mailing list Users@lists.ir

[IronPython] Silverlight+IronPython: external DLLs

2008-06-16 Thread Jonathan Slenders
Hello, I'm working on dynamic generation of XAP files from XAML and Python code. The normal way is to pack them all in a single XAP file. The problem here is that this files easily become a few MB and this is not reasonably when you've -- say 10 -- of these silverlight controls on a webpage. My cur

Re: [IronPython] How do I set assembly information in IronPython?

2008-06-16 Thread Pigneri, Rocco
I'm not sure if this is related at all, but since no one else has replied, I thought that I would supply it in case it puts you on the right path. The Al.exe (the Assembly Linker) is a .NET tool that adds an assembly manifest--a document that contains all the information that you are concerned abo

Re: [IronPython] Talk to Python script from C# app...

2008-06-16 Thread Bob Rosembob
Curt, Thanks a lot for your help Bob - Original Message From: Curt Hagenlocher <[EMAIL PROTECTED]> To: Discussion of IronPython Sent: Friday, June 13, 2008 6:38:11 PM Subject: Re: [IronPython] Talk to Python script from C# app... If this test worked, you should be able to just copy the

Re: [IronPython] Announcing IronPython 2.0 Beta3

2008-06-16 Thread Giles Thomas
Congratulations, guys! We'll build Resolver One against it and let you know what breaks :-) Regards, Giles Srivatsn Narayanan wrote: Hello IronPython Community, I'm pleased to announce IronPython 2.0 *Beta 3*. We have fixed around 34 bugs in this release (~16 of them reported on Code

Re: [IronPython] First cut of an interactive IronPython Interpreterrunning in the browser

2008-06-16 Thread Michael Foord
Keith J. Farmer wrote: Neat Small bug: the Start/End/Pos don’t update until a key press. Probably a simple fix. J The start / end / pos are purely there for debugging and are updated on a keypress. They will be removed when I get a chance to test and fix the Javascript with IE. :-) Mi