[8862] | 1 | ## $Id: studylevel.py 10484 2013-08-12 09:25:38Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2012 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 | """ |
---|
| 19 | Container which holds the data of a student study level |
---|
| 20 | and contains the course tickets. |
---|
| 21 | """ |
---|
| 22 | import grok |
---|
| 23 | from zope.component.interfaces import IFactory |
---|
| 24 | from zope.interface import implementedBy |
---|
| 25 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
| 26 | from waeup.kofa.students.studylevel import ( |
---|
| 27 | StudentStudyLevel, CourseTicket, |
---|
| 28 | CourseTicketFactory, StudentStudyLevelFactory) |
---|
| 29 | from kofacustom.nigeria.students.interfaces import ( |
---|
[8863] | 30 | INigeriaStudentStudyLevel, IStudentNavigation, INigeriaCourseTicket) |
---|
[8862] | 31 | |
---|
| 32 | |
---|
[8863] | 33 | class NigeriaStudentStudyLevel(StudentStudyLevel): |
---|
[8862] | 34 | """This is a container for course tickets. |
---|
| 35 | """ |
---|
[8863] | 36 | grok.implements(INigeriaStudentStudyLevel, IStudentNavigation) |
---|
| 37 | grok.provides(INigeriaStudentStudyLevel) |
---|
[8862] | 38 | |
---|
[9695] | 39 | NigeriaStudentStudyLevel = attrs_to_fields( |
---|
[10484] | 40 | NigeriaStudentStudyLevel, omit=['total_credits', 'gpa']) |
---|
[8862] | 41 | |
---|
[8863] | 42 | class NigeriaStudentStudyLevelFactory(StudentStudyLevelFactory): |
---|
[8862] | 43 | """A factory for student study levels. |
---|
| 44 | """ |
---|
| 45 | |
---|
| 46 | def __call__(self, *args, **kw): |
---|
[8863] | 47 | return NigeriaStudentStudyLevel() |
---|
[8862] | 48 | |
---|
| 49 | def getInterfaces(self): |
---|
[8863] | 50 | return implementedBy(NigeriaStudentStudyLevel) |
---|
[8862] | 51 | |
---|
[8863] | 52 | class NigeriaCourseTicket(CourseTicket): |
---|
[8862] | 53 | """This is a course ticket which allows the |
---|
| 54 | student to attend the course. Lecturers will enter scores and more at |
---|
| 55 | the end of the term. |
---|
| 56 | |
---|
| 57 | A course ticket contains a copy of the original course and |
---|
| 58 | course referrer data. If the courses and/or their referrers are removed, the |
---|
| 59 | corresponding tickets remain unchanged. So we do not need any event |
---|
| 60 | triggered actions on course tickets. |
---|
| 61 | """ |
---|
[8863] | 62 | grok.implements(INigeriaCourseTicket, IStudentNavigation) |
---|
| 63 | grok.provides(INigeriaCourseTicket) |
---|
[8862] | 64 | |
---|
[8863] | 65 | NigeriaCourseTicket = attrs_to_fields(NigeriaCourseTicket) |
---|
[8862] | 66 | |
---|
[8863] | 67 | class NigeriaCourseTicketFactory(CourseTicketFactory): |
---|
[8862] | 68 | """A factory for student study levels. |
---|
| 69 | """ |
---|
| 70 | |
---|
| 71 | def __call__(self, *args, **kw): |
---|
[8863] | 72 | return NigeriaCourseTicket() |
---|
[8862] | 73 | |
---|
| 74 | def getInterfaces(self): |
---|
[8863] | 75 | return implementedBy(NigeriaCourseTicket) |
---|