Ignore:
Timestamp:
15 Mar 2023, 12:27:16 (19 months ago)
Author:
Henrik Bettermann
Message:

Rename skeleton koa.

Location:
main/kofacustom.koa/trunk/src/kofacustom/koa/applicants
Files:
9 edited

Legend:

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

    r16717 r17357  
    2222from waeup.kofa.utils.helpers import attrs_to_fields
    2323from kofacustom.nigeria.applicants.applicant import NigeriaApplicant
    24 from kofacustom.skeleton.applicants.interfaces import(
     24from kofacustom.koa.applicants.interfaces import(
    2525    ICustomApplicant, ICustomUGApplicantEdit, ICustomPGApplicantEdit, IPUTMEApplicantEdit)
    2626
  • main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/batching.py

    r16717 r17357  
    2020from kofacustom.nigeria.applicants.batching import NigeriaApplicantProcessor
    2121from waeup.kofa.applicants.batching import ApplicantOnlinePaymentProcessor
    22 from kofacustom.skeleton.applicants.interfaces import (
     22from kofacustom.koa.applicants.interfaces import (
    2323    ICustomApplicant,
    2424    ICustomApplicantUpdateByRegNo,
  • main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/browser.py

    r16718 r17357  
    4040    PG_OMIT_EDIT_FIELDS,
    4141    )
    42 from kofacustom.skeleton.applicants.interfaces import (
     42from kofacustom.koa.applicants.interfaces import (
    4343    ICustomPGApplicant, ICustomUGApplicant, ICustomApplicant,
    4444    ICustomPGApplicantEdit, ICustomUGApplicantEdit,
     
    4646    )
    4747
    48 from kofacustom.skeleton.interfaces import MessageFactory as _
     48from kofacustom.koa.interfaces import MessageFactory as _
    4949
    5050class CustomApplicantEditFormPage(NigeriaApplicantEditFormPage):
  • main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/export.py

    r16717 r17357  
    2424from kofacustom.nigeria.applicants.interfaces import (
    2525    INigeriaUGApplicant, INigeriaPGApplicant)
    26 from kofacustom.skeleton.applicants.interfaces import (
     26from kofacustom.koa.applicants.interfaces import (
    2727    ICustomUGApplicant, ICustomPGApplicant)
    2828
  • main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/interfaces.py

    r16717 r17357  
    3737    IPUTMEApplicantEdit,
    3838    )
    39 from kofacustom.skeleton.interfaces import MessageFactory as _
    40 from kofacustom.skeleton.payments.interfaces import ICustomOnlinePayment
     39from kofacustom.koa.interfaces import MessageFactory as _
     40from kofacustom.koa.payments.interfaces import ICustomOnlinePayment
    4141
    4242class ICustomUGApplicant(INigeriaUGApplicant):
  • main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/payment.py

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

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

    r16717 r17357  
    2525from zope.intid.interfaces import IIntIds
    2626from hurry.workflow.interfaces import IWorkflowState
    27 from kofacustom.skeleton.testing import FunctionalLayer
     27from kofacustom.koa.testing import FunctionalLayer
    2828from waeup.kofa.browser.tests.test_pdf import samples_dir
    2929from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup
    3030from waeup.kofa.applicants.tests.test_batching import ApplicantImportExportSetup
    31 from kofacustom.skeleton.applicants.export import CustomApplicantExporter
    32 from kofacustom.skeleton.applicants.batching import CustomApplicantProcessor
     31from kofacustom.koa.applicants.export import CustomApplicantExporter
     32from kofacustom.koa.applicants.batching import CustomApplicantProcessor
    3333
    3434class CustomApplicantUITests(ApplicantsFullSetup):
  • main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/utils.py

    r16717 r17357  
    2222from waeup.kofa.applicants.workflow import (INITIALIZED,
    2323    STARTED, PAID, ADMITTED, NOT_ADMITTED, SUBMITTED, CREATED)
    24 from kofacustom.skeleton.interfaces import MessageFactory as _
     24from kofacustom.koa.interfaces import MessageFactory as _
    2525
    2626
Note: See TracChangeset for help on using the changeset viewer.