source: WAeUP_SRP/trunk/skins/waeup_custom/getCustomDisplayParams.py @ 314

Last change on this file since 314 was 296, checked in by joachim, 18 years ago

=backoffice enhencements

File size: 1.4 KB
Line 
1## Script (Python) "getCustomDisplayParams"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=
8##title=
9##
10# $Id: getCustomDisplayParams.py 32717 2006-02-10 13:35:19Z mturcu $
11"""
12FIXME: docstring?
13"""
14if context.isInWorkspace():
15    custom_params = {'format': 'detail_tab',
16                     'sort_by': None,
17                     'direction': 'asc',
18                     'items_per_page': 30,
19                     'nav_action': 'folder_view',
20                     'filter': 0,
21                     'detail_tab_columns': ['title', 'type', 'size',
22                                'date', 'author','status', 'version'],
23                    }
24
25else:
26    custom_params =  {'format': None,
27                      'sort_by': None,
28                      'direction': 'asc',
29                      'items_per_page': 30,
30                      'nav_action': 'folder_view',
31                      'filter': 0,
32                      'detail_tab_columns': ['long_title',
33                                              #'type',
34                                              #'size',
35                                              #'date',
36                                              #'author',
37                                              'status',
38                                              #'version'
39                                              ],
40                     }
41
42return custom_params
Note: See TracBrowser for help on using the repository browser.