source: WAeUP_SRP/base/skins/waeup_student/getStudentId.py @ 2690

Last change on this file since 2690 was 1514, checked in by Henrik Bettermann, 18 years ago

make work on Windows

  • Property svn:keywords set to Id
File size: 451 bytes
Line 
1## Script (Python) "getStudentId"
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: getStudentId.py 1514 2007-03-02 23:26:27Z henrik $
11"""
12return StudentId from request
13"""
14
15ptls = context.REQUEST.get('PATH_INFO')
16start = ptls.find('/students/')
17if start < -1:
18    return None
19start += 10
20student_id = ptls[start:start+7]
21try:
22    int(student_id[1:])
23    return student_id
24except:
25    return None
26
Note: See TracBrowser for help on using the repository browser.