--- a/web/views/treeview.py Thu May 14 10:24:56 2009 +0200
+++ b/web/views/treeview.py Thu May 14 11:38:40 2009 +0200
@@ -45,7 +45,7 @@
self.wview(self.itemvid, self.rset, row=rowidx, col=0,
vid=subvid, parentvid=self.id)
self.w(u'</ul>')
-
+
class FileTreeView(TreeView):
"""specific version of the treeview to display file trees
@@ -79,7 +79,7 @@
class DefaultTreeViewItemView(EntityView):
"""default treeitem view for entities which don't implement ITree"""
id = 'treeitemview'
-
+
def cell_call(self, row, col, vid='oneline', parentvid='treeview'):
entity = self.entity(row, col)
itemview = self.view(vid, self.rset, row=row, col=col)
@@ -96,7 +96,7 @@
"""
id = 'treeitemview'
__select__ = implements(ITree)
-
+
def cell_call(self, row, col, vid='oneline', parentvid='treeview'):
entity = self.entity(row, col)
cssclasses = []
@@ -124,4 +124,3 @@
self.w(u'<ul class="placeholder"><li>place holder</li></ul>')
self.wview(vid, self.rset, row=row, col=col)
self.w(u'</li>')
-