Skip to content

Provides a ZCA pluggable simple template system with most Plone related variables already defined.

Notifications You must be signed in to change notification settings

plone/plone.stringinterp

Repository files navigation

Provides ${id} style string interpolation using named adapters to look up variables. This is meant to provide a trivially simple template system for clients like plone.app.contentrules.

To interpolate a string in context, just follow the pattern:

from plone.stringinterp.interfaces import IStringInterpolator

IStringInterpolator(context)("Here is the title: ${title}")

Substitution of variables that are part of the Dublin Core are provided with the package. To provide additional substitutions, provide a named adapter implementing interfaces.IStringSubstitution for your context. The adapter name is used for the lookup.

You can also wrap your context with IContextWrapper adapter if you need to pass custom messages within your substitutions.

Implemented Substitutions

All Content

  • id
  • parent_id
  • url
  • parent_url

Minimal Dublin Core

  • title
  • description
  • type (content type)

Workflow Aware

  • review_state
  • review_state_title

Dublin Core

  • creator
  • creator_fullname
  • creator_email
  • creators
  • creators_emails
  • contributors
  • contributors_emails
  • subject
  • format (mime type)
  • language
  • rights
  • identifier

Catalogable Dublin Core

Everything should be in long local time format

  • created
  • effective
  • expires
  • modified

Member / Group Information for roles on content

  • owner_emails
  • reviewer_emails
  • manager_emails
  • member_emails
  • user_email

Current User Information

  • user_fullname
  • user_id

Last Change (workflow or version) Information

  • change_comment
  • change_title
  • change_type
  • change_authorid

Source Code

Contributors please read the document Process for Plone core's development

Sources and issue tracker are at the Plone code repository hosted at Github.

About

Provides a ZCA pluggable simple template system with most Plone related variables already defined.

Resources

Code of conduct

Security policy

Stars

Watchers

Forks

Sponsor this project

 

Languages