[Zope-Checkins] CVS: Zope3/doc/zcml/namespaces.zope.org/zope - adapter.stx:1.1.2.1 allow.stx:1.1.2.1 content.stx:1.1.2.1 defaultView.stx:1.1.2.1 factory.stx:1.1.2.1 hook.stx:1.1.2.1 hookable.stx:1.1.2.1 implements.stx:1.1.2.1 require.stx:1.1.2.1 resource.stx:1.1.2.1 service.stx:1.1.2.1 serviceType.stx:1.1.2.1 skin.stx:1.1.2.1 utility.stx:1.1.2.1 view.stx:1.1.2.1

Steve Alexander steve@cat-box.net
Sun, 9 Jun 2002 16:27:59 -0400


Update of /cvs-repository/Zope3/doc/zcml/namespaces.zope.org/zope
In directory cvs.zope.org:/tmp/cvs-serv8722/namespaces.zope.org/zope

Added Files:
      Tag: Zope-3x-branch
	adapter.stx allow.stx content.stx defaultView.stx factory.stx 
	hook.stx hookable.stx implements.stx require.stx resource.stx 
	service.stx serviceType.stx skin.stx utility.stx view.stx 
Log Message:
more zcml documentation.


=== Added File Zope3/doc/zcml/namespaces.zope.org/zope/adapter.stx ===
The adapter directive.

See lib/python/Zope/App/ComponentArchitecture/component-meta.zcml

Attributes

  * factory, a callable or list of callables, that realises the adaption
  
  * provides, the interface this adapter adapts to
  
  * for, optional, the interface this adapter adapts from.
  
  * permission, optional, the permission required to use this adapter
  
  If the 'for' attribute is not present, the adapter can adapt from any
  component.
  
  
  


=== Added File Zope3/doc/zcml/namespaces.zope.org/zope/allow.stx ===
The allow subdirective of the content directive.


=== Added File Zope3/doc/zcml/namespaces.zope.org/zope/content.stx ===
The content directive.


=== Added File Zope3/doc/zcml/namespaces.zope.org/zope/defaultView.stx ===
The defaultView directive.

Assuming the MinimalDefaultViewDirectives proposal is accepted, the following
will hold.

Attributes

  * for, a component
  
  * name, the name of the view that is to be the default


References

  http://dev.zope.org/Wikis/DevSite/Projects/ComponentArchitecture/MinimalDefaultViewDirectives


=== Added File Zope3/doc/zcml/namespaces.zope.org/zope/factory.stx ===
The factory directive.

See lib/python/Zope/App/ComponentArchitecture/component-meta.zcml

Attributes

  * component
  
  * id, optional
  


=== Added File Zope3/doc/zcml/namespaces.zope.org/zope/hook.stx ===
The hook directive.

See lib/python/Zope/Configuration/configuration-meta.zcml


=== Added File Zope3/doc/zcml/namespaces.zope.org/zope/hookable.stx ===
The hookable directive.

See lib/python/Zope/Configuration/configuration-meta.zcml


=== Added File Zope3/doc/zcml/namespaces.zope.org/zope/implements.stx ===
The implements subdirective of the content directive.


=== Added File Zope3/doc/zcml/namespaces.zope.org/zope/require.stx ===
The require subdirective of the content directive.


=== Added File Zope3/doc/zcml/namespaces.zope.org/zope/resource.stx ===
The resource directive.


=== Added File Zope3/doc/zcml/namespaces.zope.org/zope/service.stx ===
The service directive.


=== Added File Zope3/doc/zcml/namespaces.zope.org/zope/serviceType.stx ===
The serviceType directive.


=== Added File Zope3/doc/zcml/namespaces.zope.org/zope/skin.stx ===
The skin directive.


=== Added File Zope3/doc/zcml/namespaces.zope.org/zope/utility.stx ===
The utility directive.

See lib/python/Zope/App/ComponentArchitecture/component-meta.zcml

Attributes

  * factory
  
  * component
  
  * provides, the interface this utility provides
  
  * permission, optional, the permission id required to use this utility
  
  
  Either component or factory must be given, not both.
  If component is given, it is a resolvable name to an object.
  If factory is given, it is a callable object that provides a component.
  


=== Added File Zope3/doc/zcml/namespaces.zope.org/zope/view.stx ===
The view directive.