Changeset 6500 for main/waeup.sirp
- Timestamp:
- 3 Jul 2011, 11:51:09 (13 years ago)
- Location:
- main/waeup.sirp/trunk
- Files:
-
- 3 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/docs/source/developerdocs/api/api_applicants.rst
r6490 r6500 1 ` waeup.sirp.applicants` -- University Applicants2 ********************************************* ****1 `.applicants` - University Application Package 2 ********************************************* 3 3 4 4 .. automodule:: waeup.sirp.applicants 5 :members:6 5 7 This package contains the following submodules: 6 Submodules 7 ---------- 8 9 This package bundles the following submodules: 8 10 9 11 .. toctree:: 10 12 :maxdepth: 1 11 13 12 ap i_applicants_root13 ap i_applicants_container14 ap i_applicants_interfaces14 applicants/api_root 15 applicants/api_container 16 applicants/api_interfaces -
main/waeup.sirp/trunk/src/waeup/sirp/applicants/__init__.py
r5807 r6500 10 10 ) 11 11 12 __all__ = (13 ResultEntry,14 Applicant,15 ApplicantFactory,16 ApplicantsContainer,17 ApplicantsRoot,18 ApplicantTraverser,19 application_exists,20 get_applicant_data,21 )12 __all__ = [ 13 'ResultEntry', 14 'Applicant', 15 'ApplicantFactory', 16 'ApplicantsContainer', 17 'ApplicantsRoot', 18 'ApplicantTraverser', 19 'application_exists', 20 'get_applicant_data', 21 ] -
main/waeup.sirp/trunk/src/waeup/sirp/applicants/interfaces.py
r6477 r6500 20 20 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 21 ## 22 """Interfaces regarding student applicants and related components.22 """Interfaces of the university application package. 23 23 """ 24 24 import os … … 509 509 .. THE FOLLOWING SHOULD GO INTO SPHINX DOCS (and be tested) 510 510 511 Samples 512 ******* 511 Samples: 513 512 514 513 Given, you had an IApplicantsContainer implementation somewhere -
main/waeup.sirp/trunk/src/waeup/sirp/applicants/root.py
r6481 r6500 60 60 self.logger.info('%s - %s - %s - %s' % ( 61 61 user, target, ob_class, comment)) 62 return 62 63 63 64 class ApplicantsPlugin(grok.GlobalUtility):
Note: See TracChangeset for help on using the changeset viewer.