[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Folder/Views/XUL - limit.pt:1.1.4.2 tree.pt:1.1.4.2

Steve Alexander steve@cat-box.net
Mon, 1 Apr 2002 04:53:20 -0500


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

Modified Files:
      Tag: Zope-3x-branch
	limit.pt tree.pt 
Log Message:
Changed here -> context and container -> view
as described in http://collector.zope.org/Zope3-dev/43


=== Zope3/lib/python/Zope/App/OFS/Folder/Views/XUL/limit.pt 1.1.4.1 => 1.1.4.2 ===
 	xmlns:html="http://www.w3.org/1999/xhtml"
     	xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
-        tal:attributes="id string:${container/name}-window;
-                        title container/title">
+        tal:attributes="id string:${view/name}-window;
+                        title view/title">
 
   <script src="http://physics.cbu.edu:8080/loaded/limit_xul;view/action_js" />
 
-  <description tal:content="container/description">
+  <description tal:content="view/description">
     Form Description
   </description>
 
-  <box tal:repeat="fieldView python:container.getFieldViews(request)">
+  <box tal:repeat="fieldView python:view.getFieldViews(request)">
     <label control="some-text" value="Label"
            tal:attributes="value python: fieldView.getContext().getValue('title')" />
     <textbox tal:replace="structure fieldView/render" />


=== Zope3/lib/python/Zope/App/OFS/Folder/Views/XUL/tree.pt 1.1.4.1 => 1.1.4.2 ===
   <tree open="true" container="true">
     <treechildren id="mainItems" flex="1">
-      <tal:dummy replace="structure container/tree" />
+      <tal:dummy replace="structure view/tree" />
     </treechildren>
   </tree>
 </box>