[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/XUL - configure.zcml:1.1 xul.zcml:NONE

Steve Alexander steve@cat-box.net
Mon, 17 Jun 2002 15:33:58 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/XUL
In directory cvs.zope.org:/tmp/cvs-serv8164/lib/python/Zope/App/OFS/Content/Folder/Views/XUL

Added Files:
	configure.zcml 
Removed Files:
	xul.zcml 
Log Message:
changed foo-meta.zcml in tests to meta.zcml
changed zcml filenames to configure.zcml where feasible, and removed
the file attribute of include directives where I could.


=== Added File Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/XUL/configure.zcml ===
<zopeConfigure
   xmlns='http://namespaces.zope.org/zope'
   xmlns:security='http://namespaces.zope.org/security'
   xmlns:browser='http://namespaces.zope.org/browser'
>

  <!-- Loaded Folder View Directives -->

  <browser:view
      name="main_xul"
      for="Zope.App.OFS.IContainer.IReadContainer."
      factory=".Main." />

  <content class=".Main."
    <security:require
        permission="Zope.ManageContent"
        attributes="index menu" />
  </content>
  
  <browser:view
      name="tree"
      for="Zope.App.OFS.IContainer.IReadContainer."
      factory=".Tree." />

  <content class=".Tree."
    <security:require
        permission="Zope.ManageContent"
        attributes="getRDFTree" />
  </content>

  <browser:view
      name="limit_xul"
      for="Zope.App.OFS.IContainerLimit."
      factory=".SetLimit."/>

  <content class=".SetLimit."
    <security:require
        permission="Zope.ManageContent"
        attributes="index action action_js" />
  </content>

  <browser:view
      name="XULLimitFieldView"
      for="Zope.App.OFS.IContainerLimit."
      factory="Zope.App.OFS.Content.Folder.LoadedFolderFields.LimitField.
               Zope.App.Formulator.Widgets.XUL.TextWidget." />

</zopeConfigure>

=== Removed File Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/XUL/xul.zcml ===