[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/File - edit.pt:1.1.2.2
Steve Alexander
steve@cat-box.net
Mon, 1 Apr 2002 04:53:10 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/File
In directory cvs.zope.org:/tmp/cvs-serv17619/lib/python/Zope/App/OFS/Content/File
Modified Files:
Tag: Zope-3x-branch
edit.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/Content/File/edit.pt 1.1.2.1 => 1.1.2.2 ===
- <p tal:content="here/msg"
- tal:condition="python: hasattr(here, 'msg')">
+ <p tal:content="context/msg"
+ tal:condition="python: hasattr(context, 'msg')">
Message will go here.
</p>
- <p tal:content="container/description">
+ <p tal:content="view/description">
Description of the Form.
</p>
@@ -38,7 +38,7 @@
<table class="EditTable">
<tbody>
- <tr tal:repeat="fieldView python:container.getFieldViews(request)">
+ <tr tal:repeat="fieldView python:view.getFieldViews(request)">
<th class="EditAttributeName"
tal:content="python: fieldView.getContext().getValue('title')">Title</th>
<td class="EditAttributeValue"