Skip to main content

Rendering ZPT macros from python code made easy

Project description

Introduction

This package renders macros from a given page template using pure python.

Sometime you may want to use page templates like code libraries where for each functionality you have one macro. Calling macros is no problem using ZPT use-macro but how do you call macros from pure python code and also pass parameters? Because there do not seems to be an obvious solution for this problem (especially the parameters part) this package was created.

Render macro with name macroname from a given page template:

>>> from anthill.tal.macrorenderer import MacroRenderer
>>> template = ViewPageTemplateFile('template.pt')
>>> renderer = MacroRenderer(template, 'macroname')
>>> print renderer(data={'option1' : 42})

Sometimes you get an exception about not enough context being provided to the renderer (or for prior versions a TypeError).

A fix is easy: Simply add a context=self.context to the MacroRenderer call:

>>> renderer = MacroRenderer(template, 'macroname', context=self.context)

Changelog

0.2.1 (2009-08-24)

0.2 (2009-08-24)

  • Fix for missing context (TypeError exceptions) [spamsch]

0.1 (2009-08-08)

  • Initial release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

anthill.tal.macrorenderer-0.2.1.tar.gz (3.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page