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:
9 edited
1 moved

Legend:

Unmodified
Added
Removed
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/applicant.py

    r11687 r11832  
    2222from waeup.kofa.utils.helpers import attrs_to_fields
    2323from waeup.kofa.applicants.applicant import Applicant
    24 from kofacustom.sampleuni.applicants.interfaces import(
     24from kofacustom.pcn.applicants.interfaces import(
    2525    ICustomApplicant, ICustomApplicantEdit)
    2626
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/batching.py

    r11687 r11832  
    2020from waeup.kofa.utils.batching import BatchProcessor
    2121from waeup.kofa.applicants.batching import ApplicantProcessor
    22 from kofacustom.sampleuni.applicants.interfaces import ICustomApplicant
     22from kofacustom.pcn.applicants.interfaces import ICustomApplicant
    2323
    2424class CustomApplicantProcessor(ApplicantProcessor):
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/browser.py

    r11687 r11832  
    2121from waeup.kofa.applicants.browser import (
    2222    ApplicantRegistrationPage, ApplicantsContainerPage)
    23 from kofacustom.sampleuni.interfaces import MessageFactory as _
     23from kofacustom.pcn.interfaces import MessageFactory as _
    2424
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/export.py

    r11687 r11832  
    2121from waeup.kofa.applicants.interfaces import IApplicantBaseData
    2222from waeup.kofa.applicants.export import ApplicantsExporter
    23 from kofacustom.sampleuni.applicants.interfaces import ICustomApplicant
     23from kofacustom.pcn.applicants.interfaces import ICustomApplicant
    2424
    2525class CustomApplicantsExporter(ApplicantsExporter):
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/interfaces.py

    r11687 r11832  
    2424    IApplicantEdit,
    2525    )
    26 from kofacustom.sampleuni.interfaces import MessageFactory as _
     26from kofacustom.pcn.interfaces import MessageFactory as _
    2727
    2828class ICustomApplicant(IApplicantBaseData):
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/payment.py

    r11687 r11832  
    2424from waeup.kofa.applicants.payment import ApplicantOnlinePayment
    2525from waeup.kofa.utils.helpers import attrs_to_fields
    26 from kofacustom.sampleuni.applicants.interfaces import ICustomApplicantOnlinePayment
     26from kofacustom.pcn.applicants.interfaces import ICustomApplicantOnlinePayment
    2727
    2828class CustomApplicantOnlinePayment(ApplicantOnlinePayment):
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/tests/test_applicant.py

    r11687 r11832  
    3030from waeup.kofa.interfaces import IFileStoreHandler, IFileStoreNameChooser
    3131from waeup.kofa.testing import FunctionalTestCase
    32 from kofacustom.sampleuni.applicants.applicant import (
     32from kofacustom.pcn.applicants.applicant import (
    3333    CustomApplicant, CustomApplicantFactory,
    3434    )
    35 from kofacustom.sampleuni.applicants.interfaces import ICustomApplicant
    36 from kofacustom.sampleuni.testing import FunctionalLayer
     35from kofacustom.pcn.applicants.interfaces import ICustomApplicant
     36from kofacustom.pcn.testing import FunctionalLayer
    3737
    3838class CustomApplicantTest(FunctionalTestCase):
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/tests/test_browser.py

    r11687 r11832  
    2424from zope.catalog.interfaces import ICatalog
    2525from zope.intid.interfaces import IIntIds
    26 from kofacustom.sampleuni.testing import FunctionalLayer
     26from kofacustom.pcn.testing import FunctionalLayer
    2727from waeup.kofa.schoolgrades import ResultEntry
    2828from waeup.kofa.utils.utils import KofaUtils
    2929from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup
    3030from waeup.kofa.applicants.tests.test_batching import ApplicantImportExportSetup
    31 from kofacustom.sampleuni.applicants.export import CustomApplicantsExporter
    32 from kofacustom.sampleuni.applicants.batching import CustomApplicantProcessor
     31from kofacustom.pcn.applicants.export import CustomApplicantsExporter
     32from kofacustom.pcn.applicants.batching import CustomApplicantProcessor
    3333
    3434class CustomApplicantUITests(ApplicantsFullSetup):
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/utils.py

    r11687 r11832  
    2020
    2121from waeup.kofa.applicants.utils import ApplicantsUtils
    22 from kofacustom.sampleuni.interfaces import MessageFactory as _
     22from kofacustom.pcn.interfaces import MessageFactory as _
    2323
    2424class ApplicantsUtils(ApplicantsUtils):
Note: See TracChangeset for help on using the changeset viewer.