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.

Location:
main/waeup.sirp/trunk/src/waeup/sirp/browser
Files:
4 edited

Legend:

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

    r4920 r5005  
    66from zope.publisher.browser import TestRequest
    77
    8 from waeup.sirp import interfaces
     8from waeup.sirp.browser import interfaces
    99from waeup.sirp.browser.interfaces import (IBreadcrumb, IBreadcrumbIgnorable,
    1010                                      IBreadcrumbContainer)
  • main/waeup.sirp/trunk/src/waeup/sirp/browser/interfaces.py

    r4789 r5005  
    33from zope import schema
    44from zope.interface import Interface, Attribute
    5 
     5from waeup.sirp.interfaces import (
     6    IWAeUPObject, IUniversity, IUserContainer, IDataCenter)
     7from waeup.sirp.university.interfaces import (
     8    IFacultyContainer, IFaculty, IDepartment, ICourseContainer, ICourse,
     9    ICertificateContainer, ICertificate, ICertificateCourse)
    610
    711class IBreadcrumb(Interface):
  • 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
  • main/waeup.sirp/trunk/src/waeup/sirp/browser/viewlets.py

    r4940 r5005  
    66from zope.component import getMultiAdapter
    77from zope.location.interfaces import ISite
    8 from waeup.sirp.browser.pages import (UniversityPage, FacultyContainerPage,
    9                                  DatacenterPage, FacultyPage, DepartmentPage,
    10                                  CoursePage, CertificatePage,
    11                                  CertificateCoursePage)
    12 from waeup.sirp.browser.interfaces import IBreadcrumbContainer
    13 from waeup.sirp.interfaces import (IUniversity, IWAeUPObject, IWAeUPXMLExporter,
    14                               IWAeUPXMLImporter, IFacultyContainer, IFaculty,
    15                               IDepartment, ICourse, ICertificate,
    16                               ICertificateCourse, IDataCenter)
     8from waeup.sirp.browser.pages import (
     9    UniversityPage, FacultyContainerPage, DatacenterPage, FacultyPage,
     10    DepartmentPage, CoursePage, CertificatePage, CertificateCoursePage)
     11from waeup.sirp.browser.interfaces import (
     12    IFacultyContainer, IFaculty, IDepartment, ICourse, ICertificate,
     13    ICertificateCourse, IBreadcrumbContainer, IUniversity)
     14from waeup.sirp.interfaces import (IWAeUPObject, IWAeUPXMLExporter,
     15                                   IWAeUPXMLImporter, IDataCenter)
    1716
    1817grok.templatedir('templates')
Note: See TracChangeset for help on using the changeset viewer.