Re: [IronPython] Announcing IronPython 2.0 Beta4

2008-08-05 Thread Kevin Chu
include sqlite3 Python Standard Library*,* but* *can't support sqlite3* * On Wed, Aug 6, 2008 at 7:55 AM, Srivatsn Narayanan <[EMAIL PROTECTED]>wrote: > Hello IronPython Community, > > > > I'm pleased to announce IronPython 2.0 *Beta4*. We have fixed around 50 > bugs(~45 of them reported on Codep

[IronPython] how to use IronPython 2.0 beta in IronPython Studio 1.0

2008-04-05 Thread Kevin Chu
I found IronPython Studio 1.0 use IronPython 1.1, and how to use IronPython 2.0 beta in IronPython Studio 1.0? -- Once in a Redmoon ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] how to use IronPython in Silverlight 2

2008-03-10 Thread Kevin Chu
ing I've just been building up the tree > > > programmatically from Python code even though that's uncool J. > > > > > > from System.Windows import Application > > > > > > from System.Windows.Markup import XamlReader > > > > > > A

Re: [IronPython] IronPython and Silverlight 2

2008-03-09 Thread Kevin Chu
Hi there is my blog about IronPython and Silverlight 2: http://www.cnblogs.com/redmoon/archive/2008/03/08/1096331.html I write it in Chinese, however you can translate it by Google Language Tool. And this blog contain some useful links. On Sun, Mar 9, 2008 at 7:42 PM, Michael Foord <[EMAIL PROTECT

[IronPython] how to use IronPython in Silverlight 2

2008-03-06 Thread Kevin Chu
Silverlight 2 beta1 tools for VS2008 only create C# code file, How to create a IronPython code file? -- Once in a Redmoon ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] Send data from PDA to PC

2007-10-01 Thread Kevin Chu
IronPython now can't run on .NET Compact Framework, So you can do it on PC. On 9/16/07, jane janet <[EMAIL PROTECTED]> wrote: > > > Hello all, > > I have no idea to send data from PDA to personal computer. > > My Application is about RFID technology. I use Intermec Hanheld Reader 700 > series(PDA)

Re: [IronPython] Eclipse-Like Framework for .NET

2007-09-12 Thread Kevin Chu
Visual Studio 2008 Shell On 9/12/07, Max Belugin <[EMAIL PROTECTED]> wrote: > > #develop? > > On 9/12/07, luis cota <[EMAIL PROTECTED]> wrote: > > Do any of you know of an eclipse-like framework for building > applications in > > .NET? I'm looking for a plug-in style architecture that provides a

Re: [IronPython] Asp.net + IronPython question

2007-06-02 Thread Kevin Chu
answer is yes. please brower this url: http://www.cnblogs.com/RChen/archive/2006/12/02/cs_ipy_aspnet.html this is my friend's blog , and writed by Chinese, you can translate it by Google Language Tool. this solution is base of IronPython for ASP.NET CTP 1. On 6/3/07, Gabriel <[EMAIL PROTECTED]> w

Re: [IronPython] How can I convince people to use IronPython?

2007-05-19 Thread Kevin Chu
you can check Microsoft ASP.NET Futures May 2007 . use *Dynamic Data Controls for ASP.NET and **Dynamic Languages Support in ASP.NET to show some sample.* On 5/19/07, Mohammad Tayseer <[EMAIL PROTECTED]> wrote: Hello I'm going to make

Re: [IronPython] property bug? or my mistake?

