Zope

Zope

Infobox_Software
name = Zope



caption = Zope management interface in a web browser window.
collapsible = yes
developer = Zope Corporation
status = Active
latest_release_version = 3.3.1
latest_release_date = release_date|2007|01|14
latest_preview_version =
latest_preview_date =
operating_system = Cross-platform
size =
programming_language = Python
genre = web application server
license = Zope Public License
website = http://www.zope.org/

Zope is a free and open-source, object-oriented web application server written in the Python programming language. Zope stands for "Z Object Publishing Environment." It can be almost fully managed with a web-based user interface. Zope publishes on the web Python objects that are typically persisted in an object database, ZODB. Basic object types, such as documents, images, and page templates, are available for the user to create and manage through the web. Specialized object types, such as wikis, blogs, and photo galleries, are available as third-party add-ons (called products), and there is a thriving community of small businesses creating custom web applications as Zope products.

There are two major generations of the software in use today. As of May 2008, Zope 2.10.6 is the latest stable release of Zope 2 codebase, and Zope 3.3.1 is the latest release of Zope 3. Zope is distributed under the terms of the Zope Public License, a free software license.

History

The Zope Corporation was formed in 1995 in Fredericksburg, VA, as a joint venture with InfiNet (a joint newspaper chain venture). The company developed a classified advertisement engine for the Internet, then in 1997 became an independently owned private company. At the behest of its largest investor, Opticality Ventures, Zope Corporation released its software as free software, concentrating on providing premier customization services. The company's software engineers are led by CTO Jim Fulton. PythonLabs, creators of Python, became part of the company in the year 2000. Python founder Guido van Rossum is no longer employed by Zope, however.

What is now known as Zope 2 started off with the merger of three separate software products – Bobo, Document Template, and BoboPOS – into the Principia application server. The authoring company, Digital Creations, re-released their flagship product as free and open-source software in 1998, influenced by their venture capitalist, Hadar Pedhazur. This product was renamed "Zope" with this release. In November 2004, Zope 3 was released. Zope 3 is a complete rewrite that preserves only the original ZODB object database and the ZPT templating engine. The design of Zope 3 is driven by the needs of large companies, the clients of Zope Corporation, for complex business schemas. It is directly intended for enterprise web application development using the newest development paradigms. Zope 3 is, however, not compatible with Zope 2, so you cannot run Zope 2 applications on Zope 3. Therefore, an effort (called Five) to merge the new Zope 3 paradigms into Zope 2 has been ongoing since Zope 2.8. Its aim is to allow developers to write applications and libraries that run under both Zope 3 and Zope 2.

Technical features

A Zope website is composed of objects in an object database as opposed to files, as is usual with many other web server systems. This approach allows users to harness the advantages of object technologies, such as encapsulation. Zope maps URLs to objects using the containment hierarchy of such objects; methods are considered to be contained in their objects as well.

Zope comes with the Zope Object Database, which transparently persists (Python) objects in a transactional database.

One particularly innovative feature of Zope is its widespread use of acquisition. Acquisition is a technique parallel to class inheritance, in which objects "inherit" behavior from their context in a composition hierarchy, as opposed to their class in a class hierarchy. This allows certain ways to structure source code that are otherwise harder to accomplish, and can encourage application decomposition. A common use is in structuring the way layout elements are used in a web page. Acquisition as implemented in Zope 2 is also perceived as a source of bugs, as it enables many unexpected behaviours. In Zope 3 the use of acquisition has been made explicit. You only acquire data if you explicitly say that it is the acquired data you want.

Zope provides several mechanisms for HTML templating: Dynamic Template Markup Language (DTML), and Zope Page Templates (ZPT). DTML is a tag-based language which allows implementation of simple scripting in the templates. DTML has provisions for variable inclusion, conditions, and loops. However, DTML has major drawbacks: DTML tags interspersed with HTML form non-valid HTML documents, and careless inclusion of logic into templates results in very unreadable code. ZPT is a technology that fixes these shortcomings. ZPT templates can be either well-formed XML documents or HTML documents, in which all special markup is presented as attributes in the TAL (Template Attribute Language) namespace. ZPT offers just a very limited set of tools for conditional inclusion and repetition of XML elements, thus the templates are usually quite simple, with most logic implemented in Python code. One significant advantage of ZPT templates is that they can be edited in most graphical HTML editors. ZPT also offers direct support for internationalization.

Zope 2 is the base behind the Plone, and Silva content management systems, as well as the base behind ERP5 open source enterprise resource planning.

Zope 3

