Metadata-Version: 1.0
Name: collective.powertoken.workflow
Version: 0.1.0
Summary: Workflow add-ons for collective.powertoken support for Plone
Home-page: http://plone.org/collective.powertoken.core
Author: RedTurtle Technology
Author-email: sviluppoplone@redturtle.it
License: GPL
Description: Introduction
        ============
        
        A workflow action implementation for `collective.powertoken`__
        
        __ http://plone.org/products/collective.powertoken.core
        
        How to use
        ==========
        
        Add this product to your Plone installation, then you will be able to register Power Tokens that
        performs workflow action when consumed.
        
        >>> from collective.powertoken.core.interfaces import IPowerTokenUtility
        >>> utility = getUtility(IPowerTokenUtility)
        >>> token = utility.enablePowerToken(document, 'workflow.doAction', workflow_action='publish')
        >>> results = utility.consumeAction(document, token)
        >>> print results
        ['published']
        
        You will get the new state of the document as result.
        
        Parameters
        ----------
        
        ``workflow_action``
            Required. You need to provide the workflow action to perform.
        
        Use case
        ========
        
        You can perform a state change for a document, regardless of your roles in the site.
        
        Authors
        =======
        
        This product was developed by RedTurtle Technology team.
        
        .. image:: http://www.redturtle.it/redturtle_banner.png
           :alt: RedTurtle Technology Site
           :target: http://www.redturtle.it/
        
        Changelog
        =========
        
        0.1.0 (2012-01-11)
        ------------------
        
        * Initial release
        
Keywords: plone security token plonegov workflow
Platform: UNKNOWN
Classifier: Framework :: Plone
Classifier: Framework :: Plone :: 3.3
Classifier: Framework :: Plone :: 4.0
Classifier: Framework :: Plone :: 4.1
Classifier: Framework :: Zope2
Classifier: Framework :: Zope3
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
