[IronPython] XMPP support in IronPython 2

2009-01-28 Thread Sylvain Hellegouarch
nIronPython2 [2] http://www.ag-software.de/index.php?page=agsxmpp-sdk [3] https://svn.defuze.org/oss/bridge/bridge/parser/bridge_dotnet.py -- Sylvain Hellegouarch http://www.defuze.org ___ Users mailing list Users@lists.ironpython.com http://lists.iro

[IronPython] Compiling IP2 on mono

2009-01-18 Thread Sylvain Hellegouarch
Hi folks, I've tried following Seo's steps [1] for compiling IP2 on the current mono trunk but it keeps failing with the next error: sylv...@localhost:~/download/IronPython-2.0/Src$ nant NAnt 0.86 (Build 0.86.2898.0; beta1; 08/12/2007) Copyright (C) 2001-2007 Gerry Shaw http://nant.sourceforge

Re: [IronPython] IRC Channel?

2009-01-06 Thread Sylvain Hellegouarch
Slide a écrit : Is there an IRC channel that people from the IP community hang out in frequently? If not, I believe there is an unofficial channel on freenode that could use some more people ;-) Indeed there is that unofficial one but it appears not so many people go there. Come one folks :)

Re: [IronPython] Announcing IronPython 2.0

2008-12-10 Thread Sylvain Hellegouarch
Congratulations to everyone who made it happen. That's fantastic news :) - Sylvain Dave Fugate a écrit : Hello Python Community, The IronPython and Dynamic Language Runtime teams are proud to announce the release of IronPython 2.0 final. IronPython 2.0 is the culmination of nearly two years

[IronPython] Don't let the IronPython IRC channel die

2008-12-04 Thread Sylvain Hellegouarch
Hi folks, There's been a IRC channel about IronPython for some time now but it's usually really quiet. I've seen friendly people and interesting discussions but too sparse to make them a lively channel. Maybe you're not aware of that channel but everyone is welcome. I think it'd be quite imp

Re: [IronPython] Roadmap and updates

2008-08-06 Thread Sylvain Hellegouarch
ourselves when > we see the call stack. If we had instead been throwing the exception from > one of the _stub_ methods then we'd definitely need a repro as that's > generated code and it's not immediately obvious what is going on. > > Anyway, this bug appears to be tri

Re: [IronPython] 2.0 Beta 4 MSI setup error.

2008-08-06 Thread Sylvain Hellegouarch
However I can't install the MSI any longer due to the same SP1 requirement others have had which prevents the installation from even starting. - Sylvain -- Sylvain Hellegouarch http://www.defuze.org ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] 2.0 Beta 4 MSI setup error.

2008-08-05 Thread Sylvain Hellegouarch
gt; Does this release require a specific version of .NET BTW? i'll try the zip > package just in case. FYI, the zip package has the same behavior. - Sylvain -- Sylvain Hellegouarch http://www.defuze.org ___ Users mailing list Users@lists.iro

Re: [IronPython] 2.0 Beta 4 MSI setup error.

2008-08-05 Thread Sylvain Hellegouarch
all have the following .NET framework versions: > 1.1 > 2.0 SP1 > 3.0 SP1 > 3.5 > > Thanks! > -J.___ > Users mailing list > Users@lists.ironpython.com > http://lists.ironpython.com/listinfo

Re: [IronPython] Roadmap and updates

2008-08-05 Thread Sylvain Hellegouarch
y the IP team's work. They've been very responsive and friendly to the community. However, visibility is sometimes lacking (mind you like many other large OSS projects ;)). I do realize as well that if I don't ask questions, I won't have answers... - Sylvain -- Sy

Re: [IronPython] Roadmap and updates

2008-08-05 Thread Sylvain Hellegouarch
he interest but keep in mind the product is still rather a long way. - Sylvain [1] http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=17561 It might not sound like it but that bug was quite hard to track down because of the rather poor traceback information provided by I

Re: [IronPython] Python Pages -- web application stack (like django, rails, ...)

