Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install megrok.pagetemplate

How to install megrok.pagetemplate

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install megrok.pagetemplate
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
0.7 Available View build log
0.6 Available View build log
0.5 Available View build log
Windows (64-bit)
0.7 Available View build log
0.6 Available View build log
0.5 Available View build log
Mac OS X (10.5+)
0.7 Available View build log
0.6 Available View build log
0.5 Available View build log
Linux (32-bit)
0.7 Available View build log
0.6 Available View build log
0.5 Available View build log
Linux (64-bit)
0.7 Available View build log
0.6 Available View build log
0.5 Available View build log
 
License
GPL
Lastest release
version 0.7 on Feb 1st, 2011

Introduction

megrok.pagetemplate is a thin Grok layer above zope.pagetemplate package. It allows the developper to register IPageTemplate components using grokked components. The syntax is meant to be very simple and readable. megrok.pagetemplate only provides one component named PageTemplate and uses the basic grokcore.view directives : name, view, context, layer. To make it even simplier and straightforward, it uses the grokcore.view template registry to register the template files associated to the pagetemplate component.

Getting started

First, we import our dependencies:

>>> import grokcore.view as view
>>> import megrok.pagetemplate as pt
>>> from grokcore.component.testing import grok, grok_component

A complete yet self-explanatory example

To get started with the code itself, let's explain the concept behind the PageTemplate component. The display is usually handled by the a dedicated component: the View. The View is a multi adapter, adapting the context and the request. It provides a rendering method (__call__, usually). If we want to customize a View, we need to subclass it or override it. In both case, we end up with a new View and some code might have to be duplicated.

The PageTemplate component allows you to interact at the rendering level. This new component implements the zope.pagetemplate IPageTemplate interface and is registered as a multi adapter, adapting a View and a Layer (request type). This PageTemplate can be named, for more customization possibilities.

Let's build a concrete example to get into the concept. First, we need a context. Our usecase will be to provide different renderings for an adorable animal : the Mammoth. First, let's create our mammoth and a simple view that displays it:

>>> from zope.component import getMultiAdapter
>>> from zope.pagetemplate.interfaces import IPageTemplate

>>> class Mammoth(view.Context):
...     """A furry pachyderm
...     """
...     nickname = u"Grokky"


>>> class MammothView(view.View):
...     """A view that display a mammoth
...     """
...     view.context(Mammoth)
...
...     def update(self):
...         self.mammoth_name = u"My name is %s." % self.context.nickname
...
...     def render(self):
...         template = getMultiAdapter((self, self.request), IPageTemplate)
...         return template()

>>> grok_component('my_mammoth_view', MammothView)
True

As we can see here, the View render method is a call to the PageTemplate component. It will render the template found by the registry lookup.

To be complete, here, we'll provide a IPageTemplate component:

>>> class NakedMammoth(pt.PageTemplate):
...     """A mammoth shown in its simpliest apparel
...     """
...     pt.view(MammothView)
...     template = view.PageTemplate(
...        '<span tal:replace="view/mammoth_name" /> I am naked !'
...        )

>>> grok_component('NakedMammoth', NakedMammoth)
True

Now that our template is registered, we can try to summon the view and to render it:

>>> from zope.publisher.browser import TestRequest
>>> request = TestRequest()
>>> mammoth = Mammoth()

>>> mnv = getMultiAdapter((mammoth, request), name="mammothview")
>>> print mnv()
My name is Grokky. I am naked !
<BLANKLINE>

Our Mammoth is rendered as expected. Though, we cannot decently leave this creature naked. It needs some fur to face the harsh temperature of the Siberian winter.

In order to customize our Mammoth rendering, to change it from Naked to Furry, we'll create a skin on which we'll register our new 'furry' template component:

>>> from zope.publisher.interfaces import browser
>>> class IFurryLayer(browser.IDefaultBrowserLayer):
...     """A layer for furry animals.
...     """
>>> furry_request = TestRequest(skin=IFurryLayer)


>>> class FurryMammoth(pt.PageTemplate):
...     """A mammoth shown in its simpliest apparel
...     """
...     pt.view(MammothView)
...     pt.layer(IFurryLayer)
...     template = view.PageTemplate(
...        '<span tal:replace="view/mammoth_name" /> I am all furry !'
...        )

>>> grok_component('FurryMammoth', FurryMammoth)
True

Our new template registered, we are now able to test if everything worked as intended. Using the new skin, our Mammoth should now be furry:

>>> mfv = getMultiAdapter((mammoth, furry_request), name="mammothview")
>>> print mfv()
My name is Grokky. I am all furry !
<BLANKLINE>

Note - we can query our component with a very convenient function:

>>> print pt.getPageTemplate(mfv, furry_request)
<megrok.pagetemplate.components.ViewPageTemplate object at ...>

Awesome. Our Mammoth is now fully prepared to face the cold. Though, let's make sure the simpliest request strip the animal from its warm hairs:

>>> mnv = getMultiAdapter((mammoth, request), name="mammothview")
>>> print mnv()
My name is Grokky. I am naked !
<BLANKLINE>

That works. Enjoy !

Changelog

0.7 (2011-01-31)

  • We now use the latest changes in the grokcore.view package and the standalone template grokker, to avoid reimplementing the whole mechanism.
  • Updated to be used with Grok 1.3+

0.6 (2010-11-10)

  • Tested for the latest grokcore packages.
  • Dependencies to grokcore.viewlet and zope.testing removed.

0.5 (2010-05-27)

  • Cleaned up the code to respect the strict pep8. Removed unused imports.
  • Tested for Grok 1.1

0.4.1 (2010-02-22)

  • The MANIFEST has been updated so the 'templates' folder of the tests module is now part of the source release (thus the tests now run correctly).

0.4 (2010-02-21)

  • Cleaned up the dependencies, to get rid of all the zope.app artifacts.
  • Cleaned up the imports and tests.

0.3 - Beta3 Release

  • Modified tests to import all the directives needed directly from the package megrok.pagetemplate itself. [trollfot]
  • Added a convenient function getPageTemplate to query the page template component.

0.2 - Beta2 Release

  • megrok.pagetemplate has been upgraded to work with the latest grokcore.view (1.12.1). Tests has been corrected and CodeView is gone. [trollfot]

0.1 - Beta1 Release

  • Initial release [trollfot]

Subscribe to package updates

Last updated Feb 1st, 2011

Download Stats

Last month:2

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.