Last change
on this file since 11152 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
|
Rev | Line | |
---|
[2653] | 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 |
---|
[3085] | 9 | l = [('','')] |
---|
[5501] | 10 | for y in range(1998,2015): |
---|
[2653] | 11 | l.append( ('%s' % str(y)[-2:],'%4d/%4d' % (y,y+1))) |
---|
| 12 | return l |
---|
| 13 | |
---|
| 14 | try: |
---|
| 15 | y = int(key) |
---|
| 16 | except: |
---|
[3254] | 17 | raise KeyError |
---|
[2653] | 18 | if y == -1: |
---|
[3254] | 19 | raise KeyError |
---|
[2653] | 20 | if y < 90: |
---|
| 21 | cent = 2000 |
---|
[3480] | 22 | elif y > 1000: |
---|
| 23 | cent = 0 |
---|
[2653] | 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.