Last change
on this file since 17948 was
5501,
checked in by Henrik Bettermann, 14 years ago
|
logged_in.py: copy images in state student_created
getSessionsVoc.py: extend to 2015
|
File size:
523 bytes
|
Line | |
---|
1 | ##parameters=key=None |
---|
2 | # $Id: getSessionsVoc.py 1986 2007-07-05 09:10:38Z henrik $ |
---|
3 | """ |
---|
4 | Return the sessions as a vocabulary |
---|
5 | |
---|
6 | """ |
---|
7 | if key is None: |
---|
8 | # not used for WAeUPSessionWidget, only for SelectWidget |
---|
9 | l = [('','')] |
---|
10 | for y in range(1998,2015): |
---|
11 | l.append( ('%s' % str(y)[-2:],'%4d/%4d' % (y,y+1))) |
---|
12 | return l |
---|
13 | |
---|
14 | try: |
---|
15 | y = int(key) |
---|
16 | except: |
---|
17 | raise KeyError |
---|
18 | if y == -1: |
---|
19 | raise KeyError |
---|
20 | if y < 90: |
---|
21 | cent = 2000 |
---|
22 | elif y > 1000: |
---|
23 | cent = 0 |
---|
24 | else: |
---|
25 | cent = 1900 |
---|
26 | return "%4d/%4d" % (cent+y, cent+y+1) |
---|
27 | |
---|
Note: See
TracBrowser for help on using the repository browser.