30分钟学会Zope3

简介:
Zope3 In 30 Minutes 
三十分钟学会Zope3 
Author: Baiju M .m.mail>
Version: 0.1.4 
Copyright: (C) 2005 Baiju M, Placed under GNU GPL version 2, or (at your option) any later version 
翻译:firehare 
校正:leal 
组织:ubuntu.org.cn 
Contents 
目录 
* Why 30? 为什么是30分钟 
* And why should I ...? 为什么我要学... 
* Keywords 关键词 
* So let's start... 那么让我们开始 
* BookMarker : Your first Zope3 app BookMarker:你的第一个Zope3应用 
* Interfaces 接口 
* Unit Testing 单元测试 
* Real coding! 正式编码 
* Configuration 配置 
* Just run it 
* Views 视图 
* Functional testing 功能测试 
* Now what? 现在学什么?
 
Important Note: I assume you are using Debian 3.1 (Sarge) or similar systems. 
特别注意:我假设你正在使用Debian3.1(Sarge)或相似系统 
Why 30? 
为什么是30分钟
 
Sorry! Zope3 cannot be introduced in 10 minutes. 
很抱歉!Zope3是不可能在10分钟内介绍清楚的 
And why should I ...? 
为什么我要学?
 
If you are looking for a Pythonic framework for web application development, just continue reading. And I am not going to make a new definition for What is Pythonic? . Here I will try to answer your "why?" questions. 
如果你想为基于Web的应用开发作一个Pythonic的框架,那么请继续。我并不打算对什么是Pythonic作任何新的解释,主要试图回答“为什么”的问题。 
Keywords 
关键词
 
Python, Zope, Interface, Component, ZCML, ZMI, Adapter, View, Event, Service, Utility, Principal. 
So let's start... 
那么让我们开始...
 
Zope3 is the third generation of Zope, a framework for web applications. You can download Zope 3.1 from  http://www.zope.org/Products/Zope3  . To install untar Zope3 source package, then as root: 
Zope3是第三代的Zope,一个Web应用框架。你可以从http://www.zope.org/Products/zope3下载Zope3.1,解压Zope3源包,并以根用户权限运行: 
译者的话: 
如果是在Ubuntu下,请按下面命令运行: 

