Ignore:
Timestamp:
3 Jul 2011, 11:51:09 (13 years ago)
Author:
Henrik Bettermann
Message:

Proposal for structuring the API.

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

Legend:

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

    r5807 r6500  
    1010    )
    1111
    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  
    2020## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    2121##
    22 """Interfaces regarding student applicants and related components.
     22"""Interfaces of the university application package.
    2323"""
    2424import os
     
    509509    .. THE FOLLOWING SHOULD GO INTO SPHINX DOCS (and be tested)
    510510
    511     Samples
    512     *******
     511    Samples:
    513512
    514513    Given, you had an IApplicantsContainer implementation somewhere
  • main/waeup.sirp/trunk/src/waeup/sirp/applicants/root.py

    r6481 r6500  
    6060        self.logger.info('%s - %s - %s  - %s' % (
    6161                user, target, ob_class, comment))
     62        return
    6263
    6364class ApplicantsPlugin(grok.GlobalUtility):
Note: See TracChangeset for help on using the changeset viewer.