Ignore:
Timestamp:
25 Jan 2011, 13:21:00 (14 years ago)
Author:
Henrik Bettermann
Message:

Rename applications to applicants.

Location:
main/waeup.sirp/trunk/src/waeup/sirp/applicants
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/applicants/container.py

    r5650 r5676  
    2121##
    2222"""
    23 Containers for student applications.
     23Containers for university applicants.
    2424"""
    2525import grok
    26 from waeup.sirp.applications.interfaces import IApplicationContainer
     26from waeup.sirp.applicants.interfaces import IApplicantsContainer
    2727
    28 class ApplicationContainer(grok.Container):
    29     """An application container contains student applications.
     28class ApplicantsContainer(grok.Container):
     29    """An applicants container contains university applicants.
    3030    """
    31     grok.implements(IApplicationContainer)
     31    grok.implements(IApplicantsContainer)
    3232
    3333    id = None
     
    3939
    4040    def archive(self, app_ids=None):
    41         """Create on-dist archive of applications stored in this term.
     41        """Create on-dist archive of applicants stored in this term.
    4242
    43         If app_ids is `None`, all applications are archived.
     43        If app_ids is `None`, all applicants are archived.
    4444
    4545        If app_ids contains a single id string, only the respective
    46         applications are archived.
     46        applicants are archived.
    4747
    4848        If app_ids contains a list of id strings all of the respective
    49         application types are saved to disk.
     49        applicants types are saved to disk.
    5050        """
    5151        raise NotImplemented()
    5252
    5353    def clear(self, app_ids=None, archive=True):
    54         """Remove applications of type given by 'id'.
     54        """Remove applicants of type given by 'id'.
    5555
    56         Optionally archive the applications.
     56        Optionally archive the applicants.
    5757       
    58         If id is `None`, all applications are archived.
     58        If id is `None`, all applicants are archived.
    5959
    6060        If id contains a single id string, only the respective
    61         applications are archived.
     61        applicants are archived.
    6262
    6363        If id contains a list of id strings all of the respective
    64         application types are saved to disk.
     64        applicant types are saved to disk.
    6565
    6666        If `archive` is ``False`` none of the archive-handling is done
    67         and respective applications are simply removed from the
     67        and respective applicants are simply removed from the
    6868        database.
    6969        """
Note: See TracChangeset for help on using the changeset viewer.