2008-06-12 Thread Sylvain Hellegouarch
Tim Roberts a écrit : On Thu, 12 Jun 2008 02:18:58 +0200, "Jonathan Slenders" <[EMAIL PROTECTED]> wrote:" 2008/6/12 Tim Roberts <[EMAIL PROTECTED]>: > > May I ask what motivated you to create this from scratch? There are a > number of excellent Python web application frameworks available today

Re: [IronPython] NWSGI 0.1 released!

2008-03-20 Thread Sylvain Hellegouarch
That's great news. Congratulations :) - Sylvain Jeff Hardy a écrit : > Hi all, > I've finally built a binary version of NWSGI, which is much easier to > use than building it from source. It also includes a very simple > "Hello, World!" app to get started. > > I've tested with some simple Paste ap

Re: [IronPython] How to use Tao.Glfw or Tao.OpenGL Zooming windows

2008-02-17 Thread Sylvain Hellegouarch
.info/index.php/SDL_Zoom Sylvain Hellegouarch a écrit : > Jane, > > If you're only interested in 2D, you might want to use TaoSDL rather > than TaoOpenGL+TaoGLFW. SDL is a pretty cool graphics library that runs > on practically anything that exists. > > It might be easier

Re: [IronPython] How to use Tao.Glfw or Tao.OpenGL Zooming windows

2008-02-17 Thread Sylvain Hellegouarch
Jane, If you're only interested in 2D, you might want to use TaoSDL rather than TaoOpenGL+TaoGLFW. SDL is a pretty cool graphics library that runs on practically anything that exists. It might be easier than OpenGL but will only make sense in 2D context. For instance look at SdlGfx.zoomSurface

Re: [IronPython] How to use Tao.Glfw or Tao.OpenGL Zooming windows

2008-02-17 Thread Sylvain Hellegouarch
Hi Jane, I'd say that you'll have to go through the Tao documentation [1] and get a good OpenGL tutorial [2]. Note that the Tao distribution contains the NeHe tutorial ported to C#. I don't remember much of my OpenGL years but I think zoom doesn't exist per se, instead you change the view matr

Re: [IronPython] OpenGL with IronPython

2008-02-15 Thread Sylvain Hellegouarch
Hi there, You might want to use Tao [1]. The example below works fine with the latest stable release of Tao (2.0.0) and Mono 1.2.6 Note that I'm using Glfw [2] here but you could use FreeGlut instead of course. That example simply renders a spinning triangle onto a window. - Sylvain [1] http:/

Re: [IronPython] Mailing list vs. Web discussions on CodePlex

2007-12-11 Thread Sylvain Hellegouarch
Personally I don't think the IP-list has enough volume to justify a split and that would be detrimental. If people don't want to subscribe to a list for fear of spam it's fair enough but the list has been working just fine until now and I personally would not pay attention to a forum per se mys

Re: [IronPython] FePy patches

2007-10-06 Thread Sylvain Hellegouarch
Thanks a lot Seo. I can confirm I managed to compile IP2.0a4 after applying Seo's patchs using the release of mono 1.2.5.1. It even launched and hasn't crashed yet :) Again, thank you Seo. You rock! - Sylvain Sanghyeon Seo wrote: > I overhauled FePy patches list. > http://fepy.sourceforge.ne

Re: [IronPython] Any news about the next release?

2007-10-02 Thread Sylvain Hellegouarch
ing to be Python 2.5 compatible with > IronPython 2.0 and we're not quite there yet. > > Dave > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sylvain > Hellegouarch > Sent: Tuesday, October 02, 2007 3:48 PM > To

Re: [IronPython] Any news about the next release?

2007-10-02 Thread Sylvain Hellegouarch
mailto:[EMAIL PROTECTED] On Behalf Of Sylvain > Hellegouarch > Sent: Tuesday, October 02, 2007 3:19 PM > To: users@lists.ironpython.com > Subject: [IronPython] Any news about the next release? > > Hi all, > > I was wondering if there was any news about the next availabl

[IronPython] Any news about the next release?

2007-10-02 Thread Sylvain Hellegouarch
Hi all, I was wondering if there was any news about the next available release? Will it be a beta or still an alpha? When may we expect it? Just to feed my curiosity :) Thanks, - Sylvain ___ Users mailing list Users@lists.ironpython.com http://lists.i

