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

Last change on this file since 16700 was 16688, checked in by Henrik Bettermann, 3 years ago

Revert r16371.

  • Property svn:keywords set to Id
File size: 2.5 KB
RevLine 
[7505]1## $Id: student.py 16688 2021-10-28 06:50:14Z 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
[16371]23from waeup.kofa.interfaces import CLEARANCE, REQUESTED
[7822]24from waeup.kofa.utils.helpers import attrs_to_fields
[8988]25from waeup.kofa.students.student import StudentFactory
[8865]26from waeup.kofa.students.interfaces import IStudentNavigation
[10488]27from waeup.kofa.utils.helpers import get_current_principal
[8988]28from kofacustom.nigeria.students.student import NigeriaStudent
[13085]29from waeup.uniben.students.interfaces import (
[16382]30    ICustomStudent, ICustomStudentPersonalEdit, IMedicalHistory)
[7505]31
32
[8988]33class CustomStudent(NigeriaStudent):
[7505]34    """This is a student container for the various objects
35    owned by students.
36    """
[13085]37    grok.implements(
[16382]38        ICustomStudent, IStudentNavigation, ICustomStudentPersonalEdit,
39        IMedicalHistory)
[8204]40    grok.provides(ICustomStudent)
[7505]41
[10312]42    @property
43    def transcript_enabled(self):
[15172]44        return True
45        #user = get_current_principal()
46        #if user.id in ('admin', 'isouaba', 'med', 'zope.mgr'):
47        #    return True
48        #return False
[7505]49
[14902]50    @property
51    def is_jupeb(self):
[16337]52        if self.current_mode == 'found':
[14902]53            return True
[16371]54        return
[10312]55
[16371]56    @property
57    def clearance_locked(self):
[16688]58        return self.state not in (CLEARANCE, )
[14902]59
[16371]60
[7505]61# Set all attributes of Student required in IStudent as field
62# properties. Doing this, we do not have to set initial attributes
63# ourselves and as a bonus we get free validation when an attribute is
64# set.
[8204]65CustomStudent = attrs_to_fields(CustomStudent)
[7603]66
[8204]67class CustomStudentFactory(StudentFactory):
[7603]68    """A factory for students.
69    """
70
71    def __call__(self, *args, **kw):
[8204]72        return CustomStudent()
[7603]73
74    def getInterfaces(self):
[8204]75        return implementedBy(CustomStudent)
Note: See TracBrowser for help on using the repository browser.