Grokkers for plone.tiles
Project description
This package provides declarative configuration (grokkers) for the plone.tiles package.
Usage
A basic tile is configured like this:
from five import grok from plone.directives import tiles from my.package import MyMessageFactory as _ from my.package.interfaces import IMyTileSchema class MyTile(tiles.Tile): grok.context(IContext) grok.require('zope2.View') grok.name('my.tile') grok.title(_(u"My title")) grok.description(_(u"My description")) tiles.add_permission('mypackage.AddMyTile') tiles.schema(IMyTileSchema)
Notes
A persistent tile can be configured by deriving from PersistentTile instead of Tile.
The context(), requires(), name(), and layer() directives are used in the same way as they are for a view derived from grok.View.
Templates are associated using the same semantics as are used for views. For example, a tile in mytiles.py defined in the class MyTile would be associated with a template mytiles_templates/mytile.pt by default.
Unlike a view, the name() directive is required and should give a dotted name for the tile by convention.
Dictionary key access (__getitem__()) is defined to work as it does in a tile. In a standard grokked view, it will retrieve a macro from the template. In a tile, it is used as a traversal hook to set the tile id, and subsequently to look up views on the tile. See plone.tiles for details.
Similarly, standard grokked views have a url() method which can be used to construct a URL, possibly with query string parameters. For grokked tiles, this is replaced by a url read-only property, which returns the canonical tile URL, as per plone.tiles.
Changelog
1.0 (2012-06-23)
Initial release [garbas]
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
Hashes for plone.directives.tiles-1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | fda6703e18fc92d499e6b57d84b4673809ac9c63b39d016062ca9f4699d6660a |
|
MD5 | b35d91cf2f5ec02aa70531bf2b274d5e |
|
BLAKE2b-256 | 03e494c757d8db14af63ab5ae5e4b7244766d4c3a7cec113e0b7b68e3fb24a37 |