source: WAeUP_SRP/trunk/skins/waeup_default/sessions_voc.py @ 1747

Last change on this file since 1747 was 1747, checked in by joachim, 18 years ago

new function in WAeUPTool importData
usage from url:
.../uniben/waeup_tool/importData?filename=PreviousTest?&name=student

  • Property svn:keywords set to Id
File size: 401 bytes
Line 
1##parameters=key=None
2# $Id: sessions_voc.py 1747 2007-05-07 20:56:24Z joachim $
3"""
4Return the sessions as an vocabulary
5
6"""
7if key is None:
8    l = [('xx','unknown')]
9    for y in range(1998,2008):
10        l.append( ('%s' % str(y)[-2:],'%4d/%4d' % (y,y+1)))
11    return l
12
13if len(key) != 2:
14    return 'unknown'
15try:
16    y = int(key)
17except:
18    return 'unknown'
19if y < 90:
20    cent = 2000
21else:
22    cent = 1900
23return "%4d/%4d" % (cent+y, cent+y+1)
24
Note: See TracBrowser for help on using the repository browser.