Differences between revisions 6 and 11 (spanning 5 versions)
Revision 6 as of 2006-11-12 12:40:51
Size: 1544
Editor: HuangYi
Comment:
Revision 11 as of 2009-12-25 07:16:00
Size: 1595
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
 * [:pylonsinstall:pylons 安装,配置,入门及部署] [[http://www.xgdev.net/bbs/index.php?topic=120.msg346 原文出处]]
 * [:Pylons/wsgi:Pyl
ons Support for the Web Server Gateway Interface]
 *
[http://www.groovie.org/articles/2006/02/23/ingredients-to-the-pylons-python-web-framework Ingredients to the Pylons Python Web Framework]
 * Pyl
ons 文档翻译
  * [:Pylons/QuickWiki: Quick Wiki Tutorial]
  * [:Pyl
ons/TemplatePlugins: Template Plugins]
  * [:Pyl
ons/InteractiveDebugger: 交互式调试器]
  * [:Pyl
ons/UnitTest: 使用 paste.fixture 进行单元测试]
  * [:Pylons/wsgi: Pyl
ons Support for the Web Server Gateway Interface]
 * [:Pyl
ons/call-cycle: Pylons 代码分析之 request生命周期]
## page was renamed from PyLons
 * [[PyLonsInstall|PyL
ons 安装,配置,入门及部署]] [[[http://www.xgdev.net/bbs/index.php?topic=120.msg346|原文出处]]]
 * [[PyLons/wsgi|PyL
ons Support for the Web Server Gateway Interface]]
 * [
[http://www.groovie.org/articles/2006/02/23/ingredients-to-the-PyLons-python-web-framework|Ingredients to the PyLons Python Web Framework]]
 * PyL
ons 文档翻译
  * [[PyLons/QuickWiki| Quick Wiki Tutorial]]
  * [[PyL
ons/TemplatePlugins| Template Plugins]]
  * [[PyL
ons/InteractiveDebugger| 交互式调试器]]
  * [[PyL
ons/UnitTest| 使用 paste.fixture 进行单元测试]]
  * [[PyLons/wsgi| PyL
ons Support for the Web Server Gateway Interface]]
 * [[PyL
ons/call-cycle| PyLons 代码分析之 request生命周期]]
Line 12: Line 13:
[[TableOfContents]]
=== 我的看法 --huangyi ===
["huangyi"]
<<TableOfContents>>
Line 16: Line 15:
 * pylons 是建立在[http://wsgi.org wsgi]和[http://pythonpaste.org/ paste]基础上的rails框架;
 * url dispatcher: [http://routes.groovie.org/ Routes], 默认模板: [http://www.myghty.org/ myghty], 不过只需几句代码就可以配置为其他模板;
=== 我的看法 --HuangYi ===
HuangYi

* PyLons 是建立在[[http://wsgi.org|wsgi]]和[[http://pythonpaste.org/|paste]]基础上的rails框架;
 * url dispatcher: [[http://routes.groovie.org/|Routes]], 默认模板: [[http://www.myghty.org/|myghty]], 不过只需几句代码就可以配置为其他模板;

我的看法 --HuangYi

HuangYi

  • PyLons 是建立在wsgipaste基础上的rails框架;

  • url dispatcher: Routes, 默认模板: myghty, 不过只需几句代码就可以配置为其他模板;

  • 取众家之长, 比如 route,webhelpers,web测试 等观念来自ror;
  • 许多功能都由wsgi中间件提供,比如:web调试,错误处理,session,cache,用户验证等;
  • 许多核心模块的配置组装过程直接反映在自动生成的用户代码中,可以进行深度定制,(查看your_project/config/middleware);
  • 不依赖具体orm, 模板系统容易替换, 可以轻松使用其他符合wsgi标准的web组件;
  • 灵活的同时增加了配置的复杂度.

PyLons (last edited 2009-12-25 07:16:00 by localhost)