2010
Sub-archives
Jun 22, 2010
Injecting Plone variables into javascript
I needed access to Plone variables (specifically portal_url) from within javascript. So, I created a browser view and python script that outputs the necessary variables, and registered the view in jsregistry.xml. This turned out to be a rather simple solution.
Step 1: Create a class to output the javascript
I created a file in src/my.product/my/product/browser called CommonUtils.py and added a class GlobalJS with a __call__ method that returns a string containing the javascript. __call__ sets the content-type, creates the string containing the variable, and returns the string.
class GlobalJS(BrowserView):
def __call__(self,REQUEST,RESPONSE):
RESPONSE.setHeader('Content-Type', 'application/javascript')
js_string = "var portal_url = '%s';" % (self.context.portal_url())
return js_string
Step 2: Create a browser view pointing to the class
In src/my.product/my/product/browser/configure.zcml, I added a browser view pointing to GlobalJS, gave it a name, and added a permission. Note that the name of the file containing GlobalJS is CommonUtils.py
<browser:view for="*" name="global_js.js" class=".CommonUtils.GlobalJS" permission="zope2.View" />
Step 3: Register the view in javascript registry
Here, I register the browser view in src/my.product/my/product/profiles/default/jsregistry.xml. I needed access to portal_url before jquery was loaded, so I added the insert-before property. Note that the id is the same as the name registered in the browser view.
<javascript id="global_js.js" cacheable="True" compression="safe" cookable="True" enabled="True" expression="" inline="True" insert-before="jquery.js"/>
Now, global_js.js is loaded on every page and I have access to portal_url from within javascript.
Hope this helps someone.
Apr 19, 2010
Colorado World Plone Day - 2010
Wednesday, April 28, Noon: Colorado World Plone Day will be held at the National Renewable Energy Laboratory's Visitors Center in Golden, Colorado
This year's Colorado World Plone Day event will be held at the National Renewable Energy Laboratory's (NREL) Visitors Center in beautiful Golden, Colorado, and will be presented as part of NREL's Power Lunch series.
Presenters will talk about various features of Plone, demo websites using Plone, and field any questions people may have.
So far, this year's presenters are:
- Kurt Bendl - Contractor at NREL
- Dan Timmons - CU, Boulder
- Chris Crownhart - Core Software Group
The presentations will last from approximately 12:00pm - 12:45pm, followed by a 15 minute question/answer period.
For those of you who need to get back to work, we will break shortly. For those of you who wish to stick around to see some developer oriented presentations, and/or to discuss Plone's features in more depth, we will have the room for a couple more hours.
Direction to the NREL Visitors Center can be found at: http://www.nrel.gov/visitors_center/contact_visit.html
The Power Lunch series is a brown bag style presentation series, so please bring a sandwich and come hang out with us for an hour.
For more information:
- See: http://www.coresoftwaregroup.com/colorado-world-plone-day-2010
- Contact Chris Crownhart at 303/809-1001
Jan 26, 2010
Overriding the Title tag in Plone 3
The default title for a Plone 3 site has the page title on the left and portal title on the right, separated by an em dash. I needed to change that for a project. This how-to describes a process for overriding the page title of a buildout based Plone 3 site.
Quick Overview
You need to override the plone.htmlhead.title viewlet and create a class to render your title. The default version of the viewlet is defined in [eggs]/plone/app/layout/configure.zcml, and the class is defined in common.py. You'll need a few more things from common.py too. Override the viewlet in your own [theme]/browser/configure.zcml file, and add the location of your new class.
Getting Started
I needed to override a viewlet, but didn't know which one. A quick grep found a reference to the plone.htmlhead viewlet manager, and then one to the plone.htmlhead.title viewlet. Viewlets are found in the plone/app/layout/viewlets/configure.zcml file within the eggs area of your buildout. Here is the specific code in configure.zcml.
...
<browser:viewlet
name="plone.htmlhead.title"
manager=".interfaces.IHtmlHead"
class=".common.TitleViewlet"
permission="zope2.View"
/>
...
In this case, the plone.htmlhead.title viewlet references a class called .common.TitleViewlet. This means a file--in the same directory as configure.zcml, named common.py contains a class named TitleViewlet. Here is the TitleViewlet code from common.py.
class TitleViewlet(ViewletBase):
...
def index(self):
portal_title = safe_unicode(self.portal_title())
page_title = safe_unicode(self.page_title())
if page_title == portal_title:
return u"<title>%s</title>" % (escape(portal_title))
else:
return u"<title>%s — %s</title>" % (
escape(safe_unicode(page_title)),
escape(safe_unicode(portal_title)))
In the index method at the bottom, Plone sets the value of the <title> tag.
If the page title and the portal title are the same, the portal title is used. If not, both are used, with page title on the left and portal title on the right.
We needed to switch it, so that portal title was on the left, and page title was on the right.
What we did
To override the title viewlet, I created an entry in my theme's browser/configure.zcml file.
<!-- Our custom title viewlet -->
<browser:viewlet
name="plone.htmlhead.title"
manager="plone.app.layout.viewlets.interfaces.IHtmlHead"
class=".myTitleViewlet.TitleViewlet"
layer=".interfaces.IThemeSpecific"
permission="zope2.View"
/>
Notice that there is a new layer statement, and that the manager line includes the complete path to IHtmlHead. The class statement now points to our new class containing code to override the title.
Here is the code from myTitleViewlet.py.
from zope.interface import implements
from zope.component import getMultiAdapter
from zope.viewlet.interfaces import IViewlet
from zope.deprecation.deprecation import deprecate
from Products.CMFPlone.utils import safe_unicode
from Products.Five.browser import BrowserView
from cgi import escape
from plone.app.layout.viewlets.common import ViewletBase
class TitleViewlet(ViewletBase):
...
def index(self):
portal_title = safe_unicode(self.portal_title())
page_title = safe_unicode(self.page_title())
if page_title == portal_title:
return u"<title>%s</title>" % (escape(portal_title))
else:
return u"<title>%s | %s</title>" % (
escape(safe_unicode(portal_title)),
escape(safe_unicode(page_title)))
I needed some of the imports from the top of common.py, and added one of my own for ViewletBase. The only code that really changed is the else clause, where the order of portal_title and page_title are switched, and the em dash is replaced by a pipe (|).
A great reference for overriding the <title> tag is HTML Head Title page which is part of the Plone Theme Reference.