2007-05-06 Thread Kevin Chu
ing = "" def SetTestString(self, value): self.__testString = value.upper () def GetTestString(self): return self.__testString TestString = property(GetTestString, SetTestString) -- *From:* [EMAIL PROTECTED] [ [EMAIL PROTECTED] On Be

[IronPython] property bug? or my mistake?

2007-05-06 Thread Kevin Chu
I do this walkthought: http://quickstarts.asp.net/Futures/dlr/doc/dlsharedcode.aspx but when I change some code ,want to get Upper string, but my code is not working my code is: class SampleClass: "Sample class with one property" def __init__(self): self.__testString = "" def SetT

[IronPython] bug in IronPython 2.0 with SilverLight in Firefox

2007-05-01 Thread Kevin Chu
I run Dynamic SilverLight sample "wordfind" in Firefox ,I get a error: == *Object reference not set to an instance of an object.* *Source File: * wordfind.py *Exception Details: *System.NullReferenceException: Object reference not set to an instance of an object.. *Stack Trace:*

Re: [IronPython] IronPython 2.0 Alpha 1 Released

2007-04-30 Thread Kevin Chu
I want to know IronPython for ASP.NET have any changes? On 5/1/07, Sanghyeon Seo <[EMAIL PROTECTED]> wrote: 2007/5/1, Guy Robinson <[EMAIL PROTECTED]>: > How does the DLR affect IP2.0 on mono platforms? Will IP2.0 only run on > Windows? I can't compile IP 2.0a1 with Mono 1.2.3.1 at the moment,

Re: [IronPython] About IronPython and LINQ again

2007-04-26 Thread Kevin Chu
. Until then you can clr.AddReference to the LINQ libraries and call the static extension methods directly but it'll be ugly. Other than that we still haven't gotten to figuring out how to support LINQ in a more direct form. From: [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] On Beh

[IronPython] About IronPython and LINQ again

2007-04-26 Thread Kevin Chu
Hi, IronPythoners In May 10, 2006 ,I post a discussion about IronPython and LINQ, complete discussion url is : http://lists.ironpython.com/pipermail/users-ironpython.com/2006-May/002300.html And now Orcas Beta 1 is released, I again inquire about can I use LINQ in IronPython. Because ,IronPython

Re: [IronPython] windows mobile 5

2007-03-07 Thread Kevin Chu
Can we use Mono Cecil to help IronPython generate code? On 3/7/07, Dino Viehland <[EMAIL PROTECTED]> wrote: Unfortunately the answer is no. We don't work w/ the Compact Framework which is what I believe ships w/ all versions of Windows Mobile. The problem here is that the Compact Framework is

[IronPython] IPCE be included into Mono 1.2.3

2007-02-07 Thread Kevin Chu
In this release, we are now shipping the IronPython Community Edition (IPCE) from Seo Sanghyeon. IPCE includes a number of preconfigured libraries with IronPython to improve your IronPython developing experience. source:http://www.go-mono.com/archive/1.2.3/ -- Once in a Redmoon _

Re: [IronPython] IronPython book in Japan?

2007-02-06 Thread Kevin Chu
It is not monograph for IronPython, I think. However my friends and I are writing a book for IronPython in China. I am be assigned to introduce IPCE, hope you can give me a hand when I have any problems. On 2/7/07, Sanghyeon Seo <[EMAIL PROTECTED]> wrote: > 2007/2/7, Sanghyeon Seo <[EMAIL PROTECTE

Re: [IronPython] IronPython and WPF/E

2006-12-06 Thread Kevin Chu
de integration' mean? Could you tell me about it? > Thanks, > > Neil > > 2006/12/6, Kevin Chu <[EMAIL PROTECTED]>: > > hi,everybody > > WPF/E CTP(Dec 2006) released in 12.4. > > Now WPF/E only interact with AJAX, then next year provide managed code >

[IronPython] IronPython and WPF/E

2006-12-05 Thread Kevin Chu
hi,everybody WPF/E CTP(Dec 2006) released in 12.4. Now WPF/E only interact with AJAX, then next year provide managed code integration. So I think IronPython should became first better choice for WPF/E's managed language. Do you think about it ? Kevin Chu -- Once in a Re

Re: [IronPython] IronPython for ASP.net CTP is now [EMAIL PROTECTED]/ironpython

2006-11-02 Thread Kevin Chu
I found that IronPython for ASP.NET CTP use IronPython.dll is 1.0.60816.1877 but IronPython 1.0's IronPython.dll is 1.0.61005.1977. why IronPython for ASP.NET CTP not use lastest build On 11/3/06, Keith J. Farmer <[EMAIL PROTECTED]> wrote: > So how long until they port Zope to ASP.NET? ;) > >

Re: [IronPython] A SourceForge project?

2006-09-14 Thread Kevin Chu
TED]> wrote: > veto > > At 10:05 PM 9/14/2006, Kevin Chu wrote > >workspaces at GotDotNet maybe is ok. > > > J. Merrill / Analytical Software Corp > > > ___ > users mailing list > users@lists.ironpython.com >

Re: [IronPython] A SourceForge project?

2006-09-14 Thread Kevin Chu
workspaces at GotDotNet maybe is ok. On 9/15/06, Sanghyeon Seo <[EMAIL PROTECTED]> wrote: > I am thinking about creating a SourceForge project, to host files > under http://sparcs.kaist.ac.kr/~tinuviel/fepy/ directory. > > So that you can keep up-to-date just by doing "svn update". So that I > can

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

[IronPython] run edna-0.6 , thread exception

2006-07-27 Thread Kevin Chu
after I implement md5 module by myself,I can successful run edna-0.6 . but when browse edna site,it throws exception D:\TECH\edna-0.6>D:\TECH\IronPython\ipy.exe D:\TECH\edna-0.6\edna.py edna: Ogg Vorbis support disabled, to enable it you will need to install the "py og

[IronPython] md5 builtins module

2006-07-27 Thread Kevin Chu
yesterday,we talked about missing md5 module. first,I found RC1 without md5 module, second,I found md5.py that be provide by Seo(http://sparcs.kaist.ac.kr/~tinuviel/fepy/lib/) is not working . so,I write a builtin module ,put it into source,and compile it. md5 module can work ! below is md5 module

Re: [IronPython] IronPython 1.0 RC1 is Released

2006-07-26 Thread Kevin Chu
Create could match () Create() Create() 2006/7/26, Mark Rees <[EMAIL PROTECTED]>: > As an interim solution our friend Seo has an implementation of md5 for > IronPython. > > http://sparcs.kaist.ac.kr/~tinuviel/fepy/lib/ > > On 7/26/06, Kevin Chu <[EMAIL PROTECTED]>

Re: [IronPython] IronPython 1.0 RC1 is Released

2006-07-26 Thread Kevin Chu
I am glade to hear about this greate news! Especially, it implemented a large number of the standard CPython built-in modules. But I found md5 module is not implemented yet! 2006/7/26, Dino Viehland <[EMAIL PROTECTED]>: > Hello IronPython Community, > > We have just released IronPython 1.0 RC1. W

Re: [IronPython] IronPython and LINQ

2006-05-11 Thread Kevin Chu
7;t seen it yet - http://msdn.microsoft.com/data/ref/linq/. Thanks Shri Do you want to help develop Dynamic languages on CLR? (http://members.microsoft.com/careers/search/details.aspx?JobID=6D4754DE-11F0-45DF-8B78-DC1B43134038) -----Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTEC

[IronPython] IronPython and LINQ

2006-05-10 Thread Kevin Chu
LINQ preview may 2006 released! Can IP use LINQ? -- Once in a Redmoon ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

[IronPython] IronPython and LINQ

2006-05-10 Thread Kevin Chu
LINQ Preview May 2006 released! Can IronPython use LINQ? -- Once in a Redmoon ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com