[Zope3-checkins] CVS: Zope3/src/zope/app/security/registries - meta.zcml:1.3
Jim Fulton
jim@zope.com
Mon, 28 Jul 2003 18:22:26 -0400
Update of /cvs-repository/Zope3/src/zope/app/security/registries
In directory cvs.zope.org:/tmp/cvs-serv30481/src/zope/app/security/registries
Modified Files:
meta.zcml
Log Message:
Fixed misstyped attribute specification
=== Zope3/src/zope/app/security/registries/meta.zcml 1.2 => 1.3 ===
--- Zope3/src/zope/app/security/registries/meta.zcml:1.2 Wed Dec 25 09:13:17 2002
+++ Zope3/src/zope/app/security/registries/meta.zcml Mon Jul 28 18:21:51 2003
@@ -2,17 +2,21 @@
<!-- zope.app.security -->
<directives namespace="http://namespaces.zope.org/zope">
- <directive name="permission"
- attributes="id title description"
- handler="zope.app.security.registries.metaconfigure.definePermission" />
- <directive name="role"
- attributes="id title description"
- handler="zope.app.security.registries.metaconfigure.defineRole" />
- <directive name="principal" attributes="id title description"
+ <directive
+ name="permission"
+ attributes="id title description"
+ handler="zope.app.security.registries.metaconfigure.definePermission" />
+ <directive
+ name="role"
+ attributes="id title description"
+ handler="zope.app.security.registries.metaconfigure.defineRole" />
+ <directive
+ name="principal"
+ attributes="id title description login password"
handler="zope.app.security.registries.metaconfigure.principal" />
<directive name="unauthenticatedPrincipal"
- attributes="principal title description"
- handler="zope.app.security.registries.metaconfigure.unauthenticatedPrincipal" />
+ attributes="id title description"
+ handler=".metaconfigure.unauthenticatedPrincipal" />
</directives>
</zopeConfigure>