source: WAeUP_SRP/base/skins/waeup_documents/getDocumentsInfo.py @ 2279

Last change on this file since 2279 was 2013, checked in by Henrik Bettermann, 17 years ago

see ticket #102

File size: 1.1 KB
Line 
1## Script (Python) "getDocumentsInfo"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=student=None
8##title=
9##
10# $Id:getFacultiesInfo.py 486 2006-09-06 10:09:39Z joachim $
11"""
12return Info about the Faculties
13"""
14request = context.REQUEST
15def cmp_id(a,b):
16    s1 = "%(id)s" % a
17    s2 = "%(id)s" % b
18    if s1 == s2:
19        return 0
20    if s1 > s2:
21        return 1
22    return -1
23
24wf = context.portal_workflow
25mtool = context.portal_membership
26path_info = request.get('PATH_INFO').split('/')
27
28info = {}
29info['action'] = "%s" % context.absolute_url()
30info['choosen_ids'] = request.get('ids',[])
31info['doc'] = context.getContent()
32
33items = []
34facs = context.portal_catalog(portal_type='WAeUPDocument')
35for f in facs:
36    row = {}
37    fo = f.getObject()
38    fd = fo.getContent()
39    row['id'] = fo.getId()
40    row['title'] = fd.Title()
41    row['url'] = fo.absolute_url()
42    row['is_editable'] = mtool.checkPermission('Modify portal content', fo)
43    items.append(row)
44items.sort(cmp_id)
45info['items'] = items
46return info
Note: See TracBrowser for help on using the repository browser.