1 | ## $Id: vocabularies.py 7321 2011-12-10 06:15:17Z henrik $ |
---|
2 | ## |
---|
3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
4 | ## This program is free software; you can redistribute it and/or modify |
---|
5 | ## it under the terms of the GNU General Public License as published by |
---|
6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
7 | ## (at your option) any later version. |
---|
8 | ## |
---|
9 | ## This program is distributed in the hope that it will be useful, |
---|
10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
12 | ## GNU General Public License for more details. |
---|
13 | ## |
---|
14 | ## You should have received a copy of the GNU General Public License |
---|
15 | ## along with this program; if not, write to the Free Software |
---|
16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
17 | ## |
---|
18 | """Vocabularies and sources for the academics section. |
---|
19 | """ |
---|
20 | from zc.sourcefactory.basic import BasicSourceFactory |
---|
21 | from zope.catalog.interfaces import ICatalog |
---|
22 | from zope.component import getUtility |
---|
23 | from waeup.sirp.interfaces import SimpleSIRPVocabulary |
---|
24 | |
---|
25 | inst_types = SimpleSIRPVocabulary( |
---|
26 | ('Faculty of','faculty'), |
---|
27 | ('Department of','department'), |
---|
28 | ('School of','school'), |
---|
29 | ('School for','school_for'), |
---|
30 | ('Institute of','institute'), |
---|
31 | ('Office for','office'), |
---|
32 | ('Centre for','centre'), |
---|
33 | ('College','college'), |
---|
34 | ) |
---|
35 | |
---|
36 | course_levels = SimpleSIRPVocabulary( |
---|
37 | ('Pre-Studies',0), |
---|
38 | ('100 (Year 1)',100), |
---|
39 | ('200 (Year 2)',200), |
---|
40 | ('300 (Year 3)',300), |
---|
41 | ('400 (Year 4)',400), |
---|
42 | ('500 (Year 5)',500), |
---|
43 | ('600 (Year 6)',600), |
---|
44 | ('700 (Year 7)',700), |
---|
45 | ('800 (Year 8)',800), |
---|
46 | ) |
---|
47 | |
---|
48 | semester = SimpleSIRPVocabulary( |
---|
49 | ('N/A', 0), |
---|
50 | ('First Semester', 1), |
---|
51 | ('Second Semester', 2), |
---|
52 | ('Combined', 3) |
---|
53 | ) |
---|
54 | |
---|
55 | application_categories = SimpleSIRPVocabulary( |
---|
56 | ('PUME, PDE, PCE, PRENCE','basic'), |
---|
57 | ('Part-Time, Diploma, Certificate','cest'), |
---|
58 | ('Sandwich','sandwich'), |
---|
59 | ('Postgraduate','pg'), |
---|
60 | ) |
---|
61 | |
---|
62 | study_modes = SimpleSIRPVocabulary( |
---|
63 | ('UME Full Time','ume_ft'), |
---|
64 | ('Direct Entry Full Time','de_ft'), |
---|
65 | ('Diploma Full Time','dp_ft'), |
---|
66 | ('Diploma Part Time','dp_pt'), |
---|
67 | ('Undergraduate Full Time','ug_ft'), |
---|
68 | ('Undergraduate Part Time','ug_pt'), |
---|
69 | ('Postgraduate Full Time','pg_ft'), |
---|
70 | ('Postgraduate Part Time','pg_pt'), |
---|
71 | ) |
---|
72 | |
---|
73 | |
---|
74 | class CourseSource(BasicSourceFactory): |
---|
75 | """A course source delivers all courses inside the portal by looking |
---|
76 | up a catalog. |
---|
77 | """ |
---|
78 | def getValues(self): |
---|
79 | catalog = getUtility(ICatalog, name='courses_catalog') |
---|
80 | return sorted(list( |
---|
81 | catalog.searchResults( |
---|
82 | code=('', 'z*'))),key=lambda value: value.code) |
---|
83 | |
---|
84 | def getToken(self, value): |
---|
85 | return value.code |
---|
86 | |
---|
87 | def getTitle(self, value): |
---|
88 | return "%s - %s" % (value.code, value.title[:64]) |
---|