Re: [Ironpython-users] IronPython on Windows Phone

2012-03-07 Thread Markus Schaber
Hi, Cesar, Just as a side note: If the Express Editions are too limited, sometimes SharpDevelop or MonoDevelop do the trick. E. G. they can handle "Solution Folders" and multi-language projects. A disadvantage is that, currently, none of them handles Managed C++ and C++/CLI. Grüße, Markus Von

Re: [Ironpython-users] IronPython on Windows Phone

2012-03-07 Thread Cesar Mello
Opened issue 32374 for this. Best regards Mello On Tue, Mar 6, 2012 at 2:25 PM, Jeff Hardy wrote: > On Tue, Mar 6, 2012 at 2:45 AM, Cesar Mello wrote: > > Hi Jeff, > > But I reached the same corner: expressions like 2 + 2 work, but 2 + 2.5 > > do

Re: [Ironpython-users] IronPython via nuget - how do I get the class reference documentation?

2012-03-07 Thread Jeff Hardy
On Wed, Mar 7, 2012 at 2:33 PM, Nick Aschberger wrote: > Thanks Dino! > > > > Don’t know why I couldn’t find it! Well, probably because it's not intuitively named and in a non-obvious location, not to mention inside a PDF? I can't say I blame you... Hopefully that will change soon. :) - Jeff __

Re: [Ironpython-users] setuptools

2012-03-07 Thread Jeff Hardy
On Wed, Mar 7, 2012 at 2:54 PM, Slide wrote: > Just as an FYI, I committed some fixes today that should allow setuptools to > be used with IronPython. I was able to bootstrap setuptools correctly with > these fixes. Can you try it with distribute (http://pypi.python.org/pypi/distribute) as well?

Re: [Ironpython-users] IronPython via nuget - how do I get the class reference documentation?

2012-03-07 Thread Nick Aschberger
Thanks Dino! Don't know why I couldn't find it! Cheers Nick From: Dino Viehland [mailto:[email protected]] Sent: Thursday, 8 March 2012 3:50 AM To: Nick Aschberger; [email protected] Subject: RE: [Ironpython-users] IronPython via nuget - how do I get the class reference

[Ironpython-users] setuptools

2012-03-07 Thread Slide
Just as an FYI, I committed some fixes today that should allow setuptools to be used with IronPython. I was able to bootstrap setuptools correctly with these fixes. https://github.com/IronLanguages/main/commit/f975d2f68412fd761939d19f0bfbb44fffea0fcc -- Website: http://earl-of-code.com

Re: [Ironpython-users] IronPython on Windows Phone

2012-03-07 Thread Cesar Mello
Thanks! I think I missed that one because I use the Express editions of Visual Studio at home. But now I see all the platforms are OK. Best regards Mello On Wed, Mar 7, 2012 at 2:31 PM, Jeff Hardy wrote: > Please use the RC1 files if you can. > > The normal WP build uses the same project files

Re: [Ironpython-users] Importing modules in a restricted AppDomain

2012-03-07 Thread Dino Viehland
Nope, ideally IronPython's assemblies are not trusted. In general IronPython's assemblies are "security transparent" which means they don't affect any security decisions made by the CLR. If you gave them full trust then the user could do something like file('C:\\bad_file.txt', 'w+'). The secu

Re: [Ironpython-users] Importing modules in a restricted AppDomain

2012-03-07 Thread Jeff Hardy
On Wed, Mar 7, 2012 at 5:17 AM, Cesar Mello wrote: > Hi, > > Must I grant fulltrust permissions to the IronPython assemblies? Sorry for > the basic question, but will the scripts still be restricted in this case? > > Thank you a lot. This is a bit urgent for me, because it's the last step > before

Re: [Ironpython-users] Importing modules in a restricted AppDomain

2012-03-07 Thread Jeff Hardy
On Wed, Mar 7, 2012 at 9:41 AM, Dino Viehland wrote: > Jeff wrote: >> You shouldn't have to, but we don't do any testing in restricted AppDomains >> and >> so I'm afraid it may have inadvertantly been broken. >> I've cc'd Dino; he might be able to help you a little more as this is an >> area I'm

Re: [Ironpython-users] Importing modules in a restricted AppDomain

2012-03-07 Thread Dino Viehland
Jeff wrote: > You shouldn't have to, but we don't do any testing in restricted AppDomains > and > so I'm afraid it may have inadvertantly been broken. > I've cc'd Dino; he might be able to help you a little more as this is an area > I'm not > familiar with. We have a test :) It's in EngineTest.

Re: [Ironpython-users] Importing modules in a restricted AppDomain

2012-03-07 Thread Jeff Hardy
On Wed, Mar 7, 2012 at 5:17 AM, Cesar Mello wrote: > Hi, > > Must I grant fulltrust permissions to the IronPython assemblies? Sorry for > the basic question, but will the scripts still be restricted in this case? You shouldn't have to, but we don't do any testing in restricted AppDomains and so I

Re: [Ironpython-users] IronPython on Windows Phone

2012-03-07 Thread Jeff Hardy
Please use the RC1 files if you can. The normal WP build uses the same project files as everything else - just set the configuration to WP7Debug (or maybe Silverlight3Debug, I can't remember if I actually renamed it). You can also build everything by opening a Visual Studio command prompt, naviga

Re: [Ironpython-users] IronPython via nuget - how do I get the class reference documentation?

2012-03-07 Thread Dino Viehland
http://dlr.codeplex.com/wikipage?title=Docs%20and%20specs&referringTitle=Documentation has these 2 copies of the hosting spec: http://www.codeplex.com/Download?ProjectName=dlr&DownloadId=127513 [doc] http://www.codeplex.com/Download?ProjectName=dlr&DownloadId=127

[Ironpython-users] IronPython, Daily Digest 3/6/2012

2012-03-07 Thread no_reply
Hi ironpython, Here's your Daily Digest of new issues for project "IronPython". In today's digest:ISSUES 1. [New comment] Exception().__doc__ different from CPython 2. [New comment] Include RST docs in source control, ship HTML docs 3. [New comment] __file__ incorrect for modules compiled with P

[Ironpython-users] IronPython via nuget - how do I get the class reference documentation?

2012-03-07 Thread Nick Aschberger
Hi All, I have added in IronPython references to my project via nuget, and things are working swimmingly. However, as I'm ramping up on using IronPython, I'm finding a need inside visual studio to hit good 'ol F12, and jump to the definition of a fn or class to have a bit of a read. I'm ta

Re: [Ironpython-users] Importing modules in a restricted AppDomain

2012-03-07 Thread Cesar Mello
Hi, Must I grant fulltrust permissions to the IronPython assemblies? Sorry for the basic question, but will the scripts still be restricted in this case? Thank you a lot. This is a bit urgent for me, because it's the last step before I can finish the prototype with IronPython and let it be accept

Re: [Ironpython-users] IronPython on Windows Phone

2012-03-07 Thread Cesar Mello
Hi, For the repro sample, do you prefer to have references to the RC1 binaries, or should I add the IronPython projects to compile from source and aid debugging? A second question: what solution and projects are being used for the Windows Phone build? Thanks Mello On Tue, Mar 6, 2012 at 4:43 P