Ignore:
Timestamp:
13 Sep 2021, 12:24:36 (3 years ago)
Author:
Henrik Bettermann
Message:

Rename site.

Location:
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/batching.py

    r16589 r16615  
    2020from kofacustom.nigeria.students.batching import NigeriaStudentProcessor
    2121from waeup.kofa.students.batching import StudentOnlinePaymentProcessor
    22 from kofacustom.ecns.students.interfaces import (
     22from kofacustom.edocons.students.interfaces import (
    2323    ICustomStudent,
    2424    ICustomStudentUpdateByRegNo,
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/browser.py

    r16589 r16615  
    4141    )
    4242
    43 from kofacustom.ecns.students.interfaces import (
     43from kofacustom.edocons.students.interfaces import (
    4444    ICustomStudentOnlinePayment, ICustomStudentStudyCourse,
    4545    ICustomStudentStudyLevel)
    46 from kofacustom.ecns.interfaces import MessageFactory as _
     46from kofacustom.edocons.interfaces import MessageFactory as _
    4747
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/export.py

    r16589 r16615  
    1818"""Exporters for student related stuff.
    1919"""
    20 from kofacustom.ecns.students.interfaces import (
     20from kofacustom.edocons.students.interfaces import (
    2121    ICustomStudent,
    2222    ICustomStudentStudyCourse,
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/interfaces.py

    r16589 r16615  
    2525    INigeriaStudentUpdateByRegNo, INigeriaStudentUpdateByMatricNo,
    2626    )
    27 from kofacustom.ecns.payments.interfaces import ICustomOnlinePayment
    28 from kofacustom.ecns.interfaces import MessageFactory as _
     27from kofacustom.edocons.payments.interfaces import ICustomOnlinePayment
     28from kofacustom.edocons.interfaces import MessageFactory as _
    2929
    3030class ICustomStudentBase(INigeriaStudentBase):
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/payments.py

    r16589 r16615  
    2626from kofacustom.nigeria.students.payments import (
    2727    NigeriaStudentOnlinePayment, NigeriaStudentOnlinePaymentFactory)
    28 from kofacustom.ecns.students.interfaces import ICustomStudentOnlinePayment
     28from kofacustom.edocons.students.interfaces import ICustomStudentOnlinePayment
    2929
    3030class CustomStudentOnlinePayment(NigeriaStudentOnlinePayment):
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/student.py

    r16589 r16615  
    2626from waeup.kofa.utils.helpers import get_current_principal
    2727from kofacustom.nigeria.students.student import NigeriaStudent
    28 from kofacustom.ecns.students.interfaces import ICustomStudent
     28from kofacustom.edocons.students.interfaces import ICustomStudent
    2929
    3030
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/studycourse.py

    r16589 r16615  
    2727from waeup.kofa.students.workflow import CLEARED, RETURNING, PAID
    2828from kofacustom.nigeria.students.studycourse import NigeriaStudentStudyCourse
    29 from kofacustom.ecns.students.interfaces import ICustomStudentStudyCourse
     29from kofacustom.edocons.students.interfaces import ICustomStudentStudyCourse
    3030
    3131class CustomStudentStudyCourse(NigeriaStudentStudyCourse):
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/studylevel.py

    r16589 r16615  
    2828    CourseTicketFactory, StudentStudyLevelFactory)
    2929from waeup.kofa.students.interfaces import IStudentNavigation
    30 from kofacustom.ecns.students.interfaces import (
     30from kofacustom.edocons.students.interfaces import (
    3131    ICustomStudentStudyLevel, ICustomCourseTicket)
    3232
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/tests/test_browser.py

    r16589 r16615  
    3434    IExtFileStore, IFileStoreNameChooser)
    3535from waeup.kofa.students.interfaces import IStudentsUtils
    36 from kofacustom.ecns.testing import FunctionalLayer
     36from kofacustom.edocons.testing import FunctionalLayer
    3737
    3838
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/tests/test_export.py

    r16591 r16615  
    66from waeup.kofa.students.tests.test_batching import (
    77    StudentImportExportSetup, curr_year)
    8 from kofacustom.ecns.utils.utils import CustomKofaUtils
    9 from kofacustom.ecns.students.export import (
     8from kofacustom.edocons.utils.utils import CustomKofaUtils
     9from kofacustom.edocons.students.export import (
    1010    CustomStudentExporter, CustomStudentPaymentExporter)
    11 from kofacustom.ecns.testing import FunctionalLayer
     11from kofacustom.edocons.testing import FunctionalLayer
    1212
    1313
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/tests/test_student.py

    r16589 r16615  
    2222from zope.interface import verify
    2323from waeup.kofa.testing import FunctionalTestCase
    24 from kofacustom.ecns.students.student import CustomStudent, CustomStudentFactory
    25 from kofacustom.ecns.students.studycourse import (
     24from kofacustom.edocons.students.student import CustomStudent, CustomStudentFactory
     25from kofacustom.edocons.students.studycourse import (
    2626    CustomStudentStudyCourse, CustomStudentStudyCourseFactory)
    27 from kofacustom.ecns.students.studylevel import (
     27from kofacustom.edocons.students.studylevel import (
    2828    CustomStudentStudyLevel, CustomCourseTicket,
    2929    CustomStudentStudyLevelFactory,
    3030    CustomCourseTicketFactory)
    31 from kofacustom.ecns.students.interfaces import (
     31from kofacustom.edocons.students.interfaces import (
    3232    ICustomStudent, ICustomStudentStudyCourse,
    3333    ICustomStudentStudyLevel, ICustomCourseTicket)
    34 from kofacustom.ecns.testing import FunctionalLayer
     34from kofacustom.edocons.testing import FunctionalLayer
    3535
    3636
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/utils.py

    r16589 r16615  
    2121    CLEARED, RETURNING, PAID, REGISTERED, VALIDATED)
    2222from kofacustom.nigeria.students.utils import NigeriaStudentsUtils
    23 from kofacustom.ecns.interfaces import MessageFactory as _
     23from kofacustom.edocons.interfaces import MessageFactory as _
    2424
    2525class CustomStudentsUtils(NigeriaStudentsUtils):
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/viewlets.py

    r16589 r16615  
    2020from waeup.kofa.interfaces import REQUESTED
    2121from waeup.kofa.browser.viewlets import ManageActionButton
    22 from kofacustom.ecns.students.interfaces import (
     22from kofacustom.edocons.students.interfaces import (
    2323    ICustomStudentStudyCourse, ICustomStudentStudyLevel)
    2424from waeup.kofa.students.fileviewlets import (
Note: See TracChangeset for help on using the changeset viewer.