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

Fix import of student/applicant interfaces in w.k.browser.interfaces.
w.k.browser interfaces should not rely on interfaces defined in other
submodules except they are core part.

Also move purely UI-related interface from w.k.interfaces to w.k.browser.

File:
1 edited

Legend:

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

    r8759 r9003  
    10901090        )
    10911091
    1092 class IChangePassword(IKofaObject):
    1093     """Interface needed for change pasword page.
    1094 
    1095     """
    1096     identifier = schema.TextLine(
    1097         title = _(u'Unique Identifier'),
    1098         description = _(
    1099             u'User Name, Student or Applicant Id, Matriculation or '
    1100             u'Registration Number'),
    1101         required = True,
    1102         readonly = False,
    1103         )
    1104 
    1105     email = schema.ASCIILine(
    1106         title = _(u'Email Address'),
    1107         required = True,
    1108         constraint=validate_email,
    1109         )
Note: See TracChangeset for help on using the changeset viewer.