[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/Formulator - configure.zcml:1.1 formulator.zcml:NONE

Steve Alexander steve@cat-box.net
Mon, 17 Jun 2002 15:33:47 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/Formulator
In directory cvs.zope.org:/tmp/cvs-serv8164/lib/python/Zope/App/Formulator

Added Files:
	configure.zcml 
Removed Files:
	formulator.zcml 
Log Message:
changed foo-meta.zcml in tests to meta.zcml
changed zcml filenames to configure.zcml where feasible, and removed
the file attribute of include directives where I could.


=== Added File Zope3/lib/python/Zope/App/Formulator/configure.zcml ===
<zopeConfigure
   xmlns='http://namespaces.zope.org/zope'
   xmlns:security='http://namespaces.zope.org/security'
>

  <include package="Zope.App.Formulator" file="meta.zcml" />

  <include package="Zope.App.Formulator.Fields" />
  <include package="Zope.App.Formulator.Validators" />
  <include package="Zope.App.Formulator.Widgets" />

  <adapter factory="Zope.App.Formulator.PropertyFieldAdapter."
           provides="Zope.App.Formulator.IPropertyFieldAdapter."
           for="Zope.App.Formulator.IField." />

  <content class=".Field.">
    <security:require
        permission="Zope.View" 
        interface=".IField." />
  </content>
  
  <content class=".Form.">
    <security:require
        permission="Zope.View" 
        attributes="index action getFieldViews getContext" />
  </content>

</zopeConfigure>

=== Removed File Zope3/lib/python/Zope/App/Formulator/formulator.zcml ===