Ignore:
Timestamp:
4 Feb 2010, 11:54:20 (15 years ago)
Author:
uli
Message:

Fix references to academics stuff interfaces. This is the first step to make academics stuff pluggable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/browser/pages.py

    r5000 r5005  
    1010from hurry import yui
    1111from hurry.workflow.interfaces import NoTransitionAvailableError
    12 from waeup.sirp.browser import (WAeUPPage, WAeUPEditFormPage, WAeUPAddFormPage,
    13                            WAeUPDisplayFormPage, NullValidator)
     12from waeup.sirp.browser import (
     13    WAeUPPage, WAeUPEditFormPage, WAeUPAddFormPage,
     14    WAeUPDisplayFormPage, NullValidator)
     15from waeup.sirp.browser.interfaces import (
     16    IUniversity, IFacultyContainer, IFaculty, IDepartment, ICourse,
     17    ICertificate, ICertificateCourse)
    1418from waeup.sirp.catalog import search, search_context
    15 from waeup.sirp.interfaces import (IUniversity, IWAeUPObject, IUserContainer,
    16                               IUserAccount, IFacultyContainer, IDataCenter,
    17                               IFaculty, IDepartment, ICourse, ICertificate,
    18                               ICertificateCourse, IWAeUPXMLImporter,
    19                               IWAeUPXMLExporter)
     19from waeup.sirp.interfaces import(
     20    IWAeUPObject, IUserContainer, IUserAccount, IDataCenter,
     21    IWAeUPXMLImporter, IWAeUPXMLExporter)
    2022from waeup.sirp.widgets.interfaces import ITableProvider
    2123from waeup.sirp.utils.helpers import getName
    2224from zope import schema
    23 from zope.app.security.interfaces import (IAuthentication,
    24                                           IUnauthenticatedPrincipal,
    25                                           ILogout)
     25from zope.app.security.interfaces import (
     26    IAuthentication, IUnauthenticatedPrincipal, ILogout)
    2627from zope.component import getUtility, createObject
    2728from zope.component.interfaces import Invalid
Note: See TracChangeset for help on using the changeset viewer.