[Zope3-checkins] CVS: Zope3/src/zope/app/pagetemplate - configure.zcml:1.1

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


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

Added Files:
	configure.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.



=== Added File Zope3/src/zope/app/pagetemplate/configure.zcml ===
<zopeConfigure xmlns='http://namespaces.zope.org/zope'>

  <content class=".viewpagetemplatefile.BoundPageTemplate">
    <allow attributes="__call__ __str__ __repr__ __name__" />
  </content>

</zopeConfigure>