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

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

New form import
added portal status message to main_template

  • Property svn:keywords set to Id
File size: 405 bytes
Line 
1##parameters=key=None
2# $Id: sessions_voc.py 1756 2007-05-08 15:01:11Z 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
13try:
14    y = int(key)
15except:
16    return 'unknown'
17##if len(key) != 2:
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.