You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage zope.copypastemove-4.0.0-1.lbn25.noarch
This package provides Copy, Paste and Move support for content components in Zope. In particular, it defines the following interfaces for this kind of functionality: * IObjectMover, * IObjectCopier, * IContentItemRenamer, * IPrincipalClipboard as well as standard implementations for containers and contained objects as known from the zope.container package.
RPMPackage zope.copy-4.2-1.lbn25.noarch
This package provides a pluggable way to copy persistent objects. It was once extracted from the zc.copy package to contain much less dependencies. In fact, we only depend on zope.interface to provide pluggability. The package provides a clone function that does the object cloning and the copy wrapper that sets __parent__ and __name__ attributes of object's copy to None. This is useful, when working with Zope's located objects (see zope.location package). The copy function actually calls the clone function so we'll use the first one in the examples below. We'll also look a bit at their differences in the end of this document. The clone function (and thus the copy function that wraps it) uses pickling to copy the object and all its subobjects recursively. As each object and subobject is pickled, the function tries to adapt it to zope.copy.interfaces.ICopyHook. If a copy hook is found, the recursive copy is halted. The hook is called with two values: the main, top-level object that is being copied; and a callable that supports registering functions to be called after the copy is made. The copy hook should return the exact object or subobject that should be used at this point in the copy, or raise zope.copy.interfaces.ResumeCopy exception to resume copying the object or subobject recursively after all. Note that we use zope's component architecture provided by the zope.component package in this document, but the zope.copy package itself doesn't use or depend on it, so you can provide another adaptation mechanism as described in zope.interface's adapter documentation.
RPMPackage zope.container-4.1.0-1.lbn25.x86_64
This package define interfaces of container components, and provides container implementations such as a BTreeContainer and OrderedContainer, as well as the base class used by zope.site.folder for the Folder implementation.
RPMPackage zope.container-4.1.0-1.lbn25.x86_64
This package define interfaces of container components, and provides container implementations such as a BTreeContainer and OrderedContainer, as well as the base class used by zope.site.folder for the Folder implementation.
RPMPackage zope.configuration-4.3.0-1.lbn25.noarch
The zope configuration system provides an extensible system for supporting various kinds of configurations. It is based on the idea of configuration directives. Users of the configuration system provide configuration directives in some language that express configuration choices. The intent is that the language be pluggable. An XML language is provided by default.
RPMPackage zope.component-4.5-1.lbn25.noarch
Zope component architecture
RPMPackage zope.app.zopeappgenerations-3.6.1-1.lbn25.noarch
This package provides the ZODB schema update generations for all components included in the classic Zope 3 releases.
RPMPackage zope.app.zcmlfiles-3.8.0-1.lbn25.noarch
Zope application server ZCML files
RPMPackage zope.app.zapi-3.5.0-2.lbn25.noarch
zope.app.zapi
RPMPackage zope.app.wsgi-4.0.0-1.lbn25.noarch
This package provides the WSGIPublisherApplication class which exposes the object publishing machinery in zope.publisher as a WSGI application. It also lets us bring up the Zope application server (parsing zope.conf and site.zcml) with a mere function call: >>> db = zope.app.wsgi.config('zope.conf') This is especially useful for debugging. To bring up Zope and obtain the WSGI application object at the same time, use the getWSGIApplication function. This package also provides an easy to use application factory for PasteDeploy. You can simply specify an application configuration like this in your Paste configuration file: [app:main] use = egg:zope.app.wsgi config_file = s/zope.conf Look for more documentation inside the package itself.
RPMPackage zope.app.undo-3.5.0-3.lbn25.noarch
Transaction Undo API and UI
RPMPackage zope.app.tree-3.6.0-2.lbn25.noarch
Static Tree Implementation
RPMPackage zope.app.traversing-3.4.0-2.lbn25.noarch
zope.app.traversing
RPMPackage zope.app.testing-3.10.0-1.lbn25.noarch
This package provides testing support for Zope 3 applications. Besides providing numerous setup convenience functions, it implements a testing setup that allows the user to make calls to the publisher allowing to write functional tests.
RPMPackage zope.app.skins-3.4.0-2.lbn25.noarch
zope.app.skins
RPMPackage zope.app.session-3.6.2-2.lbn25.noarch
zope.app.session
RPMPackage zope.app.server-3.6.0-2.lbn25.noarch
zope.app.server
RPMPackage zope.app.securitypolicy-3.6.1-2.lbn25.noarch
zope.app.securitypolicy
RPMPackage zope.app.security-3.7.5-2.lbn25.noarch
zope.app.security
RPMPackage zope.app.schema-4.0.0-1.lbn25.noarch
This package provides a component architecture based vocabulary registry.