[Zope3-checkins] CVS: Zope3/src/zope/app/browser/form/tests - testconfigure.zcml:1.3

Jim Fulton jim@zope.com
Tue, 31 Dec 2002 13:27:25 -0500


Update of /cvs-repository/Zope3/src/zope/app/browser/form/tests
In directory cvs.zope.org:/tmp/cvs-serv1916/src/zope/app/browser/form/tests

Modified Files:
	testconfigure.zcml 
Log Message:
Hold on to your butts! :)

In an effort to make zcml view definitions even easier to understand
(see 
http://dev.zope.org/Wikis/DevSite/Projects/ComponentArchitecture/ZCMLBrowserViewDirectiveSimplification
)

I've finished a long-overdue refactoring of the configuration
directives for defining views. The logic is now a good bit less
complicated. 

I also simplified the way security assertions on views were
handled. To make this work right, I had to fix a bug in the
publication machinery. Now, as objects are traversed, the results of
traversal are put in security proxies.  This is really necessary to
treat URLs as "untrusted code", which they are.

I updated the meta-configuration directives for views and ran the zcml
documentation utility, so there is now documentation for the (new)
view directives. See the files 'page', 'pages', and 'view', in 
'doc/zcml/namespaces.zope.org/browser'.

I feel these changes are highly desireable for the alpha, but they are
significant enough that the chance of breakage is a lot higher than
I'd like just before the alpha.  I'd appreciate it if folks would let
me know if I've broken anything.



=== Zope3/src/zope/app/browser/form/tests/testconfigure.zcml 1.2 => 1.3 ===
--- Zope3/src/zope/app/browser/form/tests/testconfigure.zcml:1.2	Wed Dec 25 09:12:32 2002
+++ Zope3/src/zope/app/browser/form/tests/testconfigure.zcml	Tue Dec 31 13:26:53 2002
@@ -4,12 +4,12 @@
 >
 
   <!-- Test view for folders -->
-  <browser:view
+  <browser:pages
       permission="zope.View" 
       for="zope.app.interfaces.content.folder.IFolder"  
-      factory=".SchemaTestObject.EditFactory">
+      class=".SchemaTestObject.EditFactory">
       <browser:page name="testSchemaFormView.html" attribute="form" />
       <browser:page name="testSchemaFormAction.html" attribute="action" />
-  </browser:view>
+  </browser:pages>
 
 </zopeConfigure>