Re: [IronPython] Please remove me from the mailing list - thanks

2007-08-09 Thread Sylvain Hellegouarch
Paul Sherr a écrit : > ___ > Users mailing list > Users@lists.ironpython.com > http://lists.ironpython.com/listinfo.cgi/users-ironpython.com > Read the instructions: http://lists.ironpython.com/listinfo.cgi/users-ironpython.com - Sylvain

Re: [IronPython] [Kamaelia-list] Kamaelia and IronPython (was: Hosting IronPython 2.X in .NET app)

2007-07-20 Thread Sylvain Hellegouarch
M. David Peterson a écrit : > On 7/20/07, *Michael Sparks* <[EMAIL PROTECTED] > > wrote: > > Hi, > > > In the interests of you having a quiet life (who wants to be > dealing with > lawyers when writing code? :-)... > > > Who wants to deal with lawyers *EVE

Re: [IronPython] PythonEngine no constructors defined

2007-07-13 Thread Sylvain Hellegouarch
If you are using IP2 you should go with: PythonEngine _engine = PythonEngine.CurrentEngine; - Sylvain googen a écrit : > Hello, I am trying to run a python script via a VC# project, purely to create > an exe for my application. But I am having a problem > building every example I have found. It

Re: [IronPython] [Kamaelia-list] Kamaelia and IronPython (was: Hosting IronPython 2.Xin .NET app)

2007-07-12 Thread Sylvain Hellegouarch
> > Now we just need to to encourage the [EMAIL PROTECTED] to build > integrated (P)LINQ support into IronPython ;-) :D > > That would certainly be a greater incentive to attract a bigger community around IP. - Sylvain ___ users mailing list users@li

Re: [IronPython] Hosting IronPython 2.X in .NET app

