Metadata-Version: 1.0
Name: koansys.recipe.hooks
Version: 0.1-dev
Summary: Run python methods
Home-page: http://svn.plone.org/svn/plone/plone.example
Author: Chris Shenton
Author-email: chris@koansys.com
License: GPL
Description: Supported options
        =================
        
        hooks
        Custom python script that will be executed before running the
        ``configure`` script. The format of the options is::
        
        /path/to/the/module.py:name_of_callable
        
        where the first part is a filesystem path to the python module and
        the second part is the name of the callable in the module that
        will be called. The callable will be passed two parameters: the
        ``options`` dictionary from the recipe and the global ``buildout``
        dictionary. The callable is not expected to return anything.
        
        It can be helpful to define in [buildout] a::
        
        hooks = ${buildout:directory}/hooks
        
        then invoke like:
        
        [your_part_section]
        hooks = ${buildout:hooks}/hookfile.py:methodname
        
        The value of 'hooks' can be a whitespace-separated list of
        files:methods like:
        
        [your_part_section]
        hooks = ${buildout:hooks}/hookfile1.py:methodname1
        ${buildout:hooks}/hookfile2.py:methodname2
        
        
        
        Example usage
        =============
        
        TBD
        
        
        none
        
Keywords: plone
Platform: UNKNOWN
Classifier: Framework :: Plone
Classifier: Framework :: Zope2
Classifier: Framework :: Zope3
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
