Last change
on this file since 17935 was
1075,
checked in by joachim, 18 years ago
|
optimized
|
-
Property svn:keywords set to
Id
|
File size:
695 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 1075 2006-12-18 10:01:29Z joachim $ |
---|
11 | """ |
---|
12 | return StudentId from request |
---|
13 | """ |
---|
14 | |
---|
15 | ptls = context.REQUEST.get('PATH_TRANSLATED') |
---|
16 | start = ptls.find('/students/') |
---|
17 | if start < -1: |
---|
18 | return None |
---|
19 | start += 10 |
---|
20 | student_id = ptls[start:start+7] |
---|
21 | try: |
---|
22 | int(student_id[1:]) |
---|
23 | return student_id |
---|
24 | except: |
---|
25 | return None |
---|
26 | |
---|
27 | ptl = context.REQUEST.get('PATH_TRANSLATED').split('/') |
---|
28 | try: |
---|
29 | id_index = ptl.index('students') |
---|
30 | except: |
---|
31 | return None |
---|
32 | if len(ptl) <= id_index + 1: |
---|
33 | return None |
---|
34 | student_id = ptl[id_index +1] |
---|
35 | if len(student_id) != 7: |
---|
36 | return None |
---|
Note: See
TracBrowser for help on using the repository browser.