source: main/waeup.uniben/trunk/src/waeup/uniben/students/student.py @ 9709

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

In Uniben we have special pg students which follow the ug workflow.

See ticket 838:

Whereas the full time LLM students are to register all the four courses once, the part time LLM students are only permitted to register any two of the four courses in their first year and the remaining two courses including any carryover in the second or third year. Presently they do not have any problem with full time LLM online course registration but they certainly are not happy with the way LLM part time students are registering their cousres online as if they are full time students.

  • Property svn:keywords set to Id
File size: 2.0 KB
RevLine 
[7505]1## $Id: student.py 9251 2012-09-28 06:22:59Z 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"""
19Container for the various objects owned by students.
20"""
21import grok
22from zope.interface import implementedBy
[7822]23from waeup.kofa.utils.helpers import attrs_to_fields
[8988]24from waeup.kofa.students.student import StudentFactory
[8865]25from waeup.kofa.students.interfaces import IStudentNavigation
[8988]26from kofacustom.nigeria.students.student import NigeriaStudent
[8865]27from waeup.uniben.students.interfaces import ICustomStudent
[7505]28
29
[8988]30class CustomStudent(NigeriaStudent):
[7505]31    """This is a student container for the various objects
32    owned by students.
33    """
[8204]34    grok.implements(ICustomStudent, IStudentNavigation)
35    grok.provides(ICustomStudent)
[7505]36
[9251]37    @property
38    def is_special_postgrad(self):
39        is_special_postgrad = getattr(
40            self.get('studycourse', None), 'is_special_postgrad', False)
41        return is_special_postgrad
[7505]42
[9251]43
[7505]44# Set all attributes of Student required in IStudent as field
45# properties. Doing this, we do not have to set initial attributes
46# ourselves and as a bonus we get free validation when an attribute is
47# set.
[8204]48CustomStudent = attrs_to_fields(CustomStudent)
[7603]49
[8204]50class CustomStudentFactory(StudentFactory):
[7603]51    """A factory for students.
52    """
53
54    def __call__(self, *args, **kw):
[8204]55        return CustomStudent()
[7603]56
57    def getInterfaces(self):
[8204]58        return implementedBy(CustomStudent)
Note: See TracBrowser for help on using the repository browser.