You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python3-zc-relation-1.1.post2-1.lbn36.noarch
Relation Catalog .. contents::Overview The relation catalog can be used to optimize intransitive and transitive searches for N-ary relations of finite, preset dimensions.For example, you can index simple two-way relations, like employee to supervisor; RDF-style triples of subject-predicate-object; and more complex relations such as subject-predicate-object with context and state. These can be...
RPMPackage python3-zc-recipe-testrunner-2.2-1.lbn36.noarch
****************** Test-Runner Recipe ****************** .. image::
RPMPackage python3-zc-recipe-egg-2.0.7-1.lbn36.noarch
******************************** Buildout Egg-Installation Recipe ********************************.. contents::The egg-installation recipe installs eggs into a buildout eggs directory. It also generates scripts in a buildout bin directory with egg paths baked into them. Change History **************2.0.7 (2018-07-02) - For the 2.0.6 change, we require zc.buildout 2.12.0. The install_requires...
RPMPackage python3-zc-recipe-deployment-1.3.0-1.lbn36.noarch
*********************** Unix Deployment Support ***********************.. contents::The zc.recipe.deployment recipe provides support for deploying applications with multiple processes on Unix systems. (Perhaps support for other systems will be added later.) It creates directories to hold application instance configuration, log and run-time files. It also sets or reads options that can be read...
RPMPackage python3-zc-lockfile-3.0-101.lbn36.noarch
************************* Basic inter-process locks *************************The zc.lockfile package provides a basic portable implementation of interprocess locks using lock files. The purpose if not specifically to lock files, but to simply provide locks with an implementation based on file-locking primitives. Of course, these locks could be used to mediate access to *other* files. For...
RPMPackage python3-zc-customdoctests-1.0.1-29.fc36.noarch
doctest (and recently manuel) provide hooks for using custom doctest parsers. `zc.customdoctests` helps to leverage this to support other languages, such as JavaScript:: js> function double (x) { ... return x*2; ... } js> double(2) 4 And with manuel, it facilitates doctests that mix multiple languages, such as Python, JavaScript, and sh.
RPMPackage python3-zc-catalog-3.0-1.lbn36.noarch
zc.catalog is an extension to the Zope 3 catalog, Zope 3's indexing and search facility. zc.catalog contains a number of extensions to the Zope 3 catalog, such as some new indexes, improved globbing and stemming support, and an alternative catalog implementation. .. contents::3.0 (2019-03-21) - Drop support for Python 3.4 as it reached its end of life.- Add support for Python 3.7 and 3.8a2....
RPMPackage python3-zc-buildout-2.13.8-1.lbn36.noarch
Buildout Buildout is a project designed to solve 2 problems:1. Application- centric assembly and deployment *Assembly* runs the gamut from stitching together libraries to create a running program, to production deployment configuration of applications, and associated systems and tools (e.g. run- control scripts, cron jobs, logs, service registration, etc.). Buildout might be confused with...
RPMPackage python3-z3c-zcmlhook-1.1-1.lbn36.noarch
ethodIntroduction This package provides means of hooking into the Zope (ZCML) configuration Custom ZCML actions -It is sometimes useful to execute a function during the execution of configuration actions, for example to perform one-off configuration that does not warrant a new directive. The <zcml:customAction /> directive is provided for this purpose.For example, you may want to call a...
RPMPackage python3-z3c-unconfigure-1.1-1.lbn36.noarch
Documentation Introduction This package allows you to disable specific bits of ZCML configuration that may occur in other packages. For instance, let's consider a simple ZCML directive that prints strings and a silly one that prints lolcat messages: >>> zcml(""" ... <print msg"Hello World!" /> ... <lolcat who"I" canhas"cheezburger" /> ... """) Hello World! I can has cheezburger?Now let's say...
RPMPackage python3-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 python3-z3c-template-3.2-1.lbn36.noarch
z3c.template :target:
RPMPackage python3-z3c-table-2.2-1.lbn36.noarch
This package provides a modular table rendering implementation for Zope3.
RPMPackage python3-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 python3-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 python3-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 python3-z3c-ptcompat-2.3.0-1.lbn36.noarch
.. contents::Overview :target:
RPMPackage python3-z3c-pt-4.0-1.lbn36.noarch
This is a fast implementation of the ZPT template engine for Zope 3 which uses Chameleon to compile templates to byte-code. The package provides application support equivalent to zope.pagetemplate.
RPMPackage python3-z3c-objpath-1.3-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 python3-z3c-json-0.5.5-1.lbn36.noarch
This package provides basic JSON components like JSON reader and writer utilities and a JSON-RPC client proxy including the transport implementation for Zope3. Detailed Documentation **********************We can use the JSONReader and JSONWriter if we need to convert a data structure to or from JSON syntax -- in other words a EcmaScript mapping object. Let's check the utilities: >>> import...