Changeset 6500 for main/waeup.sirp


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
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 Applicants
    2 *************************************************
     1`.applicants` - University Application Package
     2*********************************************
    33
    44.. automodule:: waeup.sirp.applicants
    5    :members:
    65
    7 This package contains the following submodules:
     6Submodules
     7----------
     8
     9This package bundles the following submodules:
    810
    911.. toctree::
    1012   :maxdepth: 1
    1113
    12    api_applicants_root
    13    api_applicants_container
    14    api_applicants_interfaces
     14   applicants/api_root
     15   applicants/api_container
     16   applicants/api_interfaces
  • 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.