Python论坛  - 讨论区

标题:[python-chinese] 如何实现客户端生成实例?类似于java的applet

2006年05月23日 星期二 17:11

Gerald Lee leejd80 at gmail.com
Tue May 23 17:11:52 HKT 2006

脚本放在服务器端。
目前的话是只能客户端调用服务器端的脚本生成实例,返回计算结果
而我想做的就是,脚本放在服务器端,实例在客户端生成,计算,这样服务器就可以节省很多计算的资源,不知道这个技术是否有现成的?如果有,叫什么?

-- 
My Blog >> http://leejd.cndev.org
My QQ >> 9847243
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060523/23f93183/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月23日 星期二 17:46

swordsp sparas2006 at gmail.com
Tue May 23 17:46:41 HKT 2006

这个客户端的环境,是指浏览器吗?
浏览器支持的rich client大概无非以下几种方法:
1. Javascript,已经成为web标准,兼容性最好,现在流行的AJAX就是这个思路。其它的都需要类似浏览器插件的机制支持
2. java applet,这个用的很少了,除了少数企业级应用。
3. IE的ActiveX、Firefox的extension。
4. flash(这个兼容性很好,但我个人觉得flash本身不是很好的开发平台)
如果你说的脚本是python脚本,也许只有ActiveX插件的方法可以了,但是这样和独立的客户端程序其实没什么区别了。

另外,你的具体应用到底是哪方面的?我觉得你有必要考虑一下是不是真的有这个需求。
一般rich client都是为了客户端更好的交互性,很少是为了节省服务器的计算资源什么的,毕竟web程序瓶颈大都是I/O而不是cpu吧。
而且,大计算量(少量的话也就没必要节省了)常常伴随着大量数据,这些数据一口气传输到客户端的话是很慢的。如果是客户端和服务器端协同计算,程序的复杂性也会大大增加。

On 5/23/06, Gerald Lee <leejd80 at gmail.com> wrote:
>
> 脚本放在服务器端。
> 目前的话是只能客户端调用服务器端的脚本生成实例,返回计算结果
> 而我想做的就是,脚本放在服务器端,实例在客户端生成,计算,这样服务器就可以节省很多计算的资源,不知道这个技术是否有现成的?如果有,叫什么?
>
> --
> My Blog >> http://leejd.cndev.org
> My QQ >> 9847243
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060523/cb668725/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月23日 星期二 19:19

笨笨狗 chen.ruijie at gmail.com
Tue May 23 19:19:27 HKT 2006

在 06-5-23,swordsp<sparas2006 at gmail.com> 写道:
> Javascript,已经成为web标准,兼容性最好,现在流行的AJAX就是这个思路。其它的都需要类似浏览器插件的机制支持


一直在想,要是浏览器能像支持javascript那样支持python就好了,做梦呐……唉

-- 
云电清华同方小民工

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月23日 星期二 20:19

yi huang yi.codeplayer at gmail.com
Tue May 23 20:19:13 HKT 2006

pypy 目前貌似已经可以把 python 代码转换成 javascript、c等代码了。

On 5/23/06, 笨笨狗 <chen.ruijie at gmail.com> wrote:
>
> 在 06-5-23,swordsp<sparas2006 at gmail.com> 写道:
> > Javascript,已经成为web标准,兼容性最好,现在流行的AJAX就是这个思路。其它的都需要类似浏览器插件的机制支持
>
>
> 一直在想,要是浏览器能像支持javascript那样支持python就好了,做梦呐……唉
>
> --
> 云电清华同方小民工
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>


-- 
http://codeplayer.blogbus.com/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060523/cb914b59/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月23日 星期二 20:30

笨笨狗 chen.ruijie at gmail.com
Tue May 23 20:30:31 HKT 2006

2006/5/23, yi huang <yi.codeplayer at gmail.com>:
> pypy 目前貌似已经可以把 python 代码转换成 javascript、c等代码了。
>

啊,pypy?能详细介绍下么?先去google看看……

-- 
云电清华同方小民工

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月23日 星期二 20:52

yi huang yi.codeplayer at gmail.com
Tue May 23 20:52:18 HKT 2006

