Rev | Line | |
---|
[2013] | 1 | ## Script (Python) "getDocumentInfo" |
---|
| 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:getDocumentInfo.py 486 2006-09-06 10:09:39Z joachim $ |
---|
| 11 | """ |
---|
| 12 | return Info about the Faculties |
---|
| 13 | """ |
---|
| 14 | request = context.REQUEST |
---|
| 15 | |
---|
| 16 | wf = context.portal_workflow |
---|
| 17 | path_info = request.get('PATH_INFO').split('/') |
---|
| 18 | |
---|
| 19 | mtool = context.portal_membership |
---|
| 20 | if mtool.isAnonymousUser(): |
---|
| 21 | return None |
---|
| 22 | |
---|
| 23 | info = {} |
---|
| 24 | try: |
---|
| 25 | info['doc'] = context.getContent() |
---|
| 26 | except: |
---|
| 27 | return None |
---|
| 28 | return info |
---|
| 29 | |
---|
Note: See
TracBrowser for help on using the repository browser.