2007-07-11 Thread Sylvain Hellegouarch
Ken Manheimer a écrit : > On 7/10/07, *M. David Peterson* <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > > On 7/10/07, *Sylvain Hellegouarch* < [EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > > Not to w

Re: [IronPython] Hosting IronPython 2.X in .NET app

2007-07-10 Thread Sylvain Hellegouarch
Dino Viehland a écrit : > > Does Kamaelia use the new syntax as supported via PEP-342 > (http://www.python.org/dev/peps/pep-0342/). That’s the particular > piece that we don’t support and is new to 2.5 – we do support > generators when you use yield as a statement instead of as an > expression

Re: [IronPython] Hosting IronPython 2.X in .NET app

2007-07-10 Thread Sylvain Hellegouarch
Jacob Lee a écrit : >> -Original Message- >> From: [EMAIL PROTECTED] [mailto:users- >> [EMAIL PROTECTED] On Behalf Of Sylvain Hellegouarch >> Sent: Tuesday, July 10, 2007 12:54 PM >> To: Discussion of IronPython >> Subject: Re: [IronPython] Hosting I

Re: [IronPython] Hosting IronPython 2.X in .NET app

2007-07-10 Thread Sylvain Hellegouarch
Curt Hagenlocher a écrit : > On 7/10/07, *Curt Hagenlocher* <[EMAIL PROTECTED] > > wrote: > > On 7/10/07, *Dino Viehland* < [EMAIL PROTECTED] > > wrote: > > Major things we know we still have to do include yield > expressi

Re: [IronPython] zope, cherrypy

2007-07-02 Thread Sylvain Hellegouarch
David Jensen a écrit : > Will IronPython on the backend support web server software such as Zope and > CherryPy, and, therefore, Plone, TurboGears, Django, etc.? > I cannot speak for Zope but IP1.1 will not run CherryPy 3 as-is because there are some shotcomings in IP1.1 that prevent it. Howe

Re: [IronPython] Is IronPython Project on CodePlex Now Accepting Patches?

2007-06-19 Thread Sylvain Hellegouarch
Nice. Question though: What kind of patch format should be expected by the teams? - Sylvain M. David Peterson a écrit : > @ http://www.codeplex.com/IronPython/SourceControl/PatchList.aspx > > " Anyone can upload a patch. Patches are evaluated by project team > members and either Applied or Decl

Re: [IronPython] __doc__ on None

2007-06-06 Thread Sylvain Hellegouarch
Martin Maly a écrit : > Thanks for yet another bug report, we now have it on codeplex as: > > http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=10823 > > As Shri already said earlier, we are focusing most of our energy on the 2.0 > development, but will address important blocking is

Re: [IronPython] SyntaxError: yield in more than one try blocks

2007-05-10 Thread Sylvain Hellegouarch
Great :) Thanks, Martin Maly wrote: > Absolutely! > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sylvain > Hellegouarch > Sent: Thursday, May 10, 2007 10:31 AM > To: Discussion of IronPython > Subject: Re: [IronPython] Sy

Re: [IronPython] SyntaxError: yield in more than one try blocks

2007-05-10 Thread Sylvain Hellegouarch
I assume you are looking at a solution in the future :) Martin Maly wrote: > Yes, this is currently a an unfortunate limitation of our compiler. > > Martin > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sylvain > Hellegou

[IronPython] SyntaxError: yield in more than one try blocks

2007-05-10 Thread Sylvain Hellegouarch
[EMAIL PROTECTED] mono bin/ipy.exe IronPython 1.1 (1.1) on .NET 2.0.50727.42 def test(): try: yield 1 except: try: yield 2 except: pass if __name__ == '__main__': for _ in test(): print _ Will produce: [EMAIL PROTECTED] mono bi

Re: [IronPython] Problem importing standard libraries

2007-04-13 Thread Sylvain Hellegouarch
Joss Burnett wrote: > Hi Sylvain, > > I am using the version of IronPython from: > http://www.codeplex.com/IronPython > > "IronPython 1.0 (1.0.61005.1977) on .NET 2.0.50727.42 > Copyright (c) Microsoft Corporation. All rights reserved." > > I have not seen the FePy version before but I will tak

Re: [IronPython] Problem importing standard libraries

2007-04-13 Thread Sylvain Hellegouarch
I was wondering if you were using IPCE or a vanilla IP? http://fepy.sourceforge.net/ Look notably at fepy's options: http://fepy.sourceforge.net/doc/fepy-options.html - Sylvain Joss Burnett wrote: > I am very new to Python and IronPython, so my apologies if this is a > very dumb question: > >

Re: [IronPython] IronPython v1.1 RC1 Released

2007-03-23 Thread Sylvain Hellegouarch
Congrats guys :) Dino Viehland wrote: > Now with the link to the release :) > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dino Viehland > Sent: Friday, March 23, 2007 1:09 PM > To: users@lists.ironpython.com > Subject: [IronPython] IronPython v1.1 RC1 Released > > Hello Iron

Re: [IronPython] Metaclass bug?

2007-03-07 Thread Sylvain Hellegouarch
Dino Viehland wrote: > We're actively working on it now and you should see something in Alpha form > by the summer at the very latest. > Thanks :) That does sound promising. - Sylvain ___ users mailing list users@lists.ironpython.com http://lists.iron

Re: [IronPython] Metaclass bug?

2007-03-07 Thread Sylvain Hellegouarch
e bad one :p I can live with it for now. You would not have a rough idea as to when you plan v2.0 for roughly? - Sylvain > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sylvain > Hellegouarch > Sent: Wednesday, March 07, 2007 6:15 AM > T

[IronPython] Metaclass bug?

2007-03-07 Thread Sylvain Hellegouarch
The following code: class C(object): pass class Meta(type): pass class A(object): __metaclass__ = Meta def __init__(self, e, s): print "__init__ A" def __call__(self, e, s): print "__call__ A" class B(object): def mount(self, c): a = A(c, "") i

Re: [IronPython] End of the World? No just end of the line.

2007-03-03 Thread Sylvain Hellegouarch
ut IP it does. - Sylvain Sylvain Hellegouarch wrote: > Hi folks, > > Working with M. David Peterson trying to run the CherryPy HTTP server on > IP under Windows we ran into a fairly subtle bug that was actually not > so subtle at all. > > When the server accepts a connection it m

[IronPython] End of the World? No just end of the line.