pypy貌似是个有点意思的项目,不过说实话,我其实都还不特别清楚他们究竟要干个啥 :(
目前主要是分两部分:
  1是The Standard
Interpreter,一个用python实现的python解释器,也就是说这个解释器把python程序解释成python程序 ..........
@#$%^&*
  2就是The Translation Process,就是致力于将 python 程序翻译成其他语言,目前已经有C,
LLVM<http://llvm.org/>,
Javascript(实验性的)。

感觉是某种和形式语义有关的东西,不是特别清楚。



On 5/23/06, 笨笨狗 <chen.ruijie at gmail.com> wrote:
>
> 2006/5/23, yi huang <yi.codeplayer at gmail.com>:
> > pypy 目前貌似已经可以把 python 代码转换成 javascript、c等代码了。
> >
>
> 啊,pypy?能详细介绍下么?先去google看看……
>
> --
> 云电清华同方小民工
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>


-- 
http://codeplayer.blogbus.com/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060523/04626615/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月23日 星期二 21:04

笨笨狗 chen.ruijie at gmail.com
Tue May 23 21:04:39 HKT 2006

2006/5/23, yi huang <yi.codeplayer at gmail.com>:
>   1是The Standard
> Interpreter,一个用python实现的python解释器,也就是说这个解释器把python程序解释成python程序
> .......... @#$%^&*

这个~~有什么意义吗,晕~_~!

>   2就是The Translation Process,就是致力于将 python 程序翻译成其他语言,目前已经有C, LLVM,
> Javascript(实验性的)。
>

比较关心这个,准备好好研究下,谢谢提供信息


-- 
云电清华同方小民工

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月24日 星期三 09:43

大熊 bearsprite at gmail.com
Wed May 24 09:43:08 HKT 2006

mozilla在gecko1.9中准备实现Python for
XUL<http://www.mozilla.org/roadmap/gecko-1.9-roadmap.html>
(现在的firefox中是gecko1.8),那时就可以在客户端使用python来进行页面控制了,ajax→apax。
不过好像要gecko1.9在firefox3.0才采用,waiting........

"So in addition to JavaScript, which is the default web and XUL scripting
language, we plan to extend the reach of Gecko and XUL to the Python world."

-- 
茫茫人海,你是我的最爱
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060524/9abfe071/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月24日 星期三 10:04

Gerald Lee leejd80 at gmail.com
Wed May 24 10:04:38 HKT 2006

客户端是我们自己实现的,因为涉及到的大部分是CAD方面的操作。目前已经嵌入了Python的应用了。我们的应用计算量很大(有些优化是迭代的,客户端的话可以让用户终止在某个结果上),但是数据量并不大的,因为是一些数学上的优化算法,目前一个算法最多也就是几秒钟而已(应该还有优化的空间)。但是每个用户的软件版本差别很大,差别部分(业务逻辑)我们是使用Python来定制的。
我当初考虑的就是有没有方法可以将生成的实例进行"乾坤大挪移",现在感觉好像不行,所以初步还是准备使用下载脚本在客户端内存执行的方式(某些脚本不能给客户看到的)。


在06-5-23,swordsp <sparas2006 at gmail.com> 写道:
>
> 这个客户端的环境,是指浏览器吗?
> 浏览器支持的rich client大概无非以下几种方法:
> 1. Javascript,已经成为web标准,兼容性最好,现在流行的AJAX就是这个思路。其它的都需要类似浏览器插件的机制支持
> 2. java applet,这个用的很少了,除了少数企业级应用。
> 3. IE的ActiveX、Firefox的extension。
> 4. flash(这个兼容性很好,但我个人觉得flash本身不是很好的开发平台)
> 如果你说的脚本是python脚本,也许只有ActiveX插件的方法可以了,但是这样和独立的客户端程序其实没什么区别了。
>
> 另外,你的具体应用到底是哪方面的?我觉得你有必要考虑一下是不是真的有这个需求。
> 一般rich client都是为了客户端更好的交互性,很少是为了节省服务器的计算资源什么的,毕竟web程序瓶颈大都是I/O而不是cpu吧。
> 而且,大计算量(少量的话也就没必要节省了)常常伴随着大量数据,这些数据一口气传输到客户端的话是很慢的。如果是客户端和服务器端协同计算,程序的复杂性也会大大增加。
>
>
> On 5/23/06, Gerald Lee <leejd80 at gmail.com> wrote:
>
> > 脚本放在服务器端。
> 目前的话是只能客户端调用服务器端的脚本生成实例,返回计算结果
> 而我想做的就是,脚本放在服务器端,实例在客户端生成,计算,这样服务器就可以节省很多计算的资源,不知道这个技术是否有现成的?如果有,叫什么?
>
> --
> My Blog >> http://leejd.cndev.org
> My QQ >> 9847243
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to   python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>


-- 
My Blog >> http://leejd.cndev.org
My QQ >> 9847243
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060524/8428e822/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月24日 星期三 12:12

swordsp sparas2006 at gmail.com
Wed May 24 12:12:28 HKT 2006

不是很清楚pypy里面是怎么做的,不过rjs、google web toolkit这样的整合到一个大的web框架里的方向我觉得不错。

On 5/23/06, yi huang <yi.codeplayer at gmail.com> wrote:
>
> pypy 目前貌似已经可以把 python 代码转换成 javascript、c等代码了。
>
> On 5/23/06, 笨笨狗 <chen.ruijie at gmail.com> wrote:
>
> > 在 06-5-23,swordsp<sparas2006 at gmail.com> 写道:
> > Javascript,已经成为web标准,兼容性最好,现在流行的AJAX就是这个思路。其它的都需要类似浏览器插件的机制支持
>
>
> 一直在想,要是浏览器能像支持javascript那样支持python就好了,做梦呐……唉
>
> --
> 云电清华同方小民工
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
>
>
> --
> http://codeplayer.blogbus.com/
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060524/1dd68166/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月24日 星期三 19:08

于业平 yyp226 at gmail.com
Wed May 24 19:08:37 HKT 2006

如果的确想这样做可以使用 jython啊,
其实也就是运行的applet
不需要担心速度 , 使用jython做的applet速度还是可以的
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060524/b606a7be/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月24日 星期三 20:09

swordsp sparas2006 at gmail.com
Wed May 24 20:09:12 HKT 2006

那就是普通的网络编程了。
用xmlrpc交换数据比较简单,而且接口通用,正好适合客户端的脚本调用服务器端的核心算法。标准库里面就有xmlrpclib。
不过如果安全性很重要或者数据量大的话可能需要自己设计协议,可以看看twisted。

On 5/24/06, Gerald Lee <leejd80 at gmail.com> wrote:
>
>
> 客户端是我们自己实现的,因为涉及到的大部分是CAD方面的操作。目前已经嵌入了Python的应用了。我们的应用计算量很大(有些优化是迭代的,客户端的话可以让用户终止在某个结果上),但是数据量并不大的,因为是一些数学上的优化算法,目前一个算法最多也就是几秒钟而已(应该还有优化的空间)。但是每个用户的软件版本差别很大,差别部分(业务逻辑)我们是使用Python来定制的。
> 我当初考虑的就是有没有方法可以将生成的实例进行"乾坤大挪移",现在感觉好像不行,所以初步还是准备使用下载脚本在客户端内存执行的方式(某些脚本不能给客户看到的)。
>
>
>
> 在06-5-23,swordsp <sparas2006 at gmail.com> 写道:
>
> > 这个客户端的环境,是指浏览器吗?
> > 浏览器支持的rich client大概无非以下几种方法:
> > 1. Javascript,已经成为web标准,兼容性最好,现在流行的AJAX就是这个思路。其它的都需要类似浏览器插件的机制支持
> > 2. java applet,这个用的很少了,除了少数企业级应用。
> > 3. IE的ActiveX、Firefox的extension。
> > 4. flash(这个兼容性很好,但我个人觉得flash本身不是很好的开发平台)
> > 如果你说的脚本是python脚本,也许只有ActiveX插件的方法可以了,但是这样和独立的客户端程序其实没什么区别了。
> >
> > 另外,你的具体应用到底是哪方面的?我觉得你有必要考虑一下是不是真的有这个需求。
> > 一般rich client都是为了客户端更好的交互性,很少是为了节省服务器的计算资源什么的,毕竟web程序瓶颈大都是I/O而不是cpu吧。
> > 而且,大计算量(少量的话也就没必要节省了)常常伴随着大量数据,这些数据一口气传输到客户端的话是很慢的。如果是客户端和服务器端协同计算,程序的复杂性也会大大增加。
> >
> >
> > On 5/23/06, Gerald Lee < leejd80 at gmail.com> wrote:
> >
> > > 脚本放在服务器端。
> > 目前的话是只能客户端调用服务器端的脚本生成实例,返回计算结果
> > 而我想做的就是,脚本放在服务器端,实例在客户端生成,计算,这样服务器就可以节省很多计算的资源,不知道这个技术是否有现成的?如果有,叫什么?
> >
> > --
> > My Blog >> http://leejd.cndev.org
> > My QQ >> 9847243
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request at lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
> >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request at lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
> >
>
>
> --
> My Blog >> http://leejd.cndev.org
> My QQ >> 9847243
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060524/a6b7c49a/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月25日 星期四 10:42

Gerald Lee leejd80 at gmail.com
Thu May 25 10:42:25 HKT 2006

因为算法的计算量比较大,所以我不想放在服务器端,在客户端运行算法。目前的做法就是通过xmlrpc进行服务器端运算的

在06-5-24,swordsp <sparas2006 at gmail.com> 写道:
>
> 那就是普通的网络编程了。
> 用xmlrpc交换数据比较简单,而且接口通用,正好适合客户端的脚本调用服务器端的核心算法。标准库里面就有xmlrpclib。
> 不过如果安全性很重要或者数据量大的话可能需要自己设计协议,可以看看twisted。
>
>
> On 5/24/06, Gerald Lee < leejd80 at gmail.com> wrote:
> >
> > 客户端是我们自己实现的,因为涉及到的大部分是CAD方面的操作。目前已经嵌入了Python的应用了。我们的应用计算量很大(有些优化是迭代的,客户端的话可以让用户终止在某个结果上),但是数据量并不大的,因为是一些数学上的优化算法,目前一个算法最多也就是几秒钟而已(应该还有优化的空间)。但是每个用户的软件版本差别很大,差别部分(业务逻辑)我们是使用Python来定制的。
> >
> > 我当初考虑的就是有没有方法可以将生成的实例进行"乾坤大挪移",现在感觉好像不行,所以初步还是准备使用下载脚本在客户端内存执行的方式(某些脚本不能给客户看到的)。
> >
> >
> >
> > 在06-5-23,swordsp <sparas2006 at gmail.com > 写道:
> >
> > > 这个客户端的环境,是指浏览器吗?
> > > 浏览器支持的rich client大概无非以下几种方法:
> > > 1. Javascript,已经成为web标准,兼容性最好,现在流行的AJAX就是这个思路。其它的都需要类似浏览器插件的机制支持
> > > 2. java applet,这个用的很少了,除了少数企业级应用。
> > > 3. IE的ActiveX、Firefox的extension。
> > > 4. flash(这个兼容性很好,但我个人觉得flash本身不是很好的开发平台)
> > > 如果你说的脚本是python脚本,也许只有ActiveX插件的方法可以了,但是这样和独立的客户端程序其实没什么区别了。
> > >
> > > 另外,你的具体应用到底是哪方面的?我觉得你有必要考虑一下是不是真的有这个需求。
> > > 一般rich client都是为了客户端更好的交互性,很少是为了节省服务器的计算资源什么的,毕竟web程序瓶颈大都是I/O而不是cpu吧。
> > > 而且,大计算量(少量的话也就没必要节省了)常常伴随着大量数据,这些数据一口气传输到客户端的话是很慢的。如果是客户端和服务器端协同计算,程序的复杂性也会大大增加。
> > >
> > >
> > > On 5/23/06, Gerald Lee < leejd80 at gmail.com> wrote:
> > >
> > > > 脚本放在服务器端。
> > > 目前的话是只能客户端调用服务器端的脚本生成实例,返回计算结果
> > > 而我想做的就是,脚本放在服务器端,实例在客户端生成,计算,这样服务器就可以节省很多计算的资源,不知道这个技术是否有现成的?如果有,叫什么?
> > >
> > > --
> > > My Blog >> http://leejd.cndev.org
> > > My QQ >> 9847243
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese at lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > > Unsubscribe: send unsubscribe to
> > > python-chinese-request at lists.python.cn
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> > >
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese at lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > > Unsubscribe: send unsubscribe to
> > > python-chinese-request at lists.python.cn
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> > >
> >
> >
> > --
> > My Blog >> http://leejd.cndev.org
> > My QQ >> 9847243
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request at lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
> >
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>


-- 
My Blog >> http://leejd.cndev.org
My QQ >> 9847243
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060525/514a4cf3/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月25日 星期四 10:44

Gerald Lee leejd80 at gmail.com
Thu May 25 10:44:31 HKT 2006

暂时不想考虑applet,我们对java连语法都没有掌握。


在06-5-24,于业平 <yyp226 at gmail.com> 写道:
>
> 如果的确想这样做可以使用 jython啊,
> 其实也就是运行的applet
> 不需要担心速度 , 使用jython做的applet速度还是可以的
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>


-- 
My Blog >> http://leejd.cndev.org
My QQ >> 9847243
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060525/76e779ac/attachment-0001.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月25日 星期四 12:54

xxmplus xxmplus at gmail.com
Thu May 25 12:54:50 HKT 2006

商业逻辑需要保密的话,用b/s比较好,c/s要考虑安全性,防止数据在客户端被人为修改。

另外,java语法很简单,applet也不难,看一下就可以上手了,只是一个框架而已,反正你逻辑都是现成的,往里面填就是了。

在 06-5-25,Gerald Lee<leejd80 at gmail.com> 写道:
> 暂时不想考虑applet,我们对java连语法都没有掌握。
>
>
> 在06-5-24,于业平 <yyp226 at gmail.com> 写道:
> >
>
> 如果的确想这样做可以使用 jython啊,
> 其实也就是运行的applet
> 不需要担心速度 , 使用jython做的applet速度还是可以的
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to
> python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to
> python-chinese-request at lists.python.cn
> Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
>
>
>
>
>
> --
> My Blog >> http://leejd.cndev.org
> My QQ >> 9847243
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to
> python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to
> python-chinese-request at lists.python.cn
> Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
>
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月28日 星期日 14:12

Cyril_Gmail terry6394 at gmail.com
Sun May 28 14:12:23 HKT 2006

不知道你说的是不是AJAX呢?!最经Google出了GWT可惜也是JAVA的。
不过你可以去看看其他的一些Ajax框架。
好像rialto是支持Pyton的。

On 5/25/06, xxmplus <xxmplus at gmail.com> wrote:
>
> 商业逻辑需要保密的话,用b/s比较好,c/s要考虑安全性,防止数据在客户端被人为修改。
>
> 另外,java语法很简单,applet也不难,看一下就可以上手了,只是一个框架而已,反正你逻辑都是现成的,往里面填就是了。
>
> 在 06-5-25,Gerald Lee<leejd80 at gmail.com> 写道:
> > 暂时不想考虑applet,我们对java连语法都没有掌握。
> >
> >
> > 在06-5-24,于业平 <yyp226 at gmail.com> 写道:
> > >
> >
> > 如果的确想这样做可以使用 jython啊,
> > 其实也就是运行的applet
> > 不需要担心速度 , 使用jython做的applet速度还是可以的
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to
> > python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request at lists.python.cn
> > Detail Info:
> > http://python.cn/mailman/listinfo/python-chinese
> >
> >
> >
> >
> >
> > --
> > My Blog >> http://leejd.cndev.org
> > My QQ >> 9847243
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to
> > python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request at lists.python.cn
> > Detail Info:
> > http://python.cn/mailman/listinfo/python-chinese
> >
> >
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060528/652db892/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月28日 星期日 18:51

limodou limodou at gmail.com
Sun May 28 18:51:06 HKT 2006

On 5/28/06, Cyril_Gmail <terry6394 at gmail.com> wrote:
> 不知道你说的是不是AJAX呢?!最经Google出了GWT可惜也是JAVA的。
> 不过你可以去看看其他的一些Ajax框架。
> 好像rialto是支持Pyton的。
>

有人按GWT做出了python的GWT版本。不过还没看到代码在哪里下载。

-- 
I like python!
My Blog: http://www.donews.net/limodou
My Django Site: http://www.djangocn.org
NewEdit Maillist: http://groups.google.com/group/NewEdit

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月28日 星期日 22:10

prolibertine prolibertine at gmail.com
Sun May 28 22:10:50 HKT 2006

在 06-5-28,limodou<limodou at gmail.com> 写道:
>
> 有人按GWT做出了python的GWT版本。不过还没看到代码在哪里下载。
>

我比较关注这个,GWT的python版本应该很爽吧
看了看GWT的java版本就很不错了
写起来比直接用js写方便多了

-- 
/**********************************************************
* Love in DotNet  J2ME and Python
* Look at my website and my blog
* http://www.pinzui.cn
* 希望宝宝可以永远快乐,你是最棒的。
**********************************************************/

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月29日 星期一 08:26

大熊 bearsprite at gmail.com
Mon May 29 08:26:16 HKT 2006

python版的GWT

http://pyjamas.pyworks.org/

作者是James Tauber


在06-5-28,prolibertine <prolibertine at gmail.com> 写道:
>
> 在 06-5-28,limodou<limodou at gmail.com> 写道:
> >
> > 有人按GWT做出了python的GWT版本。不过还没看到代码在哪里下载。
> >
>
> 我比较关注这个,GWT的python版本应该很爽吧
> 看了看GWT的java版本就很不错了
> 写起来比直接用js写方便多了
>
> --
> /**********************************************************
> * Love in DotNet  J2ME and Python
> * Look at my website and my blog
> * http://www.pinzui.cn
> * 希望宝宝可以永远快乐,你是最棒的。
> **********************************************************/
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>


-- 
茫茫人海,你是我的最爱
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060529/d8798aa9/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月29日 星期一 16:53

Cyril_Gmail terry6394 at gmail.com
Mon May 29 16:53:09 HKT 2006

开源的力量真是强大!!



On 5/29/06, 大熊 <bearsprite at gmail.com> wrote:
>
> python版的GWT
>
> http://pyjamas.pyworks.org/
>
> 作者是James Tauber
>
>
> 在06-5-28,prolibertine < prolibertine at gmail.com> 写道:
> >
> > 在 06-5-28,limodou< limodou at gmail.com> 写道:
> >
> > 有人按GWT做出了python的GWT版本。不过还没看到代码在哪里下载。
> >
>
> 我比较关注这个,GWT的python版本应该很爽吧
> 看了看GWT的java版本就很不错了
> 写起来比直接用js写方便多了
>
> --
> /**********************************************************
> * Love in DotNet  J2ME and Python
> * Look at my website and my blog
> * http://www.pinzui.cn
> * 希望宝宝可以永远快乐,你是最棒的。
> **********************************************************/
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
>
>
> --
> 茫茫人海,你是我的最爱
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060529/7839d6c0/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月29日 星期一 16:57

Cyril_Gmail terry6394 at gmail.com
Mon May 29 16:57:26 HKT 2006

Rialto <http://www.open-open.com/open144967.htm> 也支持PYTHON啊。看上去还挺漂亮。
不过感觉好象有点慢


On 5/29/06, Cyril_Gmail <terry6394 at gmail.com> wrote:
>
>  开源的力量真是强大!!
>
>
>
> On 5/29/06, 大熊 <bearsprite at gmail.com> wrote:
> >
> > python版的GWT
> >
> > http://pyjamas.pyworks.org/
> >
> > 作者是James Tauber
> >
> >
> > 在06-5-28,prolibertine < prolibertine at gmail.com > 写道:
> > >
> > > 在 06-5-28,limodou< limodou at gmail.com> 写道:
> > >
> > > 有人按GWT做出了python的GWT版本。不过还没看到代码在哪里下载。
> > >
> >
> > 我比较关注这个,GWT的python版本应该很爽吧
> > 看了看GWT的java版本就很不错了
> > 写起来比直接用js写方便多了
> >
> > --
> > /**********************************************************
> > * Love in DotNet  J2ME and Python
> > * Look at my website and my blog
> > * http://www.pinzui.cn
> > * 希望宝宝可以永远快乐,你是最棒的。
> > **********************************************************/
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
> >
> >
> >
> > --
> > 茫茫人海,你是我的最爱
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
> >
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060529/1657a1b0/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号