Ignore:
Timestamp:
9 Nov 2014, 08:44:55 (10 years ago)
Author:
Henrik Bettermann
Message:

Repace skeleton by wdu.

Set ports.

Set version number.

Set manager password.

Location:
main/kofacustom.wdu/trunk/src/kofacustom/wdu
Files:
13 edited
1 moved

Legend:

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

    r10765 r11940  
    2424students, studycourses, payment tickets and accommodation tickets.
    2525"""
    26 from kofacustom.skeleton.students.interfaces import (
     26from kofacustom.wdu.students.interfaces import (
    2727    ICustomStudent, ICustomStudentUpdateByRegNo,
    2828    ICustomStudentUpdateByMatricNo,
  • main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/browser.py

    r10765 r11940  
    4141    )
    4242
    43 from kofacustom.skeleton.students.interfaces import (
     43from kofacustom.wdu.students.interfaces import (
    4444    ICustomStudentOnlinePayment, ICustomStudentStudyCourse,
    4545    ICustomStudentStudyLevel)
    46 from kofacustom.skeleton.interfaces import MessageFactory as _
     46from kofacustom.wdu.interfaces import MessageFactory as _
    4747
  • main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/export.py

    r11545 r11940  
    1818"""Exporters for student related stuff.
    1919"""
    20 from kofacustom.skeleton.students.interfaces import (
     20from kofacustom.wdu.students.interfaces import (
    2121    ICustomStudent,
    2222    ICustomStudentStudyCourse,
  • main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/interfaces.py

    r10765 r11940  
    2424    INigeriaStudentUpdateByRegNo, INigeriaStudentUpdateByMatricNo,
    2525    )
    26 from kofacustom.skeleton.payments.interfaces import ICustomOnlinePayment
    27 from kofacustom.skeleton.interfaces import MessageFactory as _
     26from kofacustom.wdu.payments.interfaces import ICustomOnlinePayment
     27from kofacustom.wdu.interfaces import MessageFactory as _
    2828
    2929class ICustomStudentBase(INigeriaStudentBase):
  • main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/payments.py

    r10765 r11940  
    2626    StudentOnlinePayment, StudentOnlinePaymentFactory)
    2727from waeup.kofa.utils.helpers import attrs_to_fields
    28 from kofacustom.skeleton.students.interfaces import ICustomStudentOnlinePayment
     28from kofacustom.wdu.students.interfaces import ICustomStudentOnlinePayment
    2929
    3030class CustomStudentOnlinePayment(StudentOnlinePayment):
  • main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/student.py

    r10765 r11940  
    2626from waeup.kofa.utils.helpers import get_current_principal
    2727from kofacustom.nigeria.students.student import NigeriaStudent
    28 from kofacustom.skeleton.students.interfaces import ICustomStudent
     28from kofacustom.wdu.students.interfaces import ICustomStudent
    2929
    3030
  • main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/studycourse.py

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

    r10765 r11940  
    2828    CourseTicketFactory, StudentStudyLevelFactory)
    2929from waeup.kofa.students.interfaces import IStudentNavigation
    30 from kofacustom.skeleton.students.interfaces import (
     30from kofacustom.wdu.students.interfaces import (
    3131    ICustomStudentStudyLevel, ICustomCourseTicket)
    3232
  • main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/tests/test_browser.py

    r10765 r11940  
    3434    IExtFileStore, IFileStoreNameChooser)
    3535from waeup.kofa.students.interfaces import IStudentsUtils
    36 from kofacustom.skeleton.testing import FunctionalLayer
     36from kofacustom.wdu.testing import FunctionalLayer
    3737
  • main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/tests/test_export.py

    r11813 r11940  
    55from waeup.kofa.schoolgrades import ResultEntry
    66from waeup.kofa.students.tests.test_batching import StudentImportExportSetup
    7 from kofacustom.skeleton.utils.utils import CustomKofaUtils
    8 from kofacustom.skeleton.students.export import (
     7from kofacustom.wdu.utils.utils import CustomKofaUtils
     8from kofacustom.wdu.students.export import (
    99    CustomStudentsExporter, CustomStudentPaymentsExporter)
    10 from kofacustom.skeleton.testing import FunctionalLayer
     10from kofacustom.wdu.testing import FunctionalLayer
    1111
    1212
  • main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/tests/test_student.py

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

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

    r10765 r11940  
    2020from waeup.kofa.interfaces import REQUESTED
    2121from waeup.kofa.browser.viewlets import ManageActionButton
    22 from kofacustom.skeleton.students.interfaces import (
     22from kofacustom.wdu.students.interfaces import (
    2323    ICustomStudentStudyCourse, ICustomStudentStudyLevel)
    2424from waeup.kofa.students.viewlets import (
Note: See TracChangeset for help on using the changeset viewer.