source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/container.py @ 7192

Last change on this file since 7192 was 7192, checked in by Henrik Bettermann, 13 years ago

Adjust copyright statement and svn keyword in applicants.

  • Property svn:keywords set to Id
File size: 3.5 KB
Line 
1## $Id: container.py 7192 2011-11-25 07:15:50Z 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"""
19Containers for university applicants.
20"""
21import grok
22from zope.component.factory import Factory
23from zope.component.interfaces import IFactory
24from waeup.sirp.applicants.interfaces import (
25    IApplicantsContainer, IApplicantsContainerAdd,
26    IApplicantsContainerProvider,
27    )
28from waeup.sirp.utils.helpers import attrs_to_fields
29
30class ApplicantsContainer(grok.Container):
31    """An applicants container contains university applicants.
32    """
33    grok.implements(IApplicantsContainer,IApplicantsContainerAdd)
34
35    #: These are 'class-attributes'. Do not fiddle around with it in
36    #: instances of this class.
37    #:
38    #: The title of this container as displayed in add-forms. It should
39    #: give some idea about what kind of container this is (one or two words)
40    container_title = u'Basic'
41
42    #: Another 'class-attribute'. Do not fiddle around with it in instances
43    #: of this class.
44    #:
45    #: The `container_description` gives a short explanation about for what
46    #: purposes this container type serves (a few words only).
47    container_description = u'handles basic applicants'
48
49    @property
50    def local_roles(cls):
51        return []
52
53    def archive(self, app_ids=None):
54        """Create on-dist archive of applicants stored in this term.
55
56        If app_ids is `None`, all applicants are archived.
57
58        If app_ids contains a single id string, only the respective
59        applicants are archived.
60
61        If app_ids contains a list of id strings all of the respective
62        applicants types are saved to disk.
63        """
64        raise NotImplementedError()
65
66    def clear(self, app_ids=None, archive=True):
67        """Remove applicants of type given by 'id'.
68
69        Optionally archive the applicants.
70
71        If id is `None`, all applicants are archived.
72
73        If id contains a single id string, only the respective
74        applicants are archived.
75
76        If id contains a list of id strings all of the respective
77        applicant types are saved to disk.
78
79        If `archive` is ``False`` none of the archive-handling is done
80        and respective applicants are simply removed from the
81        database.
82        """
83        raise NotImplementedError()
84
85ApplicantsContainer = attrs_to_fields(ApplicantsContainer)
86
87class ApplicantsContainerProvider(grok.GlobalUtility):
88    """A utility that provides basic applicants containers.
89    """
90    grok.implements(IApplicantsContainerProvider)
91    grok.name('waeup.sirp.applicants.ApplicantsContainer')
92
93    #: The applicants container type this provider provides:
94    #: :class:`ApplicantsContainer`.
95    factory = ApplicantsContainer
96
97factory = Factory(lambda : ApplicantsContainer, 'ApplicantsContainer')
98grok.global_utility(factory, IFactory, name='waeup.ApplicantsContainer')
Note: See TracBrowser for help on using the repository browser.