Line | |
---|
1 | ##parameters=key=None |
---|
2 | # $Id: sessions_voc.py 1988 2007-07-05 11:14:12Z joachim $ |
---|
3 | """ |
---|
4 | Return the sessions as an vocabulary |
---|
5 | |
---|
6 | """ |
---|
7 | if key is None: |
---|
8 | # not used for WAeUPSessionWidget, only for SelectWidget |
---|
9 | l = [('-1','N/A')] |
---|
10 | for y in range(1998,2008): |
---|
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 | return 'N/A' |
---|
18 | if y == -1: |
---|
19 | return 'N/A' |
---|
20 | if y < 90: |
---|
21 | cent = 2000 |
---|
22 | else: |
---|
23 | cent = 1900 |
---|
24 | return "%4d/%4d" % (cent+y, cent+y+1) |
---|
25 | |
---|
Note: See
TracBrowser for help on using the repository browser.