Provides generic interfaces to create content templates using adapters
Project description
Introduction
raptus.contenttemplates allows to provide templates to automate specific tasks. Templates are created by registering an adapter implementing the ITemplate interface for the context the template should be available.
Actions
All currently available actions are located at raptus.contenttemplates.actions, new actions may be created by implementing the IAction interface.
ActionChains
ActionChains are helpful if a list of actions have to be executed in the context of a newly created object. Let’s say one wants to create a document named test-document, mark it private and give read access to the user jsmith and write access to jdoe. The list returned by the template would look like this:
[ActionChain(( CreateContent('test-document', 'Document', {'title': 'Test Document'}), WorkflowTransition('hide'), AddLocalRole('jsmith', 'Reader'), AddLocalRole('jdoe', 'Editor') ))]
ActionChains respect the context returned by actions and use it to execute the preceding action. Actions which create new content, return the newly created object as context. The ActionChain then uses this context to execute the next action.
FieldDataRetriever
FieldDataRetrievers allow to use a field of the provided form as an attribute for an action. If one would like to have the aforementioned template use a form providing the title for the document and have the id generated from that field. The template would have to provide the name for the form and the action list could look like this:
[ActionChain(( CreateContent(FieldDataRetriever('title'), 'Document'), WorkflowTransition('hide'), AddLocalRole('jsmith', 'Reader'), AddLocalRole('jdoe', 'Editor') ))]
Changelog
1.0b3 (2013-12-18)
Changed import zope.app.publisher to zope.browsermenu
1.0b2 (2011-10-18)
Removed PTS utility for Plone >= 4
1.0b1 (2010-10-20)
First public release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file raptus.contenttemplates-1.0b3.zip
.
File metadata
- Download URL: raptus.contenttemplates-1.0b3.zip
- Upload date:
- Size: 20.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3cc5d22fd9f01e8295596f70db49e203952d00723d2445776a11c9f463cbc8fa |
|
MD5 | 83aa53746386a74525ed4ef19ad6eb5e |
|
BLAKE2b-256 | dfbc947e85425b6d2ab3108e04a12618f461b7ff252873115a98638e2efdc2f8 |