Ignore:
Timestamp:
13 Oct 2014, 10:40:59 (10 years ago)
Author:
Henrik Bettermann
Message:

Replace 'sampleuni' by 'pcn'.

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

Legend:

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

    r11687 r11832  
    2424students, studycourses, payment tickets and accommodation tickets.
    2525"""
    26 from kofacustom.sampleuni.students.interfaces import (
     26from kofacustom.pcn.students.interfaces import (
    2727    ICustomStudent, ICustomStudentUpdateByRegNo,
    2828    ICustomStudentUpdateByMatricNo,
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/browser.py

    r11687 r11832  
    3232from waeup.kofa.students.interfaces import IStudentsUtils, ICourseTicket
    3333from waeup.kofa.students.workflow import FORBIDDEN_POSTGRAD_TRANS
    34 from kofacustom.sampleuni.students.interfaces import (
     34from kofacustom.pcn.students.interfaces import (
    3535    ICustomStudentOnlinePayment, ICustomStudentStudyCourse,
    3636    ICustomStudentStudyLevel)
    37 from kofacustom.sampleuni.interfaces import MessageFactory as _
     37from kofacustom.pcn.interfaces import MessageFactory as _
    3838
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/export.py

    r11687 r11832  
    1818"""Exporters for student related stuff.
    1919"""
    20 from kofacustom.sampleuni.students.interfaces import (
     20from kofacustom.pcn.students.interfaces import (
    2121    ICustomStudent,
    2222    ICustomStudentStudyCourse,
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/interfaces.py

    r11687 r11832  
    2424    IStudentUpdateByRegNo, IStudentUpdateByMatricNo,
    2525    )
    26 from kofacustom.sampleuni.payments.interfaces import ICustomOnlinePayment
    27 from kofacustom.sampleuni.interfaces import MessageFactory as _
     26from kofacustom.pcn.payments.interfaces import ICustomOnlinePayment
     27from kofacustom.pcn.interfaces import MessageFactory as _
    2828
    2929class ICustomStudentBase(IStudentBase):
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/payments.py

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

    r11687 r11832  
    2626from waeup.kofa.utils.helpers import get_current_principal
    2727from waeup.kofa.students.student import Student
    28 from kofacustom.sampleuni.students.interfaces import ICustomStudent
     28from kofacustom.pcn.students.interfaces import ICustomStudent
    2929
    3030
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/studycourse.py

    r11687 r11832  
    2727from waeup.kofa.students.workflow import CLEARED, RETURNING, PAID
    2828from waeup.kofa.students.studycourse import StudentStudyCourse
    29 from kofacustom.sampleuni.students.interfaces import ICustomStudentStudyCourse
     29from kofacustom.pcn.students.interfaces import ICustomStudentStudyCourse
    3030
    3131class CustomStudentStudyCourse(StudentStudyCourse):
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/studylevel.py

    r11687 r11832  
    2828    CourseTicketFactory, StudentStudyLevelFactory)
    2929from waeup.kofa.students.interfaces import IStudentNavigation
    30 from kofacustom.sampleuni.students.interfaces import (
     30from kofacustom.pcn.students.interfaces import (
    3131    ICustomStudentStudyLevel, ICustomCourseTicket)
    3232
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/tests/test_browser.py

    r11687 r11832  
    3434    IExtFileStore, IFileStoreNameChooser)
    3535from waeup.kofa.students.interfaces import IStudentsUtils
    36 from kofacustom.sampleuni.testing import FunctionalLayer
     36from kofacustom.pcn.testing import FunctionalLayer
    3737
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/tests/test_export.py

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

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

    r11687 r11832  
    2121    CLEARED, RETURNING, PAID, REGISTERED, VALIDATED)
    2222from waeup.kofa.students.utils import StudentsUtils
    23 from kofacustom.sampleuni.interfaces import MessageFactory as _
     23from kofacustom.pcn.interfaces import MessageFactory as _
    2424
    2525class CustomStudentsUtils(StudentsUtils):
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/viewlets.py

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