2007-03-03 Thread Sylvain Hellegouarch
Hi folks, Working with M. David Peterson trying to run the CherryPy HTTP server on IP under Windows we ran into a fairly subtle bug that was actually not so subtle at all. When the server accepts a connection it maps the socket into a file object so that it can read and write with a nice API. Wh

[IronPython] Atom Publishing Protocol via IronPython

2007-02-23 Thread Sylvain Hellegouarch
Hi folks, I have just started an article on how to use amplee [1] as a Python implementation of the Atom Publishing Protocol via IronPython. http://trac.defuze.org/wiki/AmpleeIronPython The article only provides an example via Mono for now but will soon be extended to explain how to deploy on Wi

[IronPython] ANN: bridge 0.2.4

2007-02-05 Thread Sylvain Hellegouarch
e fun, -- Sylvain Hellegouarch http://www.defuze.org ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] Potential issue with the 'in' construction?

2007-01-18 Thread Sylvain Hellegouarch
Forgot to say that I tested with the latest IPCE svn trunk build against mono 1.2 - Sylvain Sylvain Hellegouarch wrote: > Hi folks, > > Say I have the following class: > > class Test(dict): > def __getitem__(self, key): > print "__gelitem__ called" &g

[IronPython] Potential issue with the 'in' construction?

