You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage zope.dottedname-3.4.6-2.lbn13.noarch
The zope.dottedname module provides one function, resolve that resolves strings containing dotted names into the appropriate python object. Dotted names are resolved by importing modules and by getting attributes from imported modules. Names may be relative, provided the module they are relative to is supplied.
RPMPackage zope.documenttemplate-3.4.3-2.lbn13.noarch
zope.documenttemplate
RPMPackage zope.deprecation-3.4.1-3.lbn13.noarch
When we started working on Zope 3.1, we noticed that the hardest part of the development process was to ensure backward-compatibility and correctly mark deprecated modules, classes, functions, methods and properties. This package provides a simple function called 'deprecated(names, reason)' to deprecate the previously mentioned Python objects.
RPMPackage zope.deferredimport-3.5.3-3.lbn13.noarch
Often, especially for package modules, you want to import names for convenience, but not actually perform the imports until necessary. The zope.deferredimport package provided facilities for defining names in modules that will be imported from somewhere else when used. You can also cause deprecation warnings to be issued when a variable is used.
RPMPackage zope.decorator-3.4.0-4.lbn13.noarch
zope.decorator
RPMPackage zope.datetime-3.4.1-2.lbn13.noarch
Commonly used date and time related utility functions.
RPMPackage zope.copypastemove-3.8.0-2.lbn13.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.0.0-2.lbn13.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.contenttype-3.5.5-2.lbn13.noarch
zope.contenttype
RPMPackage zope.contentprovider-3.7.2-2.lbn13.noarch
This package provides a framework to develop componentized Web GUI applications. Instead of describing the content of a page using a single template or static system of templates and METAL macros, content provider objects are dynamically looked up based on the setup/configuration of the application.
RPMPackage zope.container-3.12.0-2.lbn13.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-3.8.1-2.lbn13.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.componentvocabulary-1.0.1-2.lbn13.noarch
This package contains various vocabularies.
RPMPackage zope.component-3.10.0-2.lbn13.noarch
Zope Component API
RPMPackage zope.catalog-3.8.2-2.lbn13.noarch
Catalogs provide management of collections of related indexes with a basic search algorithm.
RPMPackage zope.cachedescriptors-3.5.1-2.lbn13.noarch
Cached descriptors cache their output. They take into account instance attributes that they depend on, so when the instance attributes change, the descriptors will change the values they return. Cached descriptors cache their data in _v_ attributes, so they are also useful for managing the computation of volatile attributes for persistent objects. Persistent descriptors: property A simple computed property. See property.txt. method Idempotent method. The return values are cached based on method arguments and on any instance attributes that the methods are defined to depend on. **Note**, only a cache based on arguments has been implemented so far. See method.txt. Cached Properties ----------------- Cached properties are computed properties that cache their computed values. They take into account instance attributes that they depend on, so when the instance attributes change, the properties will change the values they return.
RPMPackage zope.browserresource-3.10.3-2.lbn13.noarch
Browser resources implementation for Zope.
RPMPackage zope.browserpage-3.12.2-2.lbn13.noarch
ZCML directives for configuring browser views for Zope.
RPMPackage zope.browsermenu-3.9.1-2.lbn13.noarch
Browser menu implementation for Zope 3.
RPMPackage zope.browser-1.3-2.lbn13.noarch
This package provides shared browser components for the Zope Toolkit.