Python论坛  - 讨论区

标题:Re: [python-chinese] 快被web framework挑花眼了。。

2005年06月08日 星期三 14:44

Bo Yang boyang at mac.com
Wed Jun 8 14:44:19 HKT 2005

这个是web服务器设置的事情,你可以让apache把.html结尾的访问直接传给静态页面。

你也可以把整个页面放在quixote的ptl里,呵呵:

def _q_index [html] (request):
     """
     
     哇拉拉
     ...
      (your whole page here....)
     ...
     ...
     
     """

然后你就可以很容易地动态化了:

from my_module import get_title
def _q_index [html] (request):
     """
     
     %s
     ...
      (your whole page here....)
     ...
     ...
     
     """ % get_title()

还有,“简单”和“复杂”如果说的是动态内容而不是页面美工的话,我倒是觉得复杂的应该用Quixote。因为Quixote是围绕python,  
围绕程序设计的,不是围绕网页,围绕内容。

还有效率的问题。现在豆瓣每天有几万次访问, cpu 占用和load average一直徘徊在0.00和0.01之间。不敢想像用Zope会怎么样。

- 阿北
( http://blog.douban.com)

On Jun 8, 2005, at 1:26 PM, 清风 wrote:

> quixote无法直接处理静态页面是吗,比如我输入http://localhost:8080/index.htm不可以?,必须要将html放 
> 到py程序中?
>
> 2005/6/8, alang yin <alang.yl at gmail.com>:
>> 我是这么想的,简单的个人站点,小的应用就用quixote,复杂的应用,就用Zope2/3.
>>
>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: text/enriched
Size: 1549 bytes
Desc: not available
Url : http://lists.exoweb.net/pipermail/python-chinese/attachments/20050608/6c6753b9/attachment.bin

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

2005年06月08日 星期三 15:08

清风 paradise.qingfeng at gmail.com
Wed Jun 8 15:08:49 HKT 2005

非常感谢,感觉quixote更面向网站的开发,而zope更面向企业应用。不知理解是否正确。

2005/6/8, Bo Yang <boyang at mac.com>:
> 这个是web服务器设置的事情,你可以让apache把.html结尾的访问直接传给静态页面。
> 
> 你也可以把整个页面放在quixote的ptl里,呵呵:
> 
> def _q_index [html] (request):
>      """
>      
>      哇拉拉
>      ...
>       (your whole page here....)
>      ...
>      ...
>      
>      """
> 
> 然后你就可以很容易地动态化了:
> 
> from my_module import get_title
> def _q_index [html] (request):
>      """
>      
>      %s
>      ...
>       (your whole page here....)
>      ...
>      ...
>      
>      """ % get_title()
> 
> 还有,"简单"和"复杂"如果说的是动态内容而不是页面美工的话,我倒是觉得复杂的应该用Quixote。因为Quixote是围绕python,
> 围绕程序设计的,不是围绕网页,围绕内容。
> 
> 还有效率的问题。现在豆瓣每天有几万次访问, cpu 占用和load average一直徘徊在0.00和0.01之间。不敢想像用Zope会怎么样。
> 
> - 阿北
> ( http://blog.douban.com)
> 
> On Jun 8, 2005, at 1:26 PM, 清风 wrote:
> 
> > quixote无法直接处理静态页面是吗,比如我输入http://localhost:8080/index.htm不可以?,必须要将html放
> > 到py程序中?
> >
> > 2005/6/8, alang yin <alang.yl at gmail.com>:
> >> 我是这么想的,简单的个人站点,小的应用就用quixote,复杂的应用,就用Zope2/3.
> >>
> >
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
Blog:http://www.donews.net/changzheng

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

2005年06月08日 星期三 16:43

Bo Yang boyang at mac.com
Wed Jun 8 16:43:52 HKT 2005

不客气。

Zope我不熟悉。感觉上适合用在(比较静态的)内容的发布和管理上,比如新浪这种有很多网络编辑的内容网站。当然,zope的性能绝对不适合新浪,更 
适合中小流量的网站。

quixote适合界面不复杂,但是内容非常动态的网站, 比如豆瓣这样的。

- 阿北
(http://blog.douban.com)

On Jun 8, 2005, at 3:08 PM, 清风 wrote:

> 非常感谢,感觉quixote更面向网站的开发,而zope更面向企业应用。不知理解是否正确。
>
> 2005/6/8, Bo Yang <boyang at mac.com>:
>> 这个是web服务器设置的事情,你可以让apache把.html结尾的访问直接传给静态页面。
>>
>> 你也可以把整个页面放在quixote的ptl里,呵呵:
>>
>> def _q_index [html] (request):
>>      """
>>      
>>      哇拉拉
>>      ...
>>       (your whole page here....)
>>      ...
>>      ...
>>      
>>      """
>>
>> 然后你就可以很容易地动态化了:
>>
>> from my_module import get_title
>> def _q_index [html] (request):
>>      """
>>      
>>      %s
>>      ...
>>       (your whole page here....)
>>      ...
>>      ...
>>      
>>      """ % get_title()
>>
>> 还有,"简单"和"复杂"如果说的是动态内容而不是页面美工的话,我倒是觉得复杂的应该用Quixote。因为Quixote是围绕python,
>> 围绕程序设计的,不是围绕网页,围绕内容。
>>
>> 还有效率的问题。现在豆瓣每天有几万次访问, cpu 占用和load  
>> average一直徘徊在0.00和0.01之间。不敢想像用Zope会怎么样。
>>
>> - 阿北
>> ( http://blog.douban.com)
>>
>> On Jun 8, 2005, at 1:26 PM, 清风 wrote:
>>
>>> quixote无法直接处理静态页面是吗,比如我输入http://localhost:8080/index.htm不可以?,必须要将 
>>> html放
>>> 到py程序中?
>>>
>>> 2005/6/8, alang yin <alang.yl at gmail.com>:
>>>> 我是这么想的,简单的个人站点,小的应用就用quixote,复杂的应用,就用Zope2/3.
>>>>
>>>
>>
>> _______________________________________________
>> python-chinese list
>> python-chinese at lists.python.cn
>> http://python.cn/mailman/listinfo/python-chinese
>>
>>
>>
>
>
> -- 
> Blog:http://www.donews.net/changzheng
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: text/enriched
Size: 3828 bytes
Desc: not available
Url : http://lists.exoweb.net/pipermail/python-chinese/attachments/20050608/b40e7892/attachment.bin

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

2005年06月08日 星期三 16:53

清风 paradise.qingfeng at gmail.com
Wed Jun 8 16:53:02 HKT 2005

全部乱码。。。。。

2005/6/8, Bo Yang <boyang at mac.com>:
> ~{2;?MFx!#~}
> 
> Zope~{NR2;JlO$!#8P>uIOJJ:OSCTZ~}(~{1H=O>2L,5D~})~{DZH]5D7"2<:M9\@mIO#,1HHgPB at KUbVVSP:\6`MxBg1`<-5DDZH]MxU>!#51H;#,~}zope~{5DPTD\>x6T2;JJ:OPB at K#,8|~}
> ~{JJ:OVPP!AwA?5DMxU>!#~}
> 
> quixote~{JJ:O=gCf2;84TS#,5+JGDZH]7G3#6/L,5DMxU>~}, ~{1HHg690jUbQy5D!#~}
> 
> - ~{0"11~}
> (http://blog.douban.com)
> 
> On Jun 8, 2005, at 3:08 PM, ~{Ge7g~} wrote:
> 
> > ~{7G3#8PP;#,8P>u~}quixote~{8|CfOrMxU>5D?*7"#,6x~}zope~{8|CfOrFsR5S&SC;!#2;V*@m=bJG7qU}H7!#~}
> >
> > 2005/6/8, Bo Yang <boyang at mac.com>:
> >> ~{Ub8vJG~}web~{7~NqFwIhVC5DJBGi#,Dc?IRTHC~}apache~{0Q~}.html~{=aN25D7CNJV1=S4+8x>2L,R3Cf!#~}
> >>
> >> ~{DcR2?IRT0QU{8vR3Cf7ETZ~}quixote~{5D~}ptl~{@o#,:G:G#:~}
> >>
> >> def _q_index [html] (request):
> >>      """
> >>      
> >>      ~{M[@<a href="http://python.cn/mailman/listinfo/python-chinese" target="_blank">- at -</a>~}
> >>      ...
> >>       (your whole page here....)
> >>      ...
> >>      ...
> >>      
> >>      """
> >>
> >> ~{H;:sDc>M?IRT:\H]RW5X6/L,;/AK~}:
> >>
> >> from my_module import get_title
> >> def _q_index [html] (request):
> >>      """
> >>      
> >>      %s
> >>      ...
> >>       (your whole page here....)
> >>      ...
> >>      ...
> >>      
> >>      """ % get_title()
> >>
> >> ~{;9SP#,~}"~{JGR3CfC at 9$5D;0#,NR59JG>u5C84TS5DS&8CSC~}Quixote~{!#RrN*~}Quixote~{JGN'HF~}python,
> >> ~{N'HF3LPrIh> >>
> >> ~{;9SPP'BJ5DNJLb!#OVTZ690jC?LlSP<8Mr4N7CNJ~}, cpu ~{U> >> average~{R;V1EG;2TZ~}0.00~{:M~}0.01~{V.> >>
> >> - ~{0"11~}
> >> ( http://blog.douban.com)
> >>
> >> On Jun 8, 2005, at 1:26 PM, ~{Ge7g~} wrote:
> >>
> >>> quixote~{N^7(V1=S4&@m>2L,R3CfJGBp#,1HHgNRJdHk~}http://localhost:8080/index.htm~{2;?IRT#?#,1XPkR*=+~}
> >>> html~{7E~}
> >>> ~{5=~}py~{3LPrVP#?~}
> >>>
> >>> 2005/6/8, alang yin <alang.yl at gmail.com>:
> >>>> ~{NRJGUbC4Ok5D#,5c#,P!5DS&SC;>MSC~}quixote~{#,84TS5DS&SC;#,>MSC~}Zope2/3.
> >>>>
> >>>
> >>
> >> _______________________________________________
> >> python-chinese list
> >> python-chinese at lists.python.cn
> >> http://python.cn/mailman/listinfo/python-chinese
> >>
> >>
> >>
> >
> >
> > --
> > Blog:http://www.donews.net/changzheng
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn
> > http://python.cn/mailman/listinfo/python-chinese
> 
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
Blog:http://www.donews.net/changzheng

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号