[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/ZPTPage - zptpage.zcml:1.1.2.6

Steve Alexander steve@cat-box.net
Sun, 26 May 2002 08:45:24 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/ZPTPage
In directory cvs.zope.org:/tmp/cvs-serv17123/lib/python/Zope/App/OFS/Content/ZPTPage

Modified Files:
      Tag: Zope-3x-branch
	zptpage.zcml 
Log Message:
changed "name" attribute of protectClass and publicClass zcml directives
to "class".
Note that I haven't touched the dummy protectClass directive in
Zope/Configuration/tests/... as it is only used as an arbitrary
directive for testing the directive-processing machinery.



=== Zope3/lib/python/Zope/App/OFS/Content/ZPTPage/zptpage.zcml 1.1.2.5 => 1.1.2.6 ===
 
   <zmi:factoryFromClass name="ZPTPage"
-                    	class=".ZPTPage."
-                    	permission_id="Zope.ManageContent"
-                    	title="ZPT Page"
-                    	description="A simple, content-based Page Template" />
+                        class=".ZPTPage."
+                        permission_id="Zope.ManageContent"
+                        title="ZPT Page"
+                        description="A simple, content-based Page Template" />
 
 
-  <security:protectClass name=".ZPTPage."
-    permission_id="Zope.View">
+  <security:protectClass class=".ZPTPage."
+                         permission_id="Zope.View">
     <security:protect
               names="content_type, __call__"
               permission_id="Zope.View" />