2007-01-18 Thread Sylvain Hellegouarch
Hi folks, Say I have the following class: class Test(dict): def __getitem__(self, key): print "__gelitem__ called" return dict.__getitem__(self, key.title()) def __setitem__(self, key, value): print "__selitem__ called" dict.__setitem__(self, key.title(),

Re: [IronPython] IronPython on Ubuntu

2007-01-18 Thread Sylvain Hellegouarch
Web Mayfield wrote: > Are there any instructions anywhere about how to get IronPython 1.0.1 running > with Mono 1.1.13.6? Is IP 1.0.1 even compatible with Mono 1.1.13.6 or am I > going to have to figure out how to upgrade Mono to a higher version? There > probably is and I was just didn't find

Re: [IronPython] os.popen() + Mono == segfault

2006-12-06 Thread Sylvain Hellegouarch
Just to confirm I get the same issue with IPCE-r3 and mono 1.2.1 - Sylvain Anthony Baxter wrote: > On both IronPython 1.0.1 and IPCE release 4, os.popen() segfaults > under Mono 1.17.1 (on Ubuntu edgy). > > To reproduce: > ipy.exe -c "import os; print os.popen('/bin/ls', 'r').read()" > > Stackt

Re: [IronPython] unicode object type

2006-12-02 Thread Sylvain Hellegouarch
Fredrik Lundh wrote: > Sylvain Hellegouarch wrote: > >> I can understand why IP or JYthon uses the same type but then the >> results don't seem to be consistent with CPython. I might misunderstand >> something here. Alternatively I assume using 'is' imp

Re: [IronPython] unicode object type

2006-12-02 Thread Sylvain Hellegouarch
Fredrik Lundh wrote: > Sylvain Hellegouarch wrote: > >> I can understand why IP or JYthon uses the same type but then the >> results don't seem to be consistent with CPython. I might misunderstand >> something here. Alternatively I assume using 'is' imp

Re: [IronPython] unicode object type

2006-12-02 Thread Sylvain Hellegouarch
Sylvain Hellegouarch wrote: > Fredrik Lundh wrote: >> Sylvain Hellegouarch wrote: >> >>> Is this the correct behavior? >> yes. a Python implementation is not required to have a distinct Unicode >> string type; see: >> >> http://jython.sour

Re: [IronPython] unicode object type

2006-12-01 Thread Sylvain Hellegouarch
Fredrik Lundh wrote: > Sylvain Hellegouarch wrote: > >> Is this the correct behavior? > > yes. a Python implementation is not required to have a distinct Unicode > string type; see: > > http://jython.sourceforge.net/docs/differences.html > > OK. Thanks

[IronPython] unicode object type

2006-12-01 Thread Sylvain Hellegouarch
CPython >>> str(None) 'None' >>> unicode(None) u'None' >>> type(unicode(None)) >>> type(unicode('ble')) IronPython >>> str(None) 'None' >>> unicode(None) 'None' >>> type(unicode(None)) >>> type(unicode('ble')) Is this the correct behavior? - Sylvain ___

Re: [IronPython] Is any one use IronPython in your project?

2006-11-23 Thread Sylvain Hellegouarch
> this is valuable information, particularly for someone like me who is > interested in FePy, but doesn't have time to explore it and discover > the practical considerations, myself. so ultimately i'm glad you > spoke up - but have the impression, from the discussion, that you > overstated your c

Re: [IronPython] Is any one use IronPython in your project?

2006-11-23 Thread Sylvain Hellegouarch
Luis, I think the topic has been somehow polluted by the little exchange this morning. I'd like to set things straight. I've never suggested the IP team had done a bad job. If I thought so I would not share my views today. No the problem I think comes from a somehow wrong feeling (as it appears

Re: [IronPython] Is any one use IronPython in your project?

2006-11-23 Thread Sylvain Hellegouarch
Fredrik Lundh wrote: >>> sounds like you're confusing "Python" with "the stuff I get when I download >>> the CPython 2.5 installer from python.org". don't do that; it only muddles >>> the >>> water for people who can distinguish between a language and a given im- >>> plementation of it, and scare

Re: [IronPython] Is any one use IronPython in your project?

2006-11-23 Thread Sylvain Hellegouarch
Fredrik Lundh wrote: > Sylvain Hellegouarch wrote: > >> From a Python user POV, IP is far from being good enough as it is >> now. > > so you're saying that I'm not a Python user? given how long I've worked full > time with Python, that's news t

Re: [IronPython] Is any one use IronPython in your project?

2006-11-22 Thread Sylvain Hellegouarch
Kevien Lee wrote: > Hi, > Now ,Ironpython had release some time,but i want to konw is any one use > IronPython in your project? > As a dynamic language ,what it will bring us some advantage for > project,which the advantage C#,VB.net couldn't have? >From a Python user POV, IP is far from being go

[IronPython] ANN: Amplee 0.3.2

2006-11-08 Thread Sylvain Hellegouarch
;s getting better :) Have fun, -- Sylvain Hellegouarch http://www.defuze.org ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

[IronPython] ANN: bridge 0.1.0 a general Python and IronPython XML library

2006-11-04 Thread Sylvain Hellegouarch
ridge/ * svn co https://svn.defuze.org/oss/bridge/ == Documentation == http://trac.defuze.org/wiki/bridge Hope this will help a few people in working with XML without worrying on which engine they choose to use. Have fun, -- Sylvain Hellegouarch http://www.defuz

Re: [IronPython] IronPython 1.0.1 Released!

2006-10-10 Thread Sylvain Hellegouarch
I could not agree more. If people are two write Python packages which could run in both environment they may need to differentiate both in some cases (like import statements of assemblies which would fail with CPython). This is quite an important piece of information and I was so surprised to see

Re: [IronPython] Standard Python Debugging not supported

2006-10-05 Thread Sylvain Hellegouarch
Jean-Yves MENGANT wrote: > Complementary : Looking at the 1042 , I saw another unclear topic around the > the sys_getframe entry which is marked as not supported already throwing a > ValueError exception + 'The sys._getframe() function is not supported by > IronPython' is also written in the 'diffe

Re: [IronPython] FePy SourceForge website updates

2006-09-30 Thread Sylvain Hellegouarch
Terry L. Triplett wrote: > Your comment seems to directly contradict what Larry Rosen said in the > article. Yes my mistake :) - Sylvain ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] FePy SourceForge website updates

2006-09-30 Thread Sylvain Hellegouarch
> I am not saying Seo's choice of license was a bad one, but I don't know > if it has a value by itself that's all. The question is not to please > people but to convey the correct rights as well as the responsability > you take as the provide for the piece of software. The MIT license is as > eas

Re: [IronPython] FePy SourceForge website updates

2006-09-29 Thread Sylvain Hellegouarch
Nathan R. Ernst wrote: > And here, a license I can finally understand, and nobody else likes it. > Also, I think even a lawyer could understand this one. Guess you can't > please everyone... I am not saying Seo's choice of license was a bad one, but I don't know if it has a value by itself that's

