1 | ## $Id: container.py 7652 2012-02-15 10:51:53Z 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 | """ |
---|
19 | Containers for students. |
---|
20 | """ |
---|
21 | import grok |
---|
22 | from waeup.sirp.students.interfaces import ( |
---|
23 | IStudentsContainer, IStudent) |
---|
24 | from waeup.sirp.utils.logger import Logger |
---|
25 | |
---|
26 | class StudentsContainer(grok.Container, Logger): |
---|
27 | """ |
---|
28 | The node containing the student models |
---|
29 | """ |
---|
30 | |
---|
31 | grok.implements(IStudentsContainer) |
---|
32 | |
---|
33 | def archive(self, id=None): |
---|
34 | raise NotImplementedError() |
---|
35 | |
---|
36 | def clear(self, id=None, archive=True): |
---|
37 | raise NotImplementedError() |
---|
38 | |
---|
39 | def addStudent(self, student): |
---|
40 | """Add a student with subcontainers. |
---|
41 | """ |
---|
42 | if not IStudent.providedBy(student): |
---|
43 | raise TypeError( |
---|
44 | 'StudentsContainers contain only IStudent instances') |
---|
45 | self[student.student_id] = student |
---|
46 | return |
---|
47 | |
---|
48 | logger_name = 'waeup.sirp.${sitename}.students' |
---|
49 | logger_filename = 'students.log' |
---|
50 | |
---|
51 | def logger_info(self, ob_class, target, comment=None): |
---|
52 | """Get the logger's info method. |
---|
53 | """ |
---|
54 | self.logger.info('%s - %s - %s' % ( |
---|
55 | ob_class, target, comment)) |
---|
56 | return |
---|