Metadata-Version: 1.0
Name: ng.zcmljunction
Version: 1.0.2
Summary: Multipurpose adapter used to rewrite attributes input interface into output
Home-page: http://code.dreambot.ru/svn/ng.zcmljunction
Author: Andrey Orlov
Author-email: cray@neural.ru
License: GPL v2.1
Description: The zcmljunction is zope3 product developed to provide possibility rapid
        interface adapter creation. To create adapter you can use new junction
        zcml-directive. Adapter can provide output interface attributes from
        attributes of input interface or it join.
        
        Sample of use::
        
        <junction
        for=".interfaces.IArticle"
        provides=".interfaces.ISearch"
        factory = ".searchadapter.SearchAdapter"
        >
        <property in="title" out="title"/>
        <property in="abstract" out="abstract"/>
        <property in="body" out="body" default=""/>
        <property in="abstract klass name keyword title body author" out="common" default=""/>
        </junction>
        
        
        
        
        * Wed Nov 7 2007 Andrey Orlov <cray@neural.ru> 1.0.2
        - File setup.py fixed
        
        * Wed Nov 7 2007 Andrey Orlov <cray@neural.ru> 1.0.1
        - first official release
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope3
