Ignore:
Timestamp:
15 Jul 2012, 01:31:47 (12 years ago)
Author:
uli
Message:

Use new base interfaces.

Location:
main/waeup.kofa/branches/uli-zc-async/src/waeup/kofa
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/branches/uli-zc-async/src/waeup/kofa/applicants/interfaces.py

    r8778 r9004  
    2626from zope.schema.interfaces import (
    2727    ValidationError, ISource, IContextSourceBinder)
     28from waeup.kofa.browser.interfaces import IApplicantBase
    2829from waeup.kofa.schema import TextLineChoice, FormattedDate
    2930from waeup.kofa.interfaces import (
     
    306307    'year'].order =  IApplicantsContainer['year'].order
    307308
    308 class IApplicantBaseData(IKofaObject):
     309class IApplicantBaseData(IApplicantBase):
    309310    """The data for an applicant.
    310311
  • main/waeup.kofa/branches/uli-zc-async/src/waeup/kofa/students/interfaces.py

    r8779 r9004  
    2121from zope import schema
    2222from zc.sourcefactory.contextual import BasicContextualSourceFactory
     23from waeup.kofa.browser.interfaces import IStudentNavigationBase
    2324from waeup.kofa.interfaces import (
    2425    IKofaObject, academic_sessions_vocab, validate_email, ICSVExporter)
     
    128129    unique_student_id = Attribute("""A unique student id.""")
    129130
    130 class IStudentNavigation(IKofaObject):
     131class IStudentNavigation(IStudentNavigationBase):
    131132    """Interface needed for student navigation, logging, etc.
    132133
Note: See TracChangeset for help on using the changeset viewer.