Changeset 11832 for main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants
- Timestamp:
- 13 Oct 2014, 10:40:59 (10 years ago)
- 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 22 22 from waeup.kofa.utils.helpers import attrs_to_fields 23 23 from waeup.kofa.applicants.applicant import Applicant 24 from kofacustom. sampleuni.applicants.interfaces import(24 from kofacustom.pcn.applicants.interfaces import( 25 25 ICustomApplicant, ICustomApplicantEdit) 26 26 -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/batching.py
r11687 r11832 20 20 from waeup.kofa.utils.batching import BatchProcessor 21 21 from waeup.kofa.applicants.batching import ApplicantProcessor 22 from kofacustom. sampleuni.applicants.interfaces import ICustomApplicant22 from kofacustom.pcn.applicants.interfaces import ICustomApplicant 23 23 24 24 class CustomApplicantProcessor(ApplicantProcessor): -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/browser.py
r11687 r11832 21 21 from waeup.kofa.applicants.browser import ( 22 22 ApplicantRegistrationPage, ApplicantsContainerPage) 23 from kofacustom. sampleuni.interfaces import MessageFactory as _23 from kofacustom.pcn.interfaces import MessageFactory as _ 24 24 -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/export.py
r11687 r11832 21 21 from waeup.kofa.applicants.interfaces import IApplicantBaseData 22 22 from waeup.kofa.applicants.export import ApplicantsExporter 23 from kofacustom. sampleuni.applicants.interfaces import ICustomApplicant23 from kofacustom.pcn.applicants.interfaces import ICustomApplicant 24 24 25 25 class CustomApplicantsExporter(ApplicantsExporter): -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/interfaces.py
r11687 r11832 24 24 IApplicantEdit, 25 25 ) 26 from kofacustom. sampleuni.interfaces import MessageFactory as _26 from kofacustom.pcn.interfaces import MessageFactory as _ 27 27 28 28 class ICustomApplicant(IApplicantBaseData): -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/payment.py
r11687 r11832 24 24 from waeup.kofa.applicants.payment import ApplicantOnlinePayment 25 25 from waeup.kofa.utils.helpers import attrs_to_fields 26 from kofacustom. sampleuni.applicants.interfaces import ICustomApplicantOnlinePayment26 from kofacustom.pcn.applicants.interfaces import ICustomApplicantOnlinePayment 27 27 28 28 class CustomApplicantOnlinePayment(ApplicantOnlinePayment): -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/tests/test_applicant.py
r11687 r11832 30 30 from waeup.kofa.interfaces import IFileStoreHandler, IFileStoreNameChooser 31 31 from waeup.kofa.testing import FunctionalTestCase 32 from kofacustom. sampleuni.applicants.applicant import (32 from kofacustom.pcn.applicants.applicant import ( 33 33 CustomApplicant, CustomApplicantFactory, 34 34 ) 35 from kofacustom. sampleuni.applicants.interfaces import ICustomApplicant36 from kofacustom. sampleuni.testing import FunctionalLayer35 from kofacustom.pcn.applicants.interfaces import ICustomApplicant 36 from kofacustom.pcn.testing import FunctionalLayer 37 37 38 38 class CustomApplicantTest(FunctionalTestCase): -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/tests/test_browser.py
r11687 r11832 24 24 from zope.catalog.interfaces import ICatalog 25 25 from zope.intid.interfaces import IIntIds 26 from kofacustom. sampleuni.testing import FunctionalLayer26 from kofacustom.pcn.testing import FunctionalLayer 27 27 from waeup.kofa.schoolgrades import ResultEntry 28 28 from waeup.kofa.utils.utils import KofaUtils 29 29 from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup 30 30 from waeup.kofa.applicants.tests.test_batching import ApplicantImportExportSetup 31 from kofacustom. sampleuni.applicants.export import CustomApplicantsExporter32 from kofacustom. sampleuni.applicants.batching import CustomApplicantProcessor31 from kofacustom.pcn.applicants.export import CustomApplicantsExporter 32 from kofacustom.pcn.applicants.batching import CustomApplicantProcessor 33 33 34 34 class CustomApplicantUITests(ApplicantsFullSetup): -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/utils.py
r11687 r11832 20 20 21 21 from waeup.kofa.applicants.utils import ApplicantsUtils 22 from kofacustom. sampleuni.interfaces import MessageFactory as _22 from kofacustom.pcn.interfaces import MessageFactory as _ 23 23 24 24 class ApplicantsUtils(ApplicantsUtils):
Note: See TracChangeset for help on using the changeset viewer.