source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/__init__.py @ 7347

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

Rollback of r7341 as discussed on the phone. But now we get other problems (see email). A regression test will follow.

  • Property svn:keywords set to Id
File size: 784 bytes
Line 
1"""This package contains everything regarding university applicants.
2"""
3# Make this a package.
4from waeup.sirp.applicants.applicant import (
5    Applicant, ApplicantFactory, ApplicantImageStoreHandler,
6    ApplicantImageNameChooser,
7    )
8from waeup.sirp.applicants.container import ApplicantsContainer
9from waeup.sirp.applicants.root import (
10    ApplicantsRoot, get_applicant_data, application_exists,
11    )
12from waeup.sirp.applicants.dynamicroles import (
13    ApplicantPrincipalRoleManager,)
14
15__all__ = [
16    'Applicant',
17    'ApplicantFactory',
18    'ApplicantImageNameChooser',
19    'ApplicantImageStoreHandler',
20    'ApplicantPrincipalRoleManager',
21    'ApplicantsContainer',
22    'ApplicantsRoot',
23    'application_exists',
24    'get_applicant_data',
25    'get_regno_or_ac',
26    ]
Note: See TracBrowser for help on using the repository browser.