Metadata-Version: 1.0
Name: archetypes.configure
Version: 0.2
Summary: Declarative content type configuration for Archetypes.
Home-page: UNKNOWN
Author: Plone Foundation
Author-email: plone-developers@lists.sourceforge.net
License: GPL
Description: Introduction
        ============
        
        This package adds a declarative interface for the registration of
        Archetypes content classes.
        
        Usage
        -----
        
        Use an ``at:register`` directive to register each of your content
        classes.
        
        Example configuration::
        
            <configure
                xmlns="http://namespaces.zope.org/zope"
                xmlns:five="http://namespaces.zope.org/five"
                xmlns:at="http://namespaces.plone.org/archetypes">
        
              <five:registerPackage package="." />
        
              <permission id="example.Add" title="collective.example: Add example" />
        
              <at:register
                  class=".content.Example"
                  permission="example.Add"
                  />
        
            </configure>
        
        You do not need to (and should not) call ``atapi.registerType`` on
        your content classes. This is done automatically by the framework.
        
        Credits
        -------
        
        Malthe Borch <mborch@gmail.com>
        
        Changes
        =======
        
        0.2 - 2011-09-14
        ----------------
        
        * Compatibility with Zope 2.13.
        
        
        0.1 - 2010-12-01
        ----------------
        
        * Initial release
        
Platform: UNKNOWN
Classifier: Framework :: Plone
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
