source: WAeUP_SRP/trunk_not_used/skins/waeup_academics/getDocumentInfo.py @ 2335

Last change on this file since 2335 was 1783, checked in by Henrik Bettermann, 17 years ago
  • assertViewable removed and page templates adjusted, so that no traceback occurs.
  • 'Previous Session' action added
  • waeup_content_master.pt removed
  • and more
  • Property svn:keywords set to Id
File size: 491 bytes
Line 
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"""
12return Info about the Faculties
13"""
14request = context.REQUEST
15
16wf = context.portal_workflow
17path_info = request.get('PATH_INFO').split('/')
18
19info = {}
20try:
21    info['doc'] = context.getContent()
22except:
23    return None
24return info
Note: See TracBrowser for help on using the repository browser.