Viewlets¶
Description
Viewlets are parts of the page in Plone page rendering process. You can create, hide and shuffle them freely.
- Introduction
- Finding viewlets
- Creating a viewlet
- Re-using code from a View
- Creating a viewlet manager
- Viewlet behavior
- Conditionally rendering viewlets
- Rendering viewlet by name
- Rendering viewlets with accurate layout
- Viewlets for one page only
- <head> viewlets
- Finding viewlets programmatically
- Poking viewlet registrations programmatically
Introduction¶
Viewlets are view snippets which will render a part of the HTML page. Viewlets provide conflict-free way to contribute new user-interface actions and HTML snippets to Plone pages.
Each viewlet is associated with a viewlet manager. To add viewlets to your HTML code you first need to add them to a viewlet manager, which allows you to shuffle viewlets around through-the-web.
What viewlets do¶
- Viewlets are managed using /@@manage-viewlets page
- Viewlets can shown and hidden through-the-web
- Viewlets can be reordered (limited to reordering within container in Plone 3.x)
- Viewlets can be registered and overridden in a theme specific manner using layers
- Viewlets have update() and render() methods
- Viewlets should honour zope.contentprovider.interfaces.IContentProvider call contract.
A viewlet can be configured so that it is only available for:
-
a certain interface, typically a content type (
for=
in ZCML) -
a certain view (
view=
in ZCML)
More info
Finding viewlets¶
There are two through-the-web tools to start looking what viewlets are available on your installation. The available viewlets may depend on installed Plone version and installed add-ons.
-
The
portal_view_customizations
tool in ZMI will show you viewlet registrations (and the viewlet managers they are registered for). As with views, you can hover over the viewlet name to see where it is registered in a tool tip. - To discover the name of a particular viewlet, you can use the @@manage-viewlets view, e.g. http://localhost:8080/plone/@@manage-viewlets.
Creating a viewlet¶
A viewlet consists of
- Python class
- Page template (.pt) file
- A browser layer defining which add-on product must be installed, so that the viewlet is rendered
- A related Grok or ZCML directives to register the viewlet to a correct viewlet manager with a correct layer
Re-using code from a View¶
In the case where you might want a Viewlet and View to
share the same code, remember that the View instance is
available in the Viewlet under the
view
attribute.
Thus, you can use
self.view
to get the view, and then use its methods.
Stock viewlets¶
These can be found in plone.app.layout.viewlet module.
The language selector lives in plone.app.i18n.locales.browser, but it is a view. Don't know why.
Creating a viewlet using Grok¶
Grok
framework
allows you to register a viewlet easily using Python
directives.
It is recommended that you use
Dexterity
ZopeSkel
add-on
product
code
skeleton
where you add this code.
Create yourcomponent.app/yourcomponent/app/browser/viewlets.py:
"""
Viewlets related to application logic.
"""
# Zope imports
from Acquisition import aq_inner
from zope.interface import Interface
from five import grok
from zope.component import getMultiAdapter
# Plone imports
from plone.app.layout.viewlets.interfaces import IHtmlHead
from yourcompany.app.behavior.lsmintegration import ISomeDexterityBehavior
# The viewlets in this file are rendered on every content item type
grok.context(Interface)
# Use templates directory to search for templates.
grok.templatedir('templates')
class JavascriptSnippet(grok.Viewlet):
""" A viewlet which will include some custom code in <head> if the condition is met """
grok.viewletmanager(IHtmlHead)
def available(self):
""" Check if we are in a specific content type.
Check that the Dexterity content type has a certain
behavior set on it through Dexterity settings panel.
"""
try:
avail = ISomeDexterityBehavior(self.context)
except TypeError:
return False
return True
Then create folder
yourcomponent.app/yourcomponent/app/browser/templates
where you add the related
javascripthead.pt
:
<tal:extra-head omit-tag="" condition="viewlet/available">
<meta name="something" content="your custom meta">
</tal:extra-head>
More info
Creating a viewlet manager¶
Viewlet managers contain viewlets. A viewlet manager is itself a Zope 3 interface which contains an OrdereredViewletManager implementation. OrderedViewletManagers store the order of the viewlets in the site database and provide the fancy /@@manage-viewlets output.
A viewlet manager can be rendered in a page template code using the following expression:
<div tal:replace="structure provider:viewletmanagerid" />
Each viewlet manager allows you to shuffle viewlets inside
a viewlet manager. This is done by using
/@@manage-viewlets
view. These settings are stored in the site database, so a
good practice is to export
viewlets.xml
using
portal_setup
and then include the necessary bits of this
viewlets.xml
with your add-on installer so that when your add-on is
installed, the viewlet configuration is changed
accordingly.
Note
You cannot move viewlets between viewlet managers. I know it sucks, but life is hard and Plone is harder. Hide viewlets in one manager using /@@manage-viewlets and viewlets.xml export, then re-register the same viewlet to a new manager.
Viewlet managers are based on zope.viewlet.manager.ViewletManager and plone.app.viewletmanager.manager.OrderedViewletManager.
More info
- http://grok.zope.org/doc/current/reference/components.html?highlight=viewlet#grok.ViewletManager
- http://svn.zope.org/zope.viewlet/trunk/src/zope/viewlet/viewlet.py?rev=113069&view=auto
- http://plone.org/documentation/manual/theme-reference/elements/viewletmanager/anatomy/
Creating a viewlet manager: Grok way¶
Recommended if you want to keep the number of files and lines of XML and Python to a minimum.
An example here for related Python code:
* http://code.google.com/p/plonegomobile/source/browse/gomobiletheme.basic/trunk/gomobiletheme/basic/viewlets.py#80
Creating a viewlet manager: ZCML way¶
For those who want to write XML.
Usually viewlet managers are dummy interfaces and the
actual implementation comes from
plone.app.viewletmanager.manager.OrderedViewletManager
.
In this example we put two viewlets in a new viewlet manager so that we can properly CSS float then and close this float.
Note
This example uses extensive Python module nesting: plonetheme.yourtheme.browser.viewlets is just too deep. You really don't need to do some many levels, but the orignal plone3_theme paster templates do it in bad way. One of Python golden rules is that flat is better than nested. You can just dump everything to the root of your plonetheme.yourtheme package.
In your
browser/viewlets/manager.py
or similar file add:
<browser:viewletManager
name="plonetheme.yourtheme.headerbottommanager"
provides="plonetheme.yourtheme.browser.viewlets.manager.IHeaderBottomViewletManager"
class="plone.app.viewletmanager.manager.OrderedViewletManager"
layer="plonetheme.yourtheme.browser.interfaces.IThemeSpecific"
permission="zope2.View"
template="headerbottomviewletmanager.pt"
/>
Then in
browser/viewlets/configure.zcml
:
<browser:viewletManager
name="plonetheme.yourock.browser.viewlets.MyViewletManager"
provides=".viewlets.MyViewletManager"
class="plone.app.viewletmanager.manager.OrderedViewletManager"
layer="plonetheme.yourock.interfaces.IThemeLayer"
permission="zope2.View"
/>
Optionally you can include a template which renders some wrapping HTML around viewlets. browser/viewlets/headerbottomviewletmanager.pt:
<div id="header-bottom">
<tal:comment replace="nothing">
<!-- Rendeder all viewlets inside this manager.
Pull viewlets out of the manager and render then one-by-one
-->
</tal:comment>
<tal:viewlets repeat="viewlet view/viewlets">
<tal:viewlet replace="structure python:viewlet.render()" />
</tal:viewlets>
<div style="clear:both"><!-- --></div>
</div>
And then re-register some stock viewlets against your new viewlet manager in browser/viewlets/configure.zcml:
<!-- Re-register two stock viewlets to the new manager -->
<browser:viewlet
name="plone.path_bar"
for="*"
manager="plonetheme.yourtheme.browser.viewlets.manager.IHeaderBottomViewletManager"
layer="plonetheme.yourtheme.browser.interfaces.IThemeSpecific"
class="plone.app.layout.viewlets.common.PathBarViewlet"
permission="zope2.View"
/>
<!-- This is a customization for rendering the a bit different language selector -->
<browser:viewlet
name="plone.app.i18n.locales.languageselector"
for="*"
manager="plonetheme.yourtheme.browser.viewlets.manager.IHeaderBottomViewletManager"
layer="plonetheme.yourtheme.browser.interfaces.IThemeSpecific"
class=".selector.LanguageSelector"
permission="zope2.View"
/>
Now, we need to render our viewlet manager somehow. One
place to do it is in a
main_template.pt
, but because we need to add this HTML output to a
header section which is produced by
another viewlet manager, we need to create a
new viewlet just for rendering our viewlet manager. Yo
dawg - we put viewlets in your viewlets so you can
render viewlets!
browser/viewlets/headerbottom.pt
:
<tal:comment replace="nothing">
<!-- Render our precious viewlet manager -->
</tal:comment>
<tal:render-manager replace="structure provider:plonetheme.yourtheme.headerbottommanager" />
Only six files needed to change a bit of HTML code -
welcome to the land of productivity! On the top of this
you also need to create a new
viewlets.xml
export for your theme.
After all this ZCML typing you probably should just look the grok example above.
More info
Viewlet behavior¶
Viewlets have two important methods
- update() - set up all variables
- render() - generate the resulting HTML code by evaluating the template with context variables set up in update()
These methods should honour zope.contentprovider.interfaces.IContentProvider call contract.
See
- http://svn.zope.org/zope.contentprovider/trunk/src/zope/contentprovider/interfaces.py?rev=98212&view=auto
- https://github.com/plone/plone.app.layout/blob/master/plone/app/layout/viewlets/common.py
Creating a viewlet using Python code and ZCML¶
Here is an example code which extends an existing Plone base viewlet (found from plone.app.layout.viewlets.base package) and then puts this viewlet to a one of viewlet managers using ZCML.
Example Python code for viewlets.py:
"""
Facebook like viewlet for Plone.
http://mfabrik.com
"""
import urllib
from plone.app.layout.viewlets import common as base
class LikeViewlet(base.ViewletBase):
""" Add a Like button
http://developers.facebook.com/docs/reference/plugins/like
"""
def contructParameters(self):
""" Create HTTP GET query parameters send to Facebook used to render the button.
href=http%253A%252F%252Fexample.com%252Fpage%252Fto%252Flike&layout=standard&show_faces=true&width=450&action=like&font&colorscheme=light&height=80
"""
context = self.context.aq_inner
href = context.absolute_url()
params = {
"href" : href,
"layout" : "standard",
"show_faces" : "true",
"width" : "450",
"height" : "40",
"action" : "like",
"colorscheme" : "light",
}
return params
def getIFrameSource(self):
"""
@return: <iframe src=""> string
"""
params = self.contructParameters()
return "http://www.facebook.com/plugins/like.php" + "?" + urllib.urlencode(params)
def getStyle(self):
""" Construct CSS style for Like-button IFRAME.
Use width and height from contstructParameters()
style="border:none; overflow:hidden; width:450px; height:80px;"
@return: style="" for <iframe>
"""
params = self.contructParameters()
return "margin-left: 10px; border:none; overflow:hidden; width:%spx; height:%spx;" % (params["width"], params["height"])
Then a sample page template (like.pt). You can use TAL template variable view to refer to your viewlet class instance:
<iframe scrolling="no"
frameborder="0"
allowTransparency="true"
tal:attributes="src view/getIFrameSource; style view/getStyle"
>
</iframe>
Registering a viewlet using ZCML¶
Example configuration ZCML snippets below. You usually <viewlet> to browser/configure.zcml folder.
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:five="http://namespaces.zope.org/five"
xmlns:browser="http://namespaces.zope.org/browser"
xmlns:genericsetup="http://namespaces.zope.org/genericsetup"
i18n_domain="mfabrik.like">
<browser:viewlet
name="mfabrik.like"
manager="plone.app.layout.viewlets.interfaces.IBelowContent"
template="like.pt"
layer="mfabrik.like.interfaces.IAddOnInstalled"
permission="zope2.View"
/>
</configure>
Conditionally rendering viewlets¶
There are two primary methods to render viewlets only on some pages
- Register viewlet against some marker interface or content type class - the viewlet is rendered on this content type only. You can use dynamic marker interfaces to toggle interface on some individual pages through ZMI
- Hard-code a condition to your viewlet in Python code.
Below is an example of overriding a render() method to conditionally render your viewlet using Grok viewlets.
Viewlet code:
from zope.interface import Interface
from five import grok
from Products.CMFCore.interfaces import IContentish
from plone.app.layout.viewlets.interfaces import IAboveContentTitle
class TopTabNavigation(grok.Viewlet):
"""
"""
grok.context(Interface)
grok.viewletmanager(IAboveContentTitle)
def getTabSources(self):
""" List content items in the folder of this item.
"""
parent = self.context.aq_parent
for obj in parent.objectValues():
if IContentish.providedBy(obj):
yield obj
def getTabData(self):
"""
Generate dict of data needed to render navigation tabs.
"""
self.tabs = self.getTabSources()
published = self.request.get("PUBLISHED", None)
if hasattr(published, "context"):
published = published.context
for t in self.tabs:
active = (t == published)
data = {
"url" : t.absolute_url(),
"class" : "navbar_selected" if active else "navbar_normal",
"title" : t.Title(),
"id" : t.getId()
}
yield data
def hasTabs(self):
"""
Defined in dynamicpage.py
"""
return getattr(self.context, "showTabs", False)
Page template code
<div class="navmenubar navmenubar-viewlet" tal:condition="viewlet/hasTabs">
<ul id="navigationBar">
<tal:tab repeat="tab viewlet/getTabData">
<li tal:attributes="class tab/class; id tab/id">
<a tal:attributes="href tab/url" tal:content="tab/title" />
</tal:tab>
<li class="visualClear"><!-- --></li>
</ul>
</div>
Below is an example of overriding a render() method to conditionally render your viewlet using Zope 3 viewlets:
import Acquisition
from zope.component import getUtility
from plone.app.layout.viewlets import common as base
from plone.registry.interfaces import IRegistry
class LikeViewlet(base.ViewletBase):
""" Add a Like button
http://developers.facebook.com/docs/reference/plugins/like
"""
def isEnabledOnContent(self):
"""
@return: True if the current content type supports Like-button
"""
registry = getUtility(IRegistry)
content_types = registry['mfabrik.like.content_types']
# Don't assume that all content items would have portal_type attribute
# available (might be changed in the future / very specialized content)
current_content_type = portal_type = getattr(Acquisition.aq_base(self.context), 'portal_type', None)
# Note that plone.registry keeps values as unicode strings
# make sure that we have one also
current_content_type = unicode(current_content_type)
return current_content_type in content_types
def render(self):
""" Render viewlet only if it is enabled.
"""
# Perform some condition check
if self.isEnabledOnContent():
# Call parent method which performs the actual rendering
return super(LikeViewlet, self).render()
else:
# No output when the viewlet is disabled
return ""
Rendering viewlet by name¶
Below is a complex example how to expose viewlets without going through a viewlet manager.
See collective.fastview for updates and more information.
from Acquisition import aq_inner
import zope.interface
from plone.app.customerize import registration
from Products.Five.browser import BrowserView
from zope.traversing.interfaces import ITraverser, ITraversable
from zope.publisher.interfaces import IPublishTraverse
from zope.publisher.interfaces.browser import IBrowserRequest
from zope.viewlet.interfaces import IViewlet
from zExceptions import NotFound
class Viewlets(BrowserView):
""" Expose arbitrary viewlets to traversing by name.
Exposes viewlets to templates by names.
Example how to render plone.logo viewlet in arbitrary template code point::
<div tal:content="context/@@viewlets/plone.logo" />
"""
zope.interface.implements(ITraversable)
def getViewletByName(self, name):
""" Viewlets allow through-the-web customizations.
Through-the-web customization magic is managed by five.customerize.
We need to think of this when looking up viewlets.
@return: Viewlet registration object
"""
views = registration.getViews(IBrowserRequest)
for v in views:
if v.provided == IViewlet:
# Note that we might have conflicting BrowserView with the same name,
# thus we need to check for provided
if v.name == name:
return v
return None
def setupViewletByName(self, name):
""" Constructs a viewlet instance by its name.
Viewlet update() and render() method are not called.
@return: Viewlet instance of None if viewlet with name does not exist
"""
context = aq_inner(self.context)
request = self.request
# Perform viewlet regisration look-up
# from adapters registry
reg = self.getViewletByName(name)
if reg == None:
return None
# factory method is responsible for creating the viewlet instance
factory = reg.factory
# Create viewlet and put it to the acquisition chain
# Viewlet need initialization parameters: context, request, view
try:
viewlet = factory(context, request, self, None).__of__(context)
except TypeError:
# Bad constructor call parameters
raise RuntimeError("Unable to initialize viewlet %s. Factory method %s call failed." % (name, str(factory)))
return viewlet
def traverse(self, name, further_path):
"""
Allow travering intoviewlets by viewlet name.
@return: Viewlet HTML output
@raise: RuntimeError if viewlet is not found
"""
viewlet = self.setupViewletByName(name)
if viewlet is None:
raise NotFound("Viewlet does not exist by name %s for theme layer %s" % name)
viewlet.update()
return viewlet.render()
Rendering viewlets with accurate layout¶
Default viewlet managers render viewlets as HTML code string concatenation, in the order of appearance. This is unsuitable to build complex layouts.
Below is an example which defines master viewlet HeaderViewlet which will place other viewlets into the manually tuned HTML markup below.
theme/browser/header.py:
from Acquisition import aq_inner
# Use template files with acquisition support
from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile
# Import default Plone viewlet classes
from plone.app.layout.viewlets import common as base
# Import our customized viewlet classes
# This is important as the header.py file will ignore much of the settings
# inside the configure.zcml file describing the affected viewlets. Without
# creating this file, your viewlets will render with Plone's default settings,
# which will result in your custom changes being ignored.
import plonetheme.something.browser.common as something
def render_viewlet(factory, context, request):
""" Helper method to render a viewlet """
context = aq_inner(context)
viewlet = factory(context, request, None, None).__of__(context)
viewlet.update()
return viewlet.render()
class HeaderViewlet(base.ViewletBase):
""" Render header with special markup.
Though we render viewlets internally we not inherit from the viewlet manager,
since we do not offer the option for the site manager or integrator
shuffle viewlets - they are fixed to our templates.
"""
index = ViewPageTemplateFile('header_items.pt')
def update(self):
base.ViewletBase.update(self)
# Dictionary containing all viewlets which are rendered inside this viewlet.
# This is populated during render()
self.subviewlets = {}
def renderViewlet(self, viewlet_class):
""" Render one viewlet
@param viewlet_class: Class which manages the viewlet
@return: Resulting HTML as string
"""
return render_viewlet(viewlet_class, self.context, self.request)
def render(self):
# Customized viewlet
self.subviewlets["logo"] = self.renderViewlet(something.SomethingLogoViewlet)
# Customized viewlet
self.subviewlets["sections"] = self.renderViewlet(something.SomethingGlobalSectionsViewlet)
# Base Plone viewlet
self.subviewlets["search"] = self.renderViewlet(base.SearchBoxViewlet)
# Customized viewlet
self.subviewlets["site_actions"] = self.renderViewlet(something.SiteActionsViewlet)
# Call template to perform rendering
return self.index()
theme/browser/header_items.pt
<header>
<div id="logo">
<div tal:replace="structure view/subviewlets/logo" />
</div>
<nav>
<div tal:replace="structure view/subviewlets/sections" />
</nav>
<div id="search">
<div tal:replace="structure view/subviewlets/search" />
<div id="actions">
<div tal:replace="structure view/subviewlets/site_actions" />
</div>
</div>
</header>
theme/browser/configure.zcml
<configure xmlns="http://namespaces.zope.org/zope"
xmlns:browser="http://namespaces.zope.org/browser"
xmlns:plone="http://namespaces.plone.org/plone"
xmlns:zcml="http://namespaces.zope.org/zcml"
>
<!--
Public localizable site header
See viewlets.xml for order/hidden
-->
<!-- Changes class and provides attributes to work with our changes -->
<browser:viewletManager
name="plone.portalheader"
provides=".interfaces.ISomethingHeader"
permission="zope2.View"
class=".header.HeaderViewlet"
layer=".interfaces.IThemeSpecific"
/>
<!-- Site actions-->
<browser:viewlet
name="plonetheme.something.site_actions"
class=".common.SiteActionsViewlet"
permission="zope2.View"
template="templates/site_actions.pt"
layer=".interfaces.IThemeSpecific"
allowed_attributes="site_actions"
manager=".interfaces.ISomethingHeader"
/>
<!-- The logo; even though we include the template attribute, it will be ignored.
Needs to be set again in common.py -->
<browser:viewlet
name="plonetheme.something.logo"
class=".common.SomethingLogoViewlet"
permission="zope2.View"
layer=".interfaces.IThemeSpecific"
template="templates/logo.pt"
manager=".interfaces.ISomethingHeader"
/>
<!-- Searchbox -->
<browser:viewlet
name="plone.searchbox"
for="*"
class="plone.app.layout.viewlets.common.SearchBoxViewlet"
permission="zope2.View"
template="templates/searchbox.pt"
layer=".interfaces.IThemeSpecific"
manager=".interfaces.ISomethingHeader"
/>
<!-- First level navigation; even though we include the template attribute, it will be ignored.
Needs to be set again in common.py -->
<browser:viewlet
name="plonetheme.something.global_sections"
for="*"
class=".common.SomethingGlobalSectionsViewlet"
permission="zope2.View"
template="templates/sections.pt"
layer=".interfaces.IThemeSpecific"
manager=".interfaces.ISomethingHeader"
/>
</configure>
theme/browser/templates/portal_header.pt
<div id="portal-header">
<div tal:replace="structure provider:plone.portalheader" />
</div>
theme/browser/interfaces.py code:
from plone.theme.interfaces import IDefaultPloneLayer
from zope.viewlet.interfaces import IViewletManager
class IThemeSpecific(IDefaultPloneLayer):
"""Marker interface that defines a Zope 3 browser layer.
If you need to register a viewlet only for the
"Something" theme, this interface must be its layer
(in theme/viewlets/configure.zcml).
"""
class ISomethingHeader(IViewletManager):
"""Creates fixed layout for Plone header elements.
"""
We need to create this common.py file so we can tell Plone to render our custom templates for these viewlets. Without this piece in place, our viewlets will render with Plone defaults.
theme/browser/common.py code:
from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile
from plone.app.layout.viewlets import common
# You may also use index in place of render for these subclasses
class SomethingLogoViewlet(common.LogoViewlet):
render = ViewPageTemplateFile('templates/logo.pt')
class SomethingSiteActionsViewlet(common.SiteActionsViewlet):
render = ViewPageTemplateFile('templates/site_actions.pt')
class SomethingGlobalSectionsViewlet(common.GlobalSectionsViewlet):
render = ViewPageTemplateFile('templates/sections.pt')
Viewlets for one page only¶
Viewlets can be registered to one special page only using a marker interface. This allow loading a page specific CSS files.
<head> viewlets¶
You can register custom Javascript or CSS files to HTML <head> section using viewlets.
Below is an head.pt which will be injected in
<head>. This examples shows how to dynamically
generate
<script>
elements. Example is taken from
mfabrik.like add-on.
<script type="text/javascript" tal:attributes="src view/getConnectScriptSource"></script>
<script tal:replace="structure view/getInitScriptTag" />
Then you register it against viewlet manager
plone.app.layout.viewlets.interfaces.IHtmlHead
in
configure.zcml
<browser:viewlet
name="mfabrik.like.facebook-connect-head"
class=".viewlets.FacebookConnectJavascriptViewlet"
manager="plone.app.layout.viewlets.interfaces.IHtmlHead"
template="facebook-connect-head.pt"
layer="mfabrik.like.interfaces.IAddOnInstalled"
permission="zope2.View"
/>
viewlet.py code:
class FacebookConnectJavascriptViewlet(LikeButtonOnConnectFacebookBaseViewlet):
""" This will render Facebook Javascript load in <head>.
<head> section is retrofitted only if the viewlet is enabled.
"""
def getConnectScriptSource(self):
base = "http://static.ak.connect.facebook.com/connect.php/"
return base + self.getLocale()
def getInitScriptTag(self):
""" Get <script> which boostraps Facebook stuff.
"""
return '<script type="text/javascript">FB.init("%s");</script>' % self.settings.api_key
def isEnabled(self):
"""
@return: Should this viewlet be rendered on this page.
"""
# Some logic based self.context here whether Javascript should be included on this page or not
return True
def render(self):
""" Render viewlet only if it is enabled.
"""
# Perform some condition check
if self.isEnabled():
# Call parent method which performs the actual rendering
return super(LikeButtonOnConnectFacebookBaseViewlet, self).render()
else:
# No output when the viewlet is disabled
return ""
Finding viewlets programmatically¶
Occasionaly, you may need to get hold of your viewlets in python code, perhaps in tests. Since the availability of a viewlet is ultimately controlled by the viewlet manager to which it has been registered, using that manager is a good way to go
from zope.component import queryMultiAdapter
from zope.viewlet.interfaces import IViewletManager
from Products.Five.browser import BrowserView as View
from my.package.tests.base import MyPackageTestCase
class TestMyViewlet(MyPackageTestCase):
""" test demonstrates that registration variables worked
"""
def test_viewlet_is_present(self):
""" looking up and updating the manager should list our viewlet
"""
# we need a context and request
request = self.app.REQUEST
context = self.portal
# viewlet managers also require a view object for adaptation
view = View(context, request)
# finally, you need the name of the manager you want to find
manager_name = 'plone.portalfooter'
# viewlet managers are found by Multi-Adapter lookup
manager = queryMultiAdapter((context, request, view), IViewletManager, manager_name, default=None)
self.assertIsNotNone(manager)
# calling update() on a manager causes it to set up its viewlets
manager.update()
# now our viewlet should be in the list of viewlets for the manager
# we can verify this by looking for a viewlet with the name we used
# to register the viewlet in zcml
my_viewlet = [v for v in manager.viewlets if v.__name__ == 'mypackage.myviewlet']
self.assertEqual(len(my_viewlet), 1)
Since it is possible to register a viewlet for a specific content type and for a browser layer, you may also need to use these elements in looking up your viewlet
from zope.component import queryMultiAdapter
from zope.viewlet.interfaces import IViewletManager
from Products.Five.browser import BrowserView as View
from my.package.tests.base import MyPackageTestCase
# this time, we need to add an interface to the request
from zope.interface import alsoProvides
# we also need our content type and browser layer
from my.package.content.mytype import MyType
from my.package.interfaces import IMyBrowserLayer
class TestMyViewlet(MyPackageTestCase):
""" test demonstrates that zcml registration variables worked properly
"""
def test_viewlet_is_present(self):
""" looking up and updating the manager should list our viewlet
"""
# our viewlet is registered for a browser layer. Browser layers
# are applied to the request during traversal in the publisher. We
# need to do the same thing manually here
request = self.app.REQUEST
alsoProvides(request, IMyBrowserLayer)
# we also have to make our context an instance of our content type
content_id = self.folder.invokeFactory('MyType', 'my-id')
context = self.folder[content_id]
# and that's it. Everything else from here out is identical to the
# example above.
Poking viewlet registrations programmatically¶
Below is an example how one can poke viewlets registration for a Plone site.
from zope.component import getUtility
from plone.app.viewletmanager.interfaces import IViewletSettingsStorage
def fix_tinymce_viewlets(site):
"""
Make sure TinyMCE viewlet is forced to be in Plone HTML <head> viewletmanager.
For some reason, runnign in our viewlets.xml has no effect so we need to fix this by hand.
"""
# Poke me like this: for i in storage._hidden["Isle of Back theme"].items(): print i
storage = getUtility(IViewletSettingsStorage)
manager = "plone.htmlhead'"
skinname = site.getCurrentSkinName()
# Force tinymce.configuration out of hidden viewlets in <head>
hidden = storage.getHidden(manager, skinname)
hidden = (x for x in hidden if x != u'tinymce.configuration')
storage.setHidden(manager, skinname, hidden)