[Zope3-checkins] CVS: Zope3/src/zope/configuration/tests/samplepackage - baz1.zcml:1.1 baz2.zcml:1.1 baz3.zcml:1.1

Jim Fulton jim at zope.com
Mon Mar 1 16:22:08 EST 2004


Update of /cvs-repository/Zope3/src/zope/configuration/tests/samplepackage
In directory cvs.zope.org:/tmp/cvs-serv3989/src/zope/configuration/tests/samplepackage

Added Files:
	baz1.zcml baz2.zcml baz3.zcml 
Log Message:
Added a files attribute to the zcml include directive.  This allows 
multiple files to be included using file-name globs, as in:

<include files="products/*-meta.zcml" />


=== Added File Zope3/src/zope/configuration/tests/samplepackage/baz1.zcml ===
<configure xmlns="http://namespaces.zope.org/zope"
               xmlns:meta="http://namespaces.zope.org/meta"
               xmlns:test="http://namespaces.zope.org/test"
  >
  <meta:directive 
      namespace="http://namespaces.zope.org/test"
      name="foo"
      schema="zope.configuration.tests.samplepackage.foo.S1"
      handler="zope.configuration.tests.samplepackage.foo.handler"
      />

</configure>


=== Added File Zope3/src/zope/configuration/tests/samplepackage/baz2.zcml ===
<configure xmlns="http://namespaces.zope.org/zope"
               xmlns:test="http://namespaces.zope.org/test"
  >

  <test:foo x="foo" y="2" />

</configure>


=== Added File Zope3/src/zope/configuration/tests/samplepackage/baz3.zcml ===
<configure xmlns="http://namespaces.zope.org/zope"
               xmlns:test="http://namespaces.zope.org/test"
  >

  <test:foo x="foo" y="3" />

</configure>




More information about the Zope3-Checkins mailing list