Skip to main content

Grok-like configuration for zope viewlets

Project description

This package provides support to write and register Zope Viewlets directly in Python (without ZCML). It’s designed to be used with grokcore.view which let you write and register Zope Views.

Setting up grokcore.viewlet

This package is set up like the grokcore.component package. Please refer to its documentation for more details. The additional ZCML lines you will need are:

<include package="grokcore.viewlet" file="meta.zcml" />
<include package="grokcore.viewlet" />

Put the first line somewhere near the top of your root ZCML file.

Examples

First we need a view to call our viewlet manager:

from grokcore import viewlet

class Index(viewlet.View):
    pass

index = viewlet.Page Template("""
<html>
  <head>Test</head>
  <body>
    <div tail:content="structure provider:content">
    </div>
  </body>
</html>
""")

After that we could define only a manager which display something:

class Content(viewlet.ViewletManager):
    viewlet.View(Index)

    def render(self):
        return u'<h1>Hello World</h1>'

Or a completely different example:

class AdvancedContent(viewlet.ViewletManager):
    viewlet.name('content')
    viewlet.view(Index)

And some viewlets for that one:

class StaticData(viewlet.Viewlet):
    viewlet.view(Index)
    viewlet.viewletmanager(AdvancedContent)

    def render(self):
        return f'<p> Data from {self.context.id}</p>'

Or:

class SecretData(viewlet.Viewlet):
    viewlet.view(Index)
    viewlet.viewletmanager(AdvancedContent)
    viewlet.require('agent.secret')

secretdata = viewlet.PageTemplate("""
  <p>Nothing to see here.</p>
""")

The way templates are bound to components works exactly the way as in grokcore.view, for more information refer to its documentation.

API Overview

Base classes

ViewletManager

Define a new viewlet manager. You can either provide a render method, a template, which can or not use registered viewlets.

If you define a template, view is added as a reference to the current view for which the manager is rendering in the template’s namespace. It is available as well as an attribute on the manager object.

Viewlet

Define a new viewlet. You can either provide a template or a render method on it. Like in views, you can define an update method to process needed data.

Like for manager, view is added to the template namespace if used. viewletmanager is defined as well as a reference to the manager in the template’s namespace and as an attribute on the viewlet object.

Directives

You can use directives from grokcore.view to register your viewlet or viewlet manager: name, context, layer and require (for security on a viewlet).

To that is added:

view

Select for which view is registered a viewlet or a viewlet manager.

viewletmanager

Select for which viewlet manager is registered a viewlet.

order

Define a rendering order for viewlets in a viewlet manager. This should be a number, the smaller order render first, bigger last.

Additionally, the grokcore.viewlet package exposes the grokcore.component, grokcore.security and grokcore.view APIs.

Changes

5.1 (2026-02-18)

  • Move package metadata from setup.py to pyproject.toml.

  • Add support for Python 3.14.

  • Drop support for Python 3.9.

5.0 (2025-06-18)

  • Replace pkg_resources namespace with PEP 420 native namespace.

4.1 (2025-05-27)

  • Add support for Python 3.12, 3.13.

  • Drop support for Python 3.7, 3.8.

4.0 (2023-08-28)

  • Add support for Python 3.7, 3.8, 3.9, 3.10, 3.11.

  • Drop support for Python 2.7, 3.4, 3.5, 3.6.

3.1.0 (2018-02-05)

  • viewletmanager.viewlets should be a list so we can iterate over it several times in consumer code instead of having to remember it’s an iterable we can only list once.

3.0.1 (2018-01-12)

  • Rearrange tests such that Travis CI can pick up all functional tests too.

3.0.0 (2018-01-04)

  • Python 3 compatibility.

1.11 (2012-09-04)

  • Make the has_render() and has_no_render() symmetrical to those in grokcore.view, grokcore.layout and grokcore.formlib, where a render.base_method attribute is checked.

1.10.1 (2012-05-02)

  • Do not require the role extra from grokcore.security.

1.10 (2012-05-02)

  • Use the component registration api from grokcore.component.

  • Update how the static resources are found on a ViewletManager and a Viewlet, following the new name __static_name__ set by the template association.

1.9 (2011-06-28)

  • Introduce the available() method on viewlet component. The viewlet manager will filter out unavailable viewlet by calling this method. The available() method is called after the viewlet’s update() is called, but before the render() is called.

1.8 (2010-12-16)

  • Update to use TemplateGrokker from grokcore.view to associate viewlet and viewletmanager templates.

1.7 (2010-11-03)

  • The computed default value for the viewletmanager directive is now defined in the directiv itself, not as a separate function that needs to be passed along.

1.6 (2010-11-01)

  • Upped version requirements for martian, grokcore.component, and grokcore.view.

  • Move the order directive to grokcore.component.

  • Move the view directive to grokcore.view.

1.5 (2010-10-18)

  • Make package comply to zope.org repository policy.

  • Update functional tests to use Browser implementation of zope.app.wsgi instead of zope.app.testing.

  • Reduce dependencies (zope.app.pagetemplate no longer necessary).

1.4.1 (2010-02-28)

  • Dropped the dependency on zope.app.zcmlfiles.

  • Cleaned the code to remove unused imports and ensure the pep8 syntax.

  • Updated tests to have a return value consistency. The grokcore.viewlet viewlet manager implementation requires viewlets to return unicode strings. Now, viewlets return unicode strings in the test packages.

1.4 (2010-02-19)

  • Define test requires.

1.3 (2009-09-17)

  • Reverted the use of grokcore.view.CodeView. We now require grokcore.view 1.12.1 or newer. As of grokcore.view 1.12, the CodeView/View separation has been undone.

1.2 (2009-09-16)

  • Remove the reference to the grok.View permission that is no longer in grokcore.security 1.2

  • Use the grok.zope.org/releaseinfo information instead of our own copy of versions.cfg, for easier maintenance.

1.1 (2009-07-20)

  • Adapted tests to new grokcore.view release: switched from View to CodeView.

  • Add grok.View permissions to functional tests (requires grokcore.security 1.1)

1.0 (2008-11-15)

  • Created grokcore.viewlet in November 2008 by factoring zope.viewlet-based components, grokkers and directives out of Grok.

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

grokcore_viewlet-5.1.tar.gz (25.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

grokcore_viewlet-5.1-py3-none-any.whl (36.1 kB view details)

Uploaded Python 3

File details

Details for the file grokcore_viewlet-5.1.tar.gz.

File metadata

  • Download URL: grokcore_viewlet-5.1.tar.gz
  • Upload date:
  • Size: 25.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.12

File hashes

Hashes for grokcore_viewlet-5.1.tar.gz
Algorithm Hash digest
SHA256 dd8fd05b10e43018fbac7fe28f65d7f74706ea8efd49f10e75db00776fcffe18
MD5 c504f0ebabf9155f9c0320bbf93a9c64
BLAKE2b-256 ff98248fc09d7cd0042d8b859e553424b138290584e4eae02d71dc15c7500d91

See more details on using hashes here.

File details

Details for the file grokcore_viewlet-5.1-py3-none-any.whl.

File metadata

  • Download URL: grokcore_viewlet-5.1-py3-none-any.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.12

File hashes

Hashes for grokcore_viewlet-5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 664a9e154f7e1b0d0945dd1a505798d84cac53c8cd015dfcc554f2a08d7f481a
MD5 47f5f9f891bf963a449ffb40bc2fe2ba
BLAKE2b-256 23b2024748e4457759b8c85aae840a2257d8b60897113a9397ceede2ed4a0662

See more details on using hashes here.

Supported by

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