1 | ## $Id: vocabularies.py 7434 2011-12-22 07:39:00Z 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 application section. |
---|
19 | """ |
---|
20 | from zope.component import getUtility |
---|
21 | from zope.catalog.interfaces import ICatalog |
---|
22 | from waeup.sirp.interfaces import SimpleSIRPVocabulary |
---|
23 | from waeup.sirp.students.vocabularies import CertificateSource |
---|
24 | |
---|
25 | #: Types of applications we support. |
---|
26 | APPLICATION_TYPES = ( |
---|
27 | ('General Studies', 'app','APP'), |
---|
28 | ('Pre-NCE Programme', 'prence','PRE'), |
---|
29 | ('Post UME Screening Test', 'pume','PUME'), |
---|
30 | ('Post UDE Screening', 'pude','PUDE'), |
---|
31 | ('Part Time Degree in Education', 'sandwich','SAND'), |
---|
32 | ('Part-Time Degree Programmes', 'pt','PTP'), |
---|
33 | ('Diploma Programmes', 'dp','DPP'), |
---|
34 | ('PCE Screening', 'pce','PCE'), |
---|
35 | ('Certificate Programmes', 'ct','CTP'), |
---|
36 | ('Common Entry Screening Test', 'cest','CEST'), |
---|
37 | ) |
---|
38 | |
---|
39 | #: A :class:`waeup.sirp.interfaces.SimpleSIRPVocabulary` of supported |
---|
40 | #: application or screening types. |
---|
41 | application_types_vocab = SimpleSIRPVocabulary( |
---|
42 | *[(x[0],x[1]) for x in APPLICATION_TYPES]) |
---|
43 | application_pins_vocab = SimpleSIRPVocabulary( |
---|
44 | *[(u"%s (%s)" % (x[2],x[0]),x[2]) for x in APPLICATION_TYPES]) |
---|
45 | |
---|
46 | |
---|
47 | class AppCatCertificateSource(CertificateSource): |
---|
48 | """An application certificate source delivers all courses which belong to |
---|
49 | a certain application_category. |
---|
50 | """ |
---|
51 | def getValues(self, context): |
---|
52 | # appliction category not available when certificate was deleted. |
---|
53 | # shouldn't that info be part of applicant info instead? |
---|
54 | # when we cannot determine the appcat, we will display all courses. |
---|
55 | appcat = getattr(getattr(context, '__parent__', None), |
---|
56 | 'application_category', None) |
---|
57 | catalog = getUtility(ICatalog, name='certificates_catalog') |
---|
58 | result = catalog.searchResults( |
---|
59 | application_category=(appcat,appcat)) |
---|
60 | result = sorted(result, key=lambda value: value.code) |
---|
61 | curr_course = context.course1 |
---|
62 | if curr_course is not None and curr_course not in result: |
---|
63 | # display also current course even if it is not catalogued |
---|
64 | # (any more) |
---|
65 | result = [curr_course,] + result |
---|
66 | return result |
---|