Metadata-Version: 2.1
Name: zope.app.wfmc
Version: 0.1.2
Summary: Zope Application integration for ``zope.wfmc``
Home-page: http://cheeseshop.python.org/pypi/zope.app.wfmc
Author: Zope Corporation and Contributors
Author-email: zope3-dev@zope.org
License: ZPL 2.1
Description: This package provides Zope application level integration of the ``zope.wfmc``
        package including ZCML directives.
        
        
        Detailed Documentation
        ======================
        
        
        
        ===========
        Loading XPDL
        ============
        
        XPDL can be loaded in zcml files with the ``xpdl`` tag::
        
            >>> import os
            >>> file_name = os.path.join(this_directory, 'publication.xpdl')
            >>> zcml("""
            ...     <configure
            ...         xmlns="http://namespaces.zope.org/zope"
            ...         xmlns:wfmc="http://namespaces.zope.org/wfmc"
            ...         i18n_domain="test"
            ...         >
            ...
            ...         <wfmc:xpdl
            ...             file="%(file_name)s"
            ...             process="Publication"
            ...             id="example.publication"
            ...             integration="zope.wfmc.adapter.integration"
            ...             />
            ...
            ...     </configure>
            ... """ % locals())
        
        Lets verify that they were configured::
        
            >>> from zope.wfmc.interfaces import IProcessDefinition
            >>> import zope.component
            >>> pd = zope.component.getUtility(IProcessDefinition,
            ...                                'example.publication')
            >>> pd
            ProcessDefinition('example.publication')
        
            >>> import zope.wfmc.adapter
            >>> pd.integration is zope.wfmc.adapter.integration
            True
        
        
        
        =======
        CHANGES
        =======
        
        0.1.2 (2007-11-02)
        ------------------
        
        - Fix package meta-data.
        
        
        0.1.1 (2007-06-01)
        ------------------
        
        - Add CHANGES.txt
        
        - Fix setup.py to include package data correctly (zcml, xpdl, txt)
        
Keywords: zope3 wfmc xpdl workflow engine zcml
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope3
Provides-Extra: test
