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 import BaseRenderer from zope.app.pagetemplate.viewpagetemplatefile import ViewPageTemplateFile class MyCustomRenderer(BaseRenderer): title = 'My Custom Renderer' template = ViewPageTemplateFile('path/to/template.pt')
ZCML:
<configure xmlns="http://namespaces.zope.org/zope"> <adapter name="mycustomrenderer" factory=".package.MyCustomRenderer"/> </configure>
Extending portlet schema
You can also extend the portlet schema with additional fields by setting the ‘schema’ attribute in the renderer class.
Sample code:
from collective.portlet.collectionmultiview import BaseRenderer from zope.app.pagetemplate.viewpagetemplatefile import ViewPageTemplateFile from zope import schema from zope.interface import Interface class IExtraFields(Interface): my_extra_field = schema.TextLine(title=u'Extra field') class MyCustomRenderer(BaseRenderer): title = 'My Custom Renderer' schema = IExtraFields template = ViewPageTemplateFile('path/to/template.pt')
Changelog
2.0 (2012-03-20)
Added mechanism for additional views to extend the portlet schema [kagesenshi]
Massive code cleanups [kagesenshi]
CREDIT: changes above funded by cis-india.org
1.1.2 (2011-06-06)
Plone 4.1 compat [aclark]
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 (2010-12-19)
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-2.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c4db3b93496bb1577e31a7a3a61ab1524e2a079766f15fa5ee31559ee4aee4f |
|
MD5 | e45a5abf380b513cb0acc58faf55a774 |
|
BLAKE2b-256 | 60124dea1a253c86aaa739aecf17040c0448524a01c9098c2df45e9d472f633b |