[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/Browser - contents.pt:1.11.2.1

Jim Fulton jim@zope.com
Thu, 3 Oct 2002 18:17:22 -0400


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

Modified Files:
      Tag: ZopeDublinCore-branch
	contents.pt 
Log Message:
Checking in still-unfinished dublin core work on
ZopeDublinCore-branch.

To do:

  - Make a number of existing tests work now that a lot of views 
    need to generate events. (Perhaps these will need to 
    be factored into adapters and views. Sigh.)

  - Make object events able to compute locations for there
    objects when an location hasn't been provided to the constructor.

  - Add some UI for editing at least some meta data.

Handling of lists (e.g. subjects, creators) may need some more thought
as these will often want to come from standard system-provided lists.




=== Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/Browser/contents.pt 1.11 => 1.11.2.1 ===
--- Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/Browser/contents.pt:1.11	Tue Oct  1 08:49:07 2002
+++ Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/Browser/contents.pt	Thu Oct  3 18:16:51 2002
@@ -33,9 +33,10 @@
           <tr>
             <th>&nbsp;</th>
             <th>&nbsp;</th>
-            <th>Title 
-              <img src="/@@/arrowUp.gif" alt="Sort" height="6" width="9" />
-            </th>
+            <th>Name</th>
+            <th>Title</th>
+            <th>Created</th>
+            <th>Modified</th>
           </tr>
         </thead>
         <tbody>
@@ -61,12 +62,12 @@
               <a href="#" 
                  tal:attributes="href 
                                  string:${url}/@@SelectedManagementView.html"
-                 >
-                <span tal:replace="item/id">Id</span>
-                <span tal:condition="item/title"
-                      tal:replace="string: (${item/title})">(Title)</span>
-              </a> 
+                 tal:content="item/id"
+                 >foo</a> 
             </td>          
+            <td><span tal:content="item/title|default">&nbsp;</span></td>
+            <td><span tal:content="item/created|default">&nbsp;</span></td>
+            <td><span tal:content="item/modified|default">&nbsp;</span></td>
           </tr>
         </metal:block>
         </tbody>