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

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

Rebuild applicants package (1st part). Applicants now have an applicant_id and a password and can use the regular login page to enter the portal.

Add user_type attribute to SIRPPrincipal objects.

Add some permissions in students package.

Some tests are still missing and will be re-added soon.

  • 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.