source: WAeUP_SRP/trunk/skins/waeup_student/getStudentLevelsVoc.py @ 11223

Last change on this file since 11223 was 5033, checked in by Henrik Bettermann, 15 years ago

increase level range

  • Property svn:keywords set to Id
File size: 1.8 KB
Line 
1##parameters=key=None
2# $Id: getStudentLevelsVoc.py 5033 2010-02-23 08:36:45Z henrik $
3"""
4Return the levels as an vocabulary
5"""
6student_id = context.getStudentId()
7end_level = 800
8if student_id:
9    end_level = context.students_catalog(id = student_id)[0].end_level
10    if end_level and end_level.isdigit():
11        end_level = int(end_level)
12    else:
13        end_level = 700
14
15if key is None:
16    levels = [l for l in range(0,end_level+200,10)
17               if l % 100 < 30 and l < end_level + 120]
18    voc = [('','')]
19    for l in levels:
20        level_nr,repeat = divmod(l, 100)
21        if level_nr > end_level/100 and repeat:
22            voc += ("%s" % l,"%s (2nd spillover)" % context.portal_vocabularies.levels.get("%d00" % (level_nr - 1))),
23        elif level_nr > end_level/100:
24            voc += ("%s" % l,"%s (spillover)" % context.portal_vocabularies.levels.get("%d00" % (level_nr - 1))),
25        elif repeat > 0:
26            voc += ("%s" % l,"%s (on %d. probation)" %
27                    (context.portal_vocabularies.levels.get("%d00" % (level_nr)),
28                                                            (repeat // 10))),
29        else:
30            voc += ("%03d" % l,"%s" %
31                    (context.portal_vocabularies.levels.get("%d00" % (level_nr)))),
32    return voc
33
34if key and key.isdigit():
35    ikey = int(key)
36else:
37    raise KeyError
38level_nr,repeat = divmod(ikey, 100)
39l = []
40
41level = context.portal_vocabularies.levels.get("%d00" % level_nr,None)
42if level is None:
43    raise KeyError
44   
45if level_nr > end_level/100 and repeat:   
46    return "%s 2nd Spillover" % context.portal_vocabularies.levels.get("%d00" % (level_nr - 1))
47elif level_nr > end_level/100:
48    return "%s Spillover" % context.portal_vocabularies.levels.get("%d00" % (level_nr - 1))
49
50if repeat > 0:
51    level += " on %d. Probation" % (repeat // 10)
52
53return level
54
Note: See TracBrowser for help on using the repository browser.