You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python2-z3c-testsetup-0.8.4-1.lbn36.noarch
z3c.testsetup: easy test setup for zope 3 and python projects *************************************************************Setting up tests for Zope 3 projects sometimes tends to be cumbersome. You often have to prepare complex things like test layers, setup functions, teardown functions and much more. Often these steps have to be done again and again. z3c.testsetup jumps in here, to support...
RPMPackage python2-z3c-template-3.1.0-1.lbn36.noarch
z3c.template :target:
RPMPackage python2-z3c-table-2.2-1.lbn36.noarch
This package provides a modular table rendering implementation for Zope3.
RPMPackage python2-z3c-schema2xml-1.0-1.lbn36.noarch
Schema To XML *************Introduction This package can convert objects described by Zope 3 schema to simple XML structures. It's also able to convert this XML back into objects. The export and import processes are completely schema-driven; any attribute not described in the schema is not seen by this system at This system can be used to create export and import systems for Zope 3...
RPMPackage python2-z3c-relationfield-0.9.0-1.lbn36.noarch
z3c.relationfield *****************Introduction This package implements a new schema field Relation, and the RelationValue objects that store actual relations. It can index these relations using the zc.relation infractructure, and using these indexes can efficiently answer questions about the relations.The package z3c.relationfieldui_ in addition provides a widget to edit and display Relation...
RPMPackage python2-z3c-recipe-sphinxdoc-1.1.0-1.lbn36.noarch
z3c.recipe.sphinxdoc Introduction This buildout recipe aids in the generation of documentation for the zope.org website from restructured text files located in a package. It uses Sphinx to build static html files which can stand alone as a very nice looking website.Usage Instructions Suppose you have a package called z3c.form. In the setup.py for z3c.form it is recommended that you add a docs...
RPMPackage python2-z3c-ptcompat-2.3.0-1.lbn36.noarch
.. contents::Overview :target:
RPMPackage python2-z3c-pt-3.3.1-1.lbn36.noarch
z3c.pt :target:
RPMPackage python2-z3c-objpath-1.2-1.lbn36.noarch
ObjectPath **********This package contains two things:* the z3c.objpath.interfaces.IObjectPath interface.* some helper functions to construct (relative) object paths, in z3c.objpath.path.The idea is that a particular application can implement a utility that fulfills the IObjectPath interface, so that it is possible to construct paths to objects in a uniform way. The implementation may be done...
RPMPackage python2-z3c-jbot-1.1.1-1.lbn36.noarch
The z3c.jbot (or "Just a bunch of templates") package allows easy customization of existing templates and images. It works on Zope 2 and The Chameleon rendering engine is supported []_.Use of this package adds a small (2-3 ms per request on Plone) to the total application response time... [] To enable Chameleon on Zope 2, use the five.pt package (CMF-apps like Plone should use cmf.pt which...
RPMPackage python2-z3c-formwidget-query-0.17-1.lbn36.noarch
This package implements a widget that lets users enter a query and select from the results.The widget works with zope.schema.Choice-fields supplying a query source [1], optionally in conjunction with a collection field which then allows multiple selections.The easiest way to use the widget is to provide one of the following as widgetFactory:*...
RPMPackage python2-z3c-form-3.7.1-1.lbn36.noarch
This package provides an implementation for HTML and JSON forms and widgets. The goal is to provide a simple API but with the ability to easily customize any data or.. contents:: Forms and Widgets This package provides an implementation for HTML forms and widgets. The goal is to provide a simple API but with the ability to easily customize any data or steps. This document, provides the content...
RPMPackage python2-z3c-flashmessage-2.1-1.lbn36.noarch
.. contents:: Flash messages Components to display small messages to users. Sending a message to the current user To send a message to the current user, you can use the session-based message source. Let's set one up:>>> from z3c.flashmessage.sources import SessionMessageSource >>> from __future__ import unicode_literals >>> source SessionMessageSource()>>> source.send('The world will come to...
RPMPackage python2-z3c-dependencychecker-2.7-1.lbn36.noarch
z3c.dependencychecker Checks which imports are done and compares them to what's in setup.py and warn when discovering missing or unneeded dependencies. .. contents:: What it does z3c.dependencychecker reports on:- **Missing (test) requirements**: imports without a corresponding requirement
RPMPackage python2-z3c-coverage-2.1.0-1.lbn36.noarch
z3c.coverage This package contains tools to work with Python coverage data.coveragereport produces HTML reports from coverage data, with syntax- highlighted source code and per-package aggregate numbers.coveragediff compares two sets of coverage reports and reports regressions, that is, increases in the number of untested lines of code... contents:: Using coveragereport :: $ coveragereport...
RPMPackage python2-z3c-checkversions-1.2-1.lbn36.noarch
Introduction Find newer versions of your installed Python packages, or newer versions of packages in a buildout file.This package provides a console script named checkversions. .. contents::Install you can install this package either in a virtualenv:: $ virtualenv sandbox $ sandbox/bin/pip install z3c.checkversions $ sandbox/bin/checkversions --helpor in your system:: $ sudo pip install...
RPMPackage python2-z3c-caching-2.2-1.lbn36.noarch
Introduction Caching of web pages is a complicated process: there are many possible policies to choose from, and the right policy can depend on factors such as who is making the request, the URL is being retrieved and resource negotiation settings such as accepted languages and encodings,Hardcoding caching logic in an application is not desirable, especially for reusable code. It is also not...
RPMPackage python2-z3c-blobfile-0.1.5-1.lbn36.noarch
Blob File This package provides an implementation of zope.app.file.interfaces.IFile which uses the Blob support introduced in ZODB 3.8. It's main purpose is to provide an easy migration path for existing instances. For more advanced file implementations see zope.file and z3c.extfile. The standard implementation in zope.app.file uses chunk objects to break big files into manageable parts. These...
RPMPackage python2-z3c-batching-2.2-1.lbn36.noarch
This package provides simple sequence batching. Detailed Documentation .. contents::Simple Batching This module implements a simple batching mechanism that allows you to split a large sequence into smaller batches. Let's start by creating a simple list, which will be our full sequence:Batch on empty root: >>> from z3c.batching.batch import Batch >>> batch Batch([], size3) >>> len(batch) >>>...
RPMPackage python2-z3c-autoinclude-0.4.1-1.lbn36.noarch
This package adds two new ZCML directives to automatically detect ZCML files to include: "includeDependencies" and "includePlugins".When you want to include a Zope-based package in your application, you have to repeat yourself in two places: you have to add the package itself (in a setup.py, buildout, etc) and you also have to include its ZCML with an <include> directive or a package- includes...