transmogrify.print

by Alex Clark last modified Aug 31, 2011 02:02 PM

Transmogrifier blueprint to print pipeline item keys

Project Description

transmogrify.print

Introduction

Note

As of version 1.3 Transmogrifier provides a similar feature, via a blueprint called: collective.transmogrifier.sections.logger.

This Transmogrifier blueprint is based on collective.transmogrifier.sections.tests.PrettyPrinter, which anyone can use in their project by creating a utility like so:

<utility
    component="collective.transmogrifier.sections.tests.PrettyPrinter"
    name="print" />

Then adding a section to your pipeline like so:

[transmogrifier]
pipeline =
    …
    print

[print]
blueprint = print

transmogrify.print has has two advantages over the above approach:

  • It adds the utility for you
  • It allows you to specify a keys parameter to print individual keys. If no key is provided, it prints the entire item.

Installation

Make sure to require transmogrify.print in your project, e.g.:

from setuptools import setup

setup(
    name='migrate',
    py_modules=['migrate'],
    install_requires=[
        'plone.app.transmogrifier',
        'transmogrify.filesystem',
        'transmogrify.print',
    ]
)

Then you may use it in your pipelines, e.g.:

[transmogrifier]
pipeline =
    data
    constructor
#    schema
    print

[constructor]
blueprint = collective.transmogrifier.sections.constructor

[data]
blueprint = transmogrify.filesystem
directory = silly_content
file-type = Document

[print]
blueprint = transmogrify.print
keys = _path

[schema]
blueprint = plone.app.transmogrifier.atschemaupdater

See: https://github.com/aclark4life/silly_content_import for a working example.

Changelog

0.5.0 (2011-08-30)

  • Fix entry point, now targetting transmogrify [aclark]

0.4.0 (2011-07-31)

  • Note the existence of collective.transmogrifier.sections.logger which does something similar. [aclark]

0.3.0 (2011-07-31)

  • Fix blueprint name, should be something unique like transmogrify.print (instead of print). [aclark]
  • Show keys being used in README [aclark]

0.2.0 (2011-07-31)

  • Fix package data, setup.py missing include_package_data. [aclark]

0.1.0 (2011-07-31)

  • Initial release [aclark]

Current Release
transmogrify.print 0.5.0

Released Aug 31, 2011

Download file Get transmogrify.print for all platforms
transmogrify.print-0.5.0.zip
If you are using Plone 3.2 or higher, you probably want to install this product with buildout. See our tutorial on installing add-on products with buildout for more information.

All Releases

Version Released Description Compatibility Licenses Status
0.5.0 Aug 31, 2011 More about this release… UNKNOWN final
0.4.0 Jul 31, 2011 More about this release… UNKNOWN final
0.3.0 Jul 31, 2011 More about this release… UNKNOWN final
0.2.0 Jul 31, 2011 More about this release… UNKNOWN final
0.1.0 Jul 31, 2011 More about this release… UNKNOWN final

Comments (0)