Simplifications. On vire le pictogramme du cadenas : personne ne savait à quoi ça...
authorBenoît Pin <benoit.pin@gmail.com>
Sun, 8 Dec 2013 21:37:50 +0000 (22:37 +0100)
committerBenoît Pin <benoit.pin@gmail.com>
Sun, 8 Dec 2013 21:37:50 +0000 (22:37 +0100)
Tests plus basiques sur l’affichage des cases à cocher / des boutons.

skins/photo_theme/folder_contents.py
skins/photo_theme/folder_contents_macros.pt

index 714b8f1..b63159f 100755 (executable)
@@ -15,6 +15,7 @@ from Products.CMFDefault.utils import html_marshal
 
 mtool = getToolByName(script, 'portal_membership')
 checkPermission = mtool.checkPermission
+isAnon = mtool.isAnonymousUser()
 utool = getToolByName(script, 'portal_url')
 portal_url = utool()
 
@@ -94,11 +95,7 @@ elif (key, reverse) == context.getDefaultSorting():
 else:
        is_default = 0
 
-columns = ( {'key': 'Lock',
-                        'title': '',
-                        'width': '16',
-                        'colspan': None}
-                       , {'key': 'Type',
+columns = ( {'key': 'Type',
                         'title': 'Type',
                         'width': None,
                         'colspan': '2'}
@@ -110,10 +107,6 @@ columns = ( {'key': 'Lock',
                         'title': 'Last Modified',
                         'width': None,
                         'colspan': None}
-            # , {'key': 'position',
-            #  'title': 'Position',
-            #  'width': None,
-            #  'colspan': None }
                        )
 
 for column in columns: 
@@ -161,18 +154,13 @@ sortFunc = key in ['Type'] and 'nocase' or 'cmp'
 items = sequence.sort( items, ((key, sortFunc, sort_dir),) )
 batch_obj = Batch(items, context.default_batch_size, b_start, orphan=0, quantumleap=1)
 items = []
-display_delete_button = True # TODO : à revoir
+display_delete_button = not isAnon # TODO : à revoir
 for item in batch_obj:
        item_icon = item.getIcon
        item_id = item.getId
        item_url = item.getURL()
-       #try : item_delete_allowed = context.objectIdCanBeDeleted(item_id)
-       #except : item_delete_allowed = checkPermission(DeleteObjects, context) # std zope perm
-       #if not display_delete_button :
-       #       display_delete_button = item_delete_allowed
        items.append(
-               {'lock' : False,
-                'checkbox': True,
+               {'checkbox': not isAnon,
                 'icon': item_icon and ( '%s/%s' % (portal_url, item_icon) ) or '',
                 'id': item_id,
                 'modified': item.modified.strftime(locale_date_fmt),
index 98177ba..2cb5b03 100644 (file)
       <tbody id="FolderListingBody">
 <tbody tal:repeat="item_info listItemInfos" tal:omit-tag="" metal:define-macro="itemListing">
         <tr class="" tal:attributes="class python: (even and 'even') or 'odd'" tal:define="even repeat/item_info/even">
-          <td><img src="." alt="lock" height="16" width="16" border="0"
-                   tal:condition="python:not isAnon and item_info['lock']"
-                   tal:attributes="src here/lock.gif/absolute_url"
-                   i18n:attributes="alt" /></td>
           <td>
             <input id="" type="checkbox" name="ids:list" value=""
                    tal:attributes="value item_info/id; id item_info/checkbox" tal:condition="item_info/checkbox" />