Re: [IronPython] run edna-0.6 , thread exception

2006-09-12 Thread Kevin Chu
I run edna-0.6 in IronPython 1.0,but another exception is throwed! D:\TECH\edna-0.6>D:\TECH\IronPython\ipy.exe D:\TECH\edna-0.6\edna.py Traceback (most recent call last): File D:\TECH\edna-0.6\edna.py, line 1167, in Initialize File D:\TECH\edna-0.6\edna.py, line 1075, in run_server F

Re: [IronPython] Trac on IronPython

2006-09-12 Thread David Fraser
Srepfler Srgjan wrote: > Hi, > I'm interested if the Trac issue tracking server could me made to run on > IronPython. I realize that the Trac people altready have an issue with > it http://trac.edgewall.org/ticket/667 but think it can't be done. If > anyone that uses IronPython and that thinks s

Re: [IronPython] Final release packaging

2006-09-12 Thread Martin Maly
We just published our wix scripts on codeplex They are located in the Public\Src\Scripts\Wix subdirectory of the source tree. The wix scripts work with the latest stable version of wix (2.0.4415.0) downloadable from http://wix.sourceforge.net/ Martin  On Sep 1, 2006 Martin Maly Wrote: We have

[IronPython] Trac on IronPython

2006-09-12 Thread Srepfler Srgjan
Hi, I'm interested if the Trac issue tracking server could me made to run on IronPython. I realize that the Trac people altready have an issue with it http://trac.edgewall.org/ticket/667 but think it can't be done. If anyone that uses IronPython and that thinks such a fork is possible could the

Re: [IronPython] adding a web reference to an Iironpython application

2006-09-12 Thread Martin Maly
This is currently not supported by the IronPython Visual Studio integration sample. What you found (access web service via the already generated proxy assembly) is the current alternative. Martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Walt Grat

Re: [IronPython] Empty CodeMethodReturnStatement causes exception...

2006-09-12 Thread Dino Viehland
I've opened CodePlex bug #3160 to fix this (http://www.codeplex.com/WorkItem/List.aspx?ProjectName=IronPython). Seo, I'll try and get this and your other requested fix (function flags) in today or tomorrow. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

Re: [IronPython] ScrollBarsEnabled problem

2006-09-12 Thread Dino Viehland
This might be a better question on a newsgroup specific to .NET or the IE web control.  Adding the ScrollBarsEnabled = False is the same as doing:   WebBrowser1 = WebBrowser() WebBrowser1.ScrollBarsEnabled = True   There may be some way for a web site to forcibly enable scrolls bars ev

Re: [IronPython] Regex that works under CPython doesn't compile under IronPython

2006-09-12 Thread Neil
Thanks for fixing this bug! ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

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

2006-09-12 Thread Sanghyeon Seo
2006/9/12, David Welden <[EMAIL PROTECTED]>: > 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 not a very experienced C or C# programmer and > have not the knowle

Re: [IronPython] How to install IP on Mono

2006-09-12 Thread Sanghyeon Seo
2006/9/11, IloChab <[EMAIL PROTECTED]>: > I'm looking for a tutorial to install Iron Python on Mono (0.11) in a linux > (FC5) environment. Well, Mono version in Fedora Core 5 is 1.1.13.4, not 0.11. Mono version in Fedora Core 5 is too old to run IronPython 1.0. You need to download the latest ve

[IronPython] Part of Visual Studio package

2006-09-12 Thread Rick Hedin
Greetings!    I'm sure somebody must have asked this before, but I can't seem to find it in the archives.    Now that we have an official 1.0 release of IronPython (yay!) is there hope that Microsoft will include it in the standard distribution of Visual Studio, along with C# and Java?  The

Re: [IronPython] IronPyton newbie questions

2006-09-12 Thread Martin Maly
Great documentation on Python in general is available at http://www.python.org/doc/ As for IronPython specific information, you can refer to the tutorial included with the IronPython distribution, check out our wiki at http://www.codeplex.com/ironpython, specifically the page http://www.codeple

Re: [IronPython] IronPyton newbie questions

2006-09-12 Thread Jan Szumiec
David Anton wrote: > I'm new to IronPyton (and Python in general). > Where can I find a good reference or spec for IronPython? > > I'd like to find information on whether the following is available in > IronPython (google has been of limited help so far in the following > searches): > - conditional

[IronPython] How to install IP on Mono

2006-09-12 Thread IloChab
I'm looking for a tutorial to install Iron Python on Mono (0.11)  in a linux (FC5) environment.Thanks in advance.ilochab ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

[IronPython] IronPyton newbie questions

2006-09-12 Thread David Anton
I'm new to IronPyton (and Python in general). Where can I find a good reference or spec for IronPython? I'd like to find information on whether the following is available in IronPython (google has been of limited help so far in the following searches): - conditional compilation - attributes (e.g.

[IronPython] ScrollBarsEnabled problem

2006-09-12 Thread Floris van Nee
Hey,   I've used IronPython for a few days now, and I'm making a program with it which has a WebBrowser control. I want the ScrollBarsEnabled property set to False. Now, my code to do that is:   WebBrowser1 = WebBrowser(ScrollBarsEnabled=False)   This works perfectly for most sites. However wheneve

Re: [IronPython] Empty CodeMethodReturnStatement causes exception...

2006-09-12 Thread Sanghyeon Seo
2006/9/12, Nathan Baulch <[EMAIL PROTECTED]>: > I also encountered this same problem in the Boo programming language. > To fix it, the developers have updated the code to output "return" by > itself when CodeMethodReturnStatement.Expression is null. > > Would this same behaviour make sense in IronP

Re: [IronPython] Empty CodeMethodReturnStatement causes exception...

2006-09-12 Thread Nathan Baulch
I also encountered this same problem in the Boo programming language. To fix it, the developers have updated the code to output "return" by itself when CodeMethodReturnStatement.Expression is null. Would this same behaviour make sense in IronPython? On 07/09/06, Nathan Baulch <[EMAIL PROTECTED]>