source: main/waeup.aaue/trunk/src/waeup/aaue/students/studylevel.py @ 8769

Last change on this file since 8769 was 8444, checked in by Henrik Bettermann, 12 years ago

Rename uniben to aaue.

  • Property svn:keywords set to Id
File size: 2.6 KB
Line 
1## $Id: studylevel.py 8444 2012-05-14 10:04:25Z 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"""
19Container which holds the data of a student study level
20and contains the course tickets.
21"""
22import grok
23from zope.component.interfaces import IFactory
24from zope.interface import implementedBy
25from waeup.kofa.utils.helpers import attrs_to_fields
26from waeup.kofa.students.studylevel import (
27    StudentStudyLevel, CourseTicket,
28    CourseTicketFactory, StudentStudyLevelFactory)
29from waeup.aaue.students.interfaces import (
30    ICustomStudentStudyLevel, IStudentNavigation, ICustomCourseTicket)
31
32
33class CustomStudentStudyLevel(StudentStudyLevel):
34    """This is a container for course tickets.
35    """
36    grok.implements(ICustomStudentStudyLevel, IStudentNavigation)
37    grok.provides(ICustomStudentStudyLevel)
38
39CustomStudentStudyLevel = attrs_to_fields(CustomStudentStudyLevel)
40
41class CustomStudentStudyLevelFactory(StudentStudyLevelFactory):
42    """A factory for student study levels.
43    """
44
45    def __call__(self, *args, **kw):
46        return CustomStudentStudyLevel()
47
48    def getInterfaces(self):
49        return implementedBy(CustomStudentStudyLevel)
50
51class CustomCourseTicket(CourseTicket):
52    """This is a course ticket which allows the
53    student to attend the course. Lecturers will enter scores and more at
54    the end of the term.
55
56    A course ticket contains a copy of the original course and
57    course referrer data. If the courses and/or their referrers are removed, the
58    corresponding tickets remain unchanged. So we do not need any event
59    triggered actions on course tickets.
60    """
61    grok.implements(ICustomCourseTicket, IStudentNavigation)
62    grok.provides(ICustomCourseTicket)
63
64CustomCourseTicket = attrs_to_fields(CustomCourseTicket)
65
66class CustomCourseTicketFactory(CourseTicketFactory):
67    """A factory for student study levels.
68    """
69
70    def __call__(self, *args, **kw):
71        return CustomCourseTicket()
72
73    def getInterfaces(self):
74        return implementedBy(CustomCourseTicket)
Note: See TracBrowser for help on using the repository browser.