Zope 2 has proven itself as a useful framework for web applications development, but its use revealed some shortcomings. To name a few, creating Zope 2 products involves copying a lot of boilerplate code – "magic" code – that just has to be there, and the built-in management interface is difficult to modify or replace. Zope 3 is a rewrite of the software that attempts to address these shortcomings while retaining the advantages of Zope that led to its popularity. Zope 3 is based on a [http://wiki.zope.org/zope3/ComponentArchitecture component architecture] that makes it easy to mix software components of various origins written in Python. Zope 3 is not aiming for backwards compatibility with Zope 2. Instead the Zope 3 component architecture has been backported to Zope 2, and Zope 2 is instad for each release gaining more and more of Zope 3s architecture while retaining compatibility with earlier Zope 2 technologies. Also many Zope platforms such as Plone is going through the same type of piece by piece rewriting.

Although originally intended as a replacement for Zope 2, Zope 3 has instead been re-focused on providing multiple independent infrastructure components, while other projects like Zope 2, Grok and lately repoze.bfg would become one project focused on providing web application server frameworks based on Zope 3 components. An ancillary goal is to reduce confusion about what exactly "Zope" is.

The first production release of the new software, Zope X3 3.0.0, was released on November 6, 2004. The current production release, Zope 3.3.1, was released on January 14, 2007.

Grok

In 2006 the Grok project was started by a number of Zope 3 developers who wanted to make Zope 3 technology more agile in use and more accessible to newcomers. Grok has since then seen regular releases and its core technology (Martian, grokcore.component) is also finding uptake in other Zope 3 and Zope 2 based projects.

Five and the Future of Zope

The [http://codespeak.net/z3/five/ Five project] is a Zope 2 extension that allows usage of Zope 3 technologies within Zope 2, hence the name Five, as 3 + 2 = Five.

Originally released separately, Five has become an integral part of the main line of Zope 2 development. Five 1.0 was integrated with Zope 2 starting with Zope 2.8.0. Each successive Zope 2 release has integrated more of the features of Zope 3.

Zope Page Templates

As mentioned previously, Zope Page Templates are themselves XHTML documents which means they can be viewed and edited using normal HTML editors or XHTML compliant tools (a big benefit compared to other template languages used for web applications). Templates can also be checked for XHTML compliance so you can be fairly confident that they will automatically expand into proper XHTML.

However, these page templates are not meant to be rendered as is. Instead they are marked up with additional elements and attributes in special XML namespaces (see below). This additional information is used to describe how the page template should ultimately be processed.

Here are some basic examples. To conditionally include a particular element, like a div element, simply add the tal:condition attribute to the element as follows:

...

To control what appears inside an element, use the tal:content attribute like this:

...

Finally, to introduce or replace values of attributes use the tal:attributes attribute as follows:The power of python could also be utilised to dynamically alter the href at runtime.

...

This a very cursory explanation of Zope Page Templates. The behavior of Zope Page Templates is almost completely described by a template language, fixed on [http://www.zope.org/Documentation/Books/ZopeBook/2_6Edition/AppendixC.stx TAL, TALES, and METAL specifications] :
* Template Attribute Language (TAL),
* Template Attribute Language Expression Syntax (TALES),
* Macro Expansion Template Attribute Language (METAL).

Zope Management Interface

The Zope application server features a web-based management interface that enables an administrative user to change many aspects about the way Zope behaves. It was this ease of customizability that gave Zope both its popularity and its infamous shortcomings described above.

ee also

*ERP5
*Content management
*Plone
*Web content management
*Zope Content Management Framework
*Zwiki

External links

* [http://www.zope.org/ Zope website]
* [http://wiki.zope.org/zope2 Zope 2 wiki]
* [http://wiki.zope.org/zope3 Zope 3 wiki]
* [http://zope.com/ Zope Corporation]
* [http://www.zope.org/Documentation/Books/ZopeBook/ The Zope Book]
* [http://wiki.bitflux.org/Templates_TAL_Example template (ZPT) Examples]
* [http://wiki.zope.org more Zope wikis]


Wikimedia Foundation. 2010.

Игры ⚽ Нужно сделать НИР?

Look at other dictionaries:

  • Zope — est un serveur d application web orienté objet, libre, écrit en langage de programmation Python et gérable à partir d une interface Web. Zope publie sur le réseau des objets Python enregistrés dans une base de données objet, ZODB. Des types d… …   Wikipédia en Français

  • Zope — 2 Интерфейс управления Zope в окне веб браузера. Тип Сервер приложений …   Википедия

  • Zope 3 — is the new generation of the popular Zope web application server, rewritten from scratch with a component architecture and which has evolved into a large library of reusable Python components. The first production release of the software, Zope X3 …   Wikipedia

  • Zope — 2 Zope management interface en la ventana de un navegador Web. Desarrollador Zope Corporation …   Wikipedia Español

  • Zope — m. *Aura (ave rapaz). * * * zope. m. Am. Cen. y Col. aura2. || 2. El Salv. vómito. || amarrar el zope …   Enciclopedia Universal

  • zope — 1. m. Am. Cen. y Col. aura2. 2. El Salv. vómito. amarrar el zope. fr. Hond. vomitar (ǁ lo contenido en el estómago). amarrar zope. fr. Guat. vomitar (ǁ lo contenido en el estómago) …   Diccionario de la lengua española

  • Zope — ope, n. [G.] (Zo[ o]l.) A European fresh water bream ({Abramis ballerus}). [1913 Webster] …   The Collaborative International Dictionary of English

  • Zope — Zope, 1) (Schwuppe, Dünneke, Cyprinus ballerus, Abramis b.), Art aus der Fischgattung Karpfen, hat kleinen, stumpfen Kopf, dünnen, breiten Leib, lange Afterflosse mit 21 Strahlen, wiegt bis drei Pfund, lebt in der Ostsee, hat sehr grätiges… …   Pierer's Universal-Lexikon

  • Zope — Zope, Fisch, s. Brasse …   Meyers Großes Konversations-Lexikon

  • Zope — Zope, s. Brachsen …   Kleines Konversations-Lexikon

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”