Re: [IronPython] FePy SourceForge website updates

2006-09-29 Thread Sylvain Hellegouarch
I faily agree and I'm not sure that license has any realy meaning in fact. If you want you can use a Public Domain license in that case. - Sylvain Terry L. Triplett wrote: > Thanks for all your efforts. > > Not to be picky or anything, but it might be prudent to tweak the name of > one of the li

Re: [IronPython] [ANN] IronPython Community Edition 1.0r2

2006-09-29 Thread Sylvain Hellegouarch
Brilliant Seo. Thanks a lot :) BTW, if it can be useful and you're happy with the code, don't hesitate to include my port of the Gzip module. Its a BSD license :) - Sylvain > This is the second release of IronPython Community Edition (IPCE), > 1.0 revision 2, based on IronPython 1.0. > > Get it

[IronPython] Gzip module

2006-09-23 Thread Sylvain Hellegouarch
Hi all, Just gave a stab to a gzip module yesterday evening and I thought it might be handy for others. http://www.defuze.org/oss/ipextra/gzip.txt Mind you I haven't tested thoroughly so wouldn't be surprised that it brings the World to an end. It uses the SharZipLib package for .NET. It is bu

Re: [IronPython] socket for IronPython update

2006-09-11 Thread Sylvain Hellegouarch
: Monday, September 11, 2006 3:17 AM > To: [EMAIL PROTECTED]; Discussion of IronPython > Subject: Re: [IronPython] socket for IronPython update > > 2006/9/11, Sylvain Hellegouarch <[EMAIL PROTECTED]>: >> Thanks a lot Seo. >> >> Any reason that I would have missed why

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()

Re: [IronPython] CherryPy 3 on top of IronPython 1.0... kind of working

2006-09-07 Thread Sylvain Hellegouarch
> 2006/9/6, Sylvain Hellegouarch <[EMAIL PROTECTED]>: >> a. First string.encode('hex') is not implemented so: >> LookupError: unknown encoding: hex > > This is CodePlex 1214. > http://www.codeplex.com/WorkItem/View.aspx?ProjectName=IronPython&WorkItemId

[IronPython] CherryPy 3 on top of IronPython 1.0... kind of working

2006-09-05 Thread Sylvain Hellegouarch
All, First congratulations for the fantastic work you have done with IronPython. Tested against: IP 1.0 (binaries) CP 3 (recent svn trunk) Python 2.4.3 .NET 2 on Windows XP (yeah my Linux system broke down...) Tonight I was trying to run CherryPy 3 [1](which will reach its first beta really soo

[IronPython] IRC channel

2006-06-21 Thread Sylvain Hellegouarch
Hi folks, I was wondering if you'd be interested in meeting in an IRC channel to know each other a bit more and well alternatively answer IP related questions :) Network: Freenode Server: irc.freenode.net Channel: #ironpython I have registered the channel and my nickname is Lawouach. Hope to

Re: [IronPython] more pythonic than python (end)

2006-06-21 Thread Sylvain Hellegouarch
> For sure, i don´t want nor like a messy language with thousands of > features that would satisfy any randomic newbie wish. I want a compact, > clean, robust, simple, coerent and friendly language: everything that > Python > promissed to be. Of course, such perfect language won´t 100% satisfy >

[IronPython] IronPython features matrix

2006-05-23 Thread Sylvain Hellegouarch
Hi folks, I've been trying to fiond a way to make way through IP for a while now (such as working on Seo's work of bringing CherryPy to IP) but I fail to find the right catch the train because it's hard for an occasional user as me to have a clear picture of what IP covers of the Python language a

Re: [IronPython] Question to IronPython team

2006-05-11 Thread Sylvain Hellegouarch
> Do you plan to include socket module in IronPython before releasing > IronPython 1.0? I cannot deny this would be a great decision to be made :D - Sylvain ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users

Re: [IronPython] socket for IronPython update

2006-05-02 Thread Sylvain Hellegouarch
Hi all, > > > I've copied Sylvain Hellegouarch, one of the CP project developers as > I know he has had this on his list of things to get working. Indeed. I've tried a few things already but I always ran into issues. > > There's a lot of folks, including m