After installation you have to make an instance (don't worry! just do it). To do so: 
安装完成后,你必须建立一个Zope Instance(别担心!只需照作就行)。命令如下: 

To start Zope3 server, go to your instance directory, then: 
然后是启动你的Zope3服务,到你的Instance目录下,然后运行: 

If you get a port error, check check 8080 and 8021 is already used by other programs; for the time being, just stop it. Start your browser , the open http://localhost:8080 . What you see is the Zope Management Interface (ZMI). ZMI is your Python prompt, hmm... no! Zope prompt, got it?. You can login and look around to see what's happening. If you played enough with ZMI, stop it from terminal (Control + C). 
如果你得到一个端口错误,请检查8080和8021端口是否被其他程序占用;暂时停止运行该程序。打开你的浏览器,然后输入http://localhost:8080。你将看到Zope Management Interface(ZMI)。ZMI是你的Python提示符,嗯...不!应该是Zope的提示符,看到了吗?你可以登录进去并且到处点击看看。如果你在ZMI玩够了的话,在终端用Ctrl+C中断它。 
BookMarker : Your first Zope3 app 
BookMarker:你的第一个Zope3应用
 
Yes! we are going to create a Zope3 application, an online book marker. Our app will display links to websites and a description for each link. 
是的!我们打算开始创建一个Zope3应用,一个在线书签。我们的应用将显示到网站的链接和每条链接的描述。 
So, what you have to think about when you start a Zope3 project. Oh! sorry! I can't put it in one sentence, you better learn and practice Extreme Programming http://en.wikipedia.org/wiki/Extreme_programming. Anyway, after your initial design, you will write interfaces. Let us hope Python 3.0 will make it much easier. Then you will write unit tests, now your ideas become very concrete!. At last write your real code. You will be satisfied when you implement interfaces one by one and unit tests succeeds!. I have given the source code of BookMarker here: boom.tar.bz2 
那么,在开始一个Zope3项目前,你得做何准备呢?哦!很抱歉!我没法一言以蔽之,你最好先学习并实践XP(极限编程,一种轻量级的软件开发过程)http://en.wikipedia.org/wiki/Extreme_programming。总之,在你初步设计之后,就将编写接口。让我们期待Python 3.0 会让它变得容易些吧!然后开始编写单元测试,至此你的想法已非常具体!最后编写正式代码。当你一个接一个的实现接口并通过单元测试,你会拥有(前所未有的)满足感! 我已经在这里给出了BookMarker应用的源代码:boom.tar.bz2 
Our code will be placed at $HOME/myzope/lib/python/boom 
我们的代码将放在$HOME/myzope/lib/python/boom目录中 
First create a file interfaces.py where we will keep our interfaces. Later we will implement these interfaces one by one, with strong support of unit testing. 
首先创建一个interfaces.py的文件,我们将在该文件内保存所有接口。后面我们将在单元测试的强力支持下,一个接一个的实现这些接口。 
Interfaces 
接口
 
Here is our interfaces.py: 
下面就是我们的interfaces.py: 

Our first interface IMark has two attributes, one is the URL of the site and the other one is the description. Please note, IMark is not a class even though we used Python's class definition. We inherited from Interface to make it an interface. Second one is a container interface, which is an extended IContainer interface. By using this container interface we can persist our data (instances of IMark implementations). We will put all objects of IMark in a container object of IBookMarker. We will implement IMark along with IMarkContained as a constraint interface. So that IMark object will be only contained in an IBookMarker object. 
我们的第一个接口IMark有两个属性,一个是站点的URL,另 一个是它的描述。请注意,IMark不是一个类,尽管我们使用了Python的类定义。IMark继承自Interface,因此是个接口。第二个是一个容器接口,它是一个扩展的Icontainer接口。我们可以使用这个容器接口来保存我们的数据(IMark实现的实例)。我们将IMark的所有对象放到IBookMarker的一个容器对象里。我们连同IMarkContained(作为一个约束接口)一起来实现IMark。所以IMark对象只能包含在IBookMarker对象中。 
Unit Testing 
单元测试
 
Now create tests.py and put the following code there: 
现在创建tests.py文件,输入下列语句: 

Actually, we are not written any unit tests here, but this will make our doc tests working automatically.
实际上我们在这里并没有编写任何的单元测试,不过它会自动对我们的文档进行测试 
To run the unit test: 
然后运行单元测试 

Real coding! 
正式编码
 
Now let's move on to the implementation (bookmarker.py): 
现在让我们继续去实现(bookmarker.py) 

We have written doctests along with the implementations. Doctests are accompanied with examples, so it is called example driven unit testing. 
我们已经在实现的同时也编写了Doctests,该Doctests是同例子一起的,所以这种实现方式我们称之为事例驱动单元测试 
Configuration 
配置
 
Now configuration (save in configure.zcml): 
现在编写配置(保存在configure.zcml文件中): 

Is it self explanatory? "no...!" then ok! we will discuss Zope Configuration Markup Language (ZCML) briefly later. Actually, if you are familiar with ZCML this configuartion will be more than self explanatory. It will give you an overall idea about the entire application. Now you might think, it is not Pythonic Hey! think twice!. 
它能不言自明(即能够自我解释,XML之类的标记语言都有这个特点)吗?“不...!”好吧,我们将稍后简单的谈谈Zope Configuration Markup Language(ZCML,Zope配置标记语言)。实际上,如果你对ZCML熟悉的话,你会发现这个配置不止是不言自明,它将带给你的是对整个应用的总体思路。现在你可能在想,这并不Pythonic嘛 ,嗨!再想想! 
Just run it 
As the last step to work our application, put the following line in:$HOME/myzope/etc/package-icludes/boom-configure.zcml: 
最后一步就是要让我们的应用运行起来,在文件$HOME/myzope/etc/package-icludes/boom-configure.zcml中插入下列行: 

Now you registered your package. 
现在你已经注册了你的包。 
Run zope again, then open your browser, add a BookMarker and few book marks. 
重新启动Zope,然后打开你的浏览器,添加一个BookMarker和一些书签。 
Now you want to arrange your your book marks in a better way, don't you?. For the time being, just relax, then we will create a view for book marks. 
现在,你不想让你的书签排列得更好点吗?先暂时休息一下,之后我们将为书签创建一个视图。 
Views 
视图
 
Now create a file named browser.py with following code: 
现在新建一个名为browser.py的文件,并输入下列代码: 

Then one template (marks.pt): 
然后创建一个模板(marks.pt) 

Now by clicking on "Marks" tab you can see all book marks. 
现在点击一下“Marks”标签,你就可以看到所有的书签了。 
Ok! this is not the end, just the beginning of your study. 
好的!这样可不能算是结束,这仅仅是你学习的开始。 
Functional testing 
功能测试
 
Let's finish our example writing a functional test for view (ftests.py): 
让我们为视图写一个功能测试来结束我们的例子(ftests.py) 

To run the functional test: 
然后运行该功能测试: 

Now what? 
现在学什么?
 
Now you can start learning Zope3 in detail, using Zope3 book. Also join zope3-users mailing list. 
现在你可以通过Zope3 Book开始详细学习Zope3了。也可以加入到zope3-user邮件列表里。 
There is a good Zope3 quick start guide by Benji York: http://www.benjiyork.com/quick_start/ 
这里有Benji York写的一个不错的Zope3快速入门指南: http://www.benjiyork.com/quick_start/ 
A good introductory book is also available in print, visit: http://worldcookery.com/ 
还有一本已出版的介绍性图书,很不错,请访问: http://worldcookery.com/ 
Just one more thing: I want to improve this document, so don't hesitate to write your feedback to: baiju.m.mail AT gmail.com 




本文转自 firehare 51CTO博客,原文链接:http://blog.51cto.com/firehare/588278,如需转载请自行联系原作者

相关文章
|
网络协议 数据可视化 Unix
Xshell 7(SSH远程终端工具) v7.0.0109 官方中文正式版(附文件+安装教程)
Xshell 7(SSH远程终端工具) v7.0.0109 官方中文正式版(附文件+安装教程)
8789 0
Xshell 7(SSH远程终端工具) v7.0.0109 官方中文正式版(附文件+安装教程)
|
10月前
|
存储 关系型数据库 MySQL
MySQL的垂直分库分表
MySQL的垂直分库分表
115 0
|
缓存 网络协议 Ubuntu
Linux基础命令---nfsstat显示nfs状态
nfsstat nfsstat指令用来显示nfs客户端和服务器的活动信息。 此命令的适用范围:RedHat、RHEL、Ubuntu、CentOS、Fedora。 1、语法 nfsstat [选项] 2、参数列表 -s | --server 只显示服务器信息,默...
5585 0
|
6月前
|
人工智能 自然语言处理 搜索推荐
2023云栖大会 | 阿里云发布通义千问2.0
今天,阿里云正式发布千亿级参数大模型通义千问2.0。在10个权威测评中,通义千问2.0多方面性能超过GPT-3.5,正在加速追赶GPT-4。 此外,通义千问APP在各大手机应用市场正式上线,所有人都可通过APP直接体验最新模型能力。 过去6个月,通义千问2.0在性能上取得巨大飞跃,相比4月发布的1.0版本,通义千问2.0在复杂指令理解、文学创作、通用数学、知识记忆、幻觉抵御等能力上均有显著提升。目前,通义千问的多方面性能已经超过GPT-3.5,加速追赶GPT-4。
1954 0
2023云栖大会 | 阿里云发布通义千问2.0
|
7月前
|
设计模式 网络协议 Java
JAVA-stateless4j StateMachine从入门到实战
JAVA-stateless4j StateMachine从入门到实战
|
10月前
|
定位技术 API
Cesium开发:常用地图事件
Cesium开发:常用地图事件
219 0
|
11月前
|
JavaScript 编译器 C++
Vue项目实战——实现一个任务清单【基于 Vue3.x 全家桶(简易版)】
Vue项目实战——实现一个任务清单【基于 Vue3.x 全家桶(简易版)】
320 0
|
8月前
|
人工智能 API 开发者
阿里云通义千问向全社会开放!
阿里云通义千问向全社会开放!
16165 36
|
Java 应用服务中间件 Apache
认识Tomcat的日志:catalina.out、localhost、manager、localhost_access_log
认识Tomcat的日志:catalina.out、localhost、manager、localhost_access_log
1232 0
|
数据采集 监控 Linux
​数据采集神器Telegraf对接开源日志服务器GrayLog
​数据采集神器Telegraf对接开源日志服务器GrayLog
633 0
​数据采集神器Telegraf对接开源日志服务器GrayLog