A collection portlet product which supports multiple views
Project description
Introduction
The collectionmultiview portlet is a collection portlet which supports multiple view modes. It inherits the built-in plone.portlet.collection and extend it with view adapters support.
Writing additional views
Creating an additional view is as simple as writing a class which inherits from CollectionMultiViewBaseRenderer, and register it as a named adapter
Sample code:
from collective.portlet.collectionmultiview.renderers.base import ( CollectionMultiViewBaseRenderer) from zope.app.pagetemplate.viewpagetemplatefile import ViewPageTemplateFile class MyCustomRenderer(CollectionMultiViewBaseRenderer): __name__ = 'My Custom Renderer' template = ViewPageTemplateFile('path/to/template.pt')
ZCML:
<configure xmlns="http://namespaces.zope.org/zope"> <adapter name="mycustomrenderer" factory=".package.MyCustomRenderer"/> </configure>
Changelog
1.1.1 (2011-03-31)
bugfix release. fixed a bug with the renderer selector using title as value instead of id
1.1 (2011-03-27)
Plone4 compatibility
Renderers now may have a human readable __name__
Removed GalleryRenderer as it is broken anyway
Hide unnecessary fields from the base Plone collection portlet.
1.0 (unreleased)
fix permission used for portlet [vangheem]
0.1 (2009-12-31)
Initial 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
Hashes for collective.portlet.collectionmultiview-1.1.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e3d57deb6662e460becd600fa5f7be751d23739397aca3ef99ff3b0dddb5de5 |
|
MD5 | f6b353447f6a44afa522d1a667a3efa3 |
|
BLAKE2b-256 | ae38c2bcc6da388896b35552a236e1312452eb7fcb1efda96c8fbe6a5cda04c3 |