Changeset 17357 for main/kofacustom.koa
- Timestamp:
- 15 Mar 2023, 12:27:16 (20 months ago)
- Location:
- main/kofacustom.koa/trunk
- Files:
-
- 47 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.koa/trunk/README.txt
r17349 r17357 1 waeup. skeleton2 ********* *****1 waeup.koa 2 ********* 3 3 4 `waeup. skeleton` is a Python package providing a student information4 `waeup.koa` is a Python package providing a student information 5 5 portal based on WAeUP Kofa. 6 7 This is a skelton package which can be used to create customized version of Kofa.8 6 9 7 For generic install instructions please see sources/waeup.kofa/docs/INSTALL.txt. 10 8 11 Buildout has to be run in two steps :9 Buildout has to be run in two steps (assuming we are in the folder where buildout.cfg is located): 12 10 13 (py27)$ ./bin/buildout -c buildout-init.cfg11 ../py27/bin/buildout -c buildout-init.cfg 14 12 15 (py27)$ ./bin/buildout 16 17 Repository 18 ========== 19 20 The Subversion_ repository location of this package is 21 22 https://svn.waeup.org/repos/main/waeup.skeleton/ 23 24 .. _Subversion: http://subversion.apache.org/ 13 ../py27/bin/buildout -
main/kofacustom.koa/trunk/buildout-zeo.cfg
r11394 r17357 118 118 # See http://pypi.python.org/pypi/zc.recipe.egg for details... 119 119 recipe = zc.recipe.egg 120 eggs = kofacustom. skeleton[beaker, diazo]120 eggs = kofacustom.koa [beaker, diazo] 121 121 arguments = "${buildout:parts-directory}/etc/zeo1.conf" 122 122 scripts = kofactl=zeo_client1 … … 125 125 # See http://pypi.python.org/pypi/zc.recipe.egg for details... 126 126 recipe = zc.recipe.egg 127 eggs = kofacustom. skeleton[beaker, diazo]127 eggs = kofacustom.koa [beaker, diazo] 128 128 arguments = "${buildout:parts-directory}/etc/zeo2.conf" 129 129 scripts = kofactl=zeo_client2 -
main/kofacustom.koa/trunk/buildout.cfg
r11518 r17357 66 66 # number of preopened paster threads, default 10 67 67 threadpool_workers = 10 68 devel_pkg = kofacustom. skeleton68 devel_pkg = kofacustom.koa 69 69 70 70 [app] 71 71 # This creates all scripts in bin/. The kofactl created here is 'faulty'. 72 72 recipe = zc.recipe.egg 73 eggs = kofacustom. skeleton[beaker, diazo]73 eggs = kofacustom.koa [beaker, diazo] 74 74 z3c.evalexception>=2.0 75 75 Paste … … 85 85 # fixed path to zdaemon.conf as argument. 86 86 recipe = zc.recipe.egg 87 eggs = kofacustom. skeleton[beaker, diazo]87 eggs = kofacustom.koa [beaker, diazo] 88 88 arguments = "${buildout:parts-directory}/etc/zdaemon.conf" 89 89 scripts = kofactl=kofactl … … 100 100 [test] 101 101 recipe = zc.recipe.testrunner 102 eggs = kofacustom. skeleton[beaker, test]102 eggs = kofacustom.koa [beaker, test] 103 103 defaults = ['--tests-pattern', '^f?tests$', '-v'] 104 104 … … 106 106 [i18n] 107 107 recipe = z3c.recipe.i18n:i18n 108 packages = kofacustom. skeleton109 eggs = kofacustom. skeleton110 domain = kofacustom. skeleton111 output = src/kofacustom/ skeleton/locales108 packages = kofacustom.koa 109 eggs = kofacustom.koa 110 domain = kofacustom.koa 111 output = src/kofacustom/koa/locales 112 112 zcml = 113 113 … … 116 116 [zpasswd] 117 117 recipe = z3c.recipe.dev:script 118 eggs = kofacustom. skeleton118 eggs = kofacustom.koa 119 119 module = zope.app.server.zpasswd 120 120 method = main … … 184 184 [coverage-detect] 185 185 recipe = zc.recipe.testrunner 186 eggs = kofacustom. skeleton[beaker]186 eggs = kofacustom.koa[beaker] 187 187 defaults = ['--tests-pattern', '^f?tests$', '-v', '--coverage', 'coverage'] 188 188 … … 205 205 diazo [wsgi] 206 206 PasteScript 207 kofacustom. skeleton[beaker, diazo]207 kofacustom.koa [beaker, diazo] -
main/kofacustom.koa/trunk/etc/profile.ini.in
r10765 r17357 57 57 58 58 [app:app] 59 use = egg:kofacustom. skeleton59 use = egg:kofacustom.koa 60 60 61 61 [pipeline:main] -
main/kofacustom.koa/trunk/etc/site.zcml.in
r17297 r17357 2 2 xmlns:browser="http://namespaces.zope.org/browser" 3 3 xmlns:kofa="http://namespaces.waeup.org/kofa" 4 i18n_domain="kofacustom. skeleton">4 i18n_domain="kofacustom.koa"> 5 5 6 <include package="kofacustom. skeleton" />7 <include package="kofacustom. skeleton" file="mail.zcml" />6 <include package="kofacustom.koa" /> 7 <include package="kofacustom.koa" file="mail.zcml" /> 8 8 9 9 <!-- install job container … … 30 30 path="${buildout:directory}/var/datacenter" /> 31 31 32 <configure i18n_domain="kofacustom. skeleton">32 <configure i18n_domain="kofacustom.koa"> 33 33 34 34 <unauthenticatedPrincipal id="zope.anybody" -
main/kofacustom.koa/trunk/setup.py
r17349 r17357 47 47 ) 48 48 49 setup(name = 'kofacustom. skeleton',49 setup(name = 'kofacustom.koa', 50 50 version = version, 51 51 description = "A customized waeup.kofa", -
main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/applicant.py
r16717 r17357 22 22 from waeup.kofa.utils.helpers import attrs_to_fields 23 23 from kofacustom.nigeria.applicants.applicant import NigeriaApplicant 24 from kofacustom. skeleton.applicants.interfaces import(24 from kofacustom.koa.applicants.interfaces import( 25 25 ICustomApplicant, ICustomUGApplicantEdit, ICustomPGApplicantEdit, IPUTMEApplicantEdit) 26 26 -
main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/batching.py
r16717 r17357 20 20 from kofacustom.nigeria.applicants.batching import NigeriaApplicantProcessor 21 21 from waeup.kofa.applicants.batching import ApplicantOnlinePaymentProcessor 22 from kofacustom. skeleton.applicants.interfaces import (22 from kofacustom.koa.applicants.interfaces import ( 23 23 ICustomApplicant, 24 24 ICustomApplicantUpdateByRegNo, -
main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/browser.py
r16718 r17357 40 40 PG_OMIT_EDIT_FIELDS, 41 41 ) 42 from kofacustom. skeleton.applicants.interfaces import (42 from kofacustom.koa.applicants.interfaces import ( 43 43 ICustomPGApplicant, ICustomUGApplicant, ICustomApplicant, 44 44 ICustomPGApplicantEdit, ICustomUGApplicantEdit, … … 46 46 ) 47 47 48 from kofacustom. skeleton.interfaces import MessageFactory as _48 from kofacustom.koa.interfaces import MessageFactory as _ 49 49 50 50 class CustomApplicantEditFormPage(NigeriaApplicantEditFormPage): -
main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/export.py
r16717 r17357 24 24 from kofacustom.nigeria.applicants.interfaces import ( 25 25 INigeriaUGApplicant, INigeriaPGApplicant) 26 from kofacustom. skeleton.applicants.interfaces import (26 from kofacustom.koa.applicants.interfaces import ( 27 27 ICustomUGApplicant, ICustomPGApplicant) 28 28 -
main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/interfaces.py
r16717 r17357 37 37 IPUTMEApplicantEdit, 38 38 ) 39 from kofacustom. skeleton.interfaces import MessageFactory as _40 from kofacustom. skeleton.payments.interfaces import ICustomOnlinePayment39 from kofacustom.koa.interfaces import MessageFactory as _ 40 from kofacustom.koa.payments.interfaces import ICustomOnlinePayment 41 41 42 42 class ICustomUGApplicant(INigeriaUGApplicant): -
main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/payment.py
r16717 r17357 24 24 from waeup.kofa.applicants.payment import ApplicantOnlinePayment 25 25 from waeup.kofa.utils.helpers import attrs_to_fields 26 from kofacustom. skeleton.applicants.interfaces import ICustomApplicantOnlinePayment26 from kofacustom.koa.applicants.interfaces import ICustomApplicantOnlinePayment 27 27 28 28 class CustomApplicantOnlinePayment(ApplicantOnlinePayment): -
main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/tests/test_applicant.py
r16717 r17357 30 30 from waeup.kofa.interfaces import IFileStoreHandler, IFileStoreNameChooser 31 31 from waeup.kofa.testing import FunctionalTestCase 32 from kofacustom. skeleton.applicants.applicant import (32 from kofacustom.koa.applicants.applicant import ( 33 33 CustomApplicant, CustomApplicantFactory, 34 34 ) 35 from kofacustom. skeleton.applicants.interfaces import ICustomApplicant36 from kofacustom. skeleton.testing import FunctionalLayer35 from kofacustom.koa.applicants.interfaces import ICustomApplicant 36 from kofacustom.koa.testing import FunctionalLayer 37 37 38 38 class CustomApplicantTest(FunctionalTestCase): -
main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/tests/test_browser.py
r16717 r17357 25 25 from zope.intid.interfaces import IIntIds 26 26 from hurry.workflow.interfaces import IWorkflowState 27 from kofacustom. skeleton.testing import FunctionalLayer27 from kofacustom.koa.testing import FunctionalLayer 28 28 from waeup.kofa.browser.tests.test_pdf import samples_dir 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. skeleton.applicants.export import CustomApplicantExporter32 from kofacustom. skeleton.applicants.batching import CustomApplicantProcessor31 from kofacustom.koa.applicants.export import CustomApplicantExporter 32 from kofacustom.koa.applicants.batching import CustomApplicantProcessor 33 33 34 34 class CustomApplicantUITests(ApplicantsFullSetup): -
main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/utils.py
r16717 r17357 22 22 from waeup.kofa.applicants.workflow import (INITIALIZED, 23 23 STARTED, PAID, ADMITTED, NOT_ADMITTED, SUBMITTED, CREATED) 24 from kofacustom. skeleton.interfaces import MessageFactory as _24 from kofacustom.koa.interfaces import MessageFactory as _ 25 25 26 26 -
main/kofacustom.koa/trunk/src/kofacustom/koa/browser/pages.py
r16717 r17357 21 21 LoginPage, CertificatePage, CertificateManageFormPage) 22 22 from waeup.kofa.university.interfaces import ICertificate 23 from kofacustom. skeleton.interfaces import (23 from kofacustom.koa.interfaces import ( 24 24 ICustomSessionConfiguration, ICustomSessionConfigurationAdd) 25 25 -
main/kofacustom.koa/trunk/src/kofacustom/koa/browser/tests.py
r16717 r17357 22 22 from zope.security.interfaces import Unauthorized 23 23 from waeup.kofa.testing import FunctionalTestCase 24 from kofacustom. skeleton.testing import FunctionalLayer24 from kofacustom.koa.testing import FunctionalLayer 25 25 from waeup.kofa.app import University 26 26 -
main/kofacustom.koa/trunk/src/kofacustom/koa/configuration.py
r16717 r17357 24 24 from waeup.kofa.configuration import ( 25 25 SessionConfigurationFactory, SessionConfiguration) 26 from kofacustom. skeleton.interfaces import (26 from kofacustom.koa.interfaces import ( 27 27 ICustomSessionConfiguration, ICustomSessionConfigurationAdd) 28 28 -
main/kofacustom.koa/trunk/src/kofacustom/koa/configure.zcml
r16717 r17357 1 1 <configure xmlns="http://namespaces.zope.org/zope" 2 2 xmlns:grok="http://namespaces.zope.org/grok"> 3 <include package="kofacustom. skeleton" file="locales.zcml" />3 <include package="kofacustom.koa" file="locales.zcml" /> 4 4 5 5 <!-- kofacustom.nigeria configures everything we basically need. -
main/kofacustom.koa/trunk/src/kofacustom/koa/ftesting.zcml
r17297 r17357 3 3 xmlns:browser="http://namespaces.zope.org/browser" 4 4 xmlns:kofa="http://namespaces.waeup.org/kofa" 5 i18n_domain="kofacustom. skeleton"6 package="kofacustom. skeleton"5 i18n_domain="kofacustom.koa" 6 package="kofacustom.koa" 7 7 > 8 8 9 <include package="kofacustom. skeleton" />10 <include package="kofacustom. skeleton" file="mail.zcml"/>9 <include package="kofacustom.koa" /> 10 <include package="kofacustom.koa" file="mail.zcml"/> 11 11 12 12 <!-- Where should the datacenter reside by default? --> -
main/kofacustom.koa/trunk/src/kofacustom/koa/hostels/browser.py
r15644 r17357 21 21 from waeup.kofa.hostels.browser import ( 22 22 HostelAddFormPage, HostelDisplayFormPage, HostelManageFormPage) 23 from kofacustom. skeleton.hostels.interfaces import ICustomHostel23 from kofacustom.koa.hostels.interfaces import ICustomHostel 24 24 25 25 class CustomHostelAddFormPage(HostelAddFormPage): -
main/kofacustom.koa/trunk/src/kofacustom/koa/hostels/hostel.py
r15644 r17357 23 23 from waeup.kofa.utils.helpers import attrs_to_fields 24 24 from waeup.kofa.hostels.hostel import HostelFactory, BedFactory, Hostel, Bed 25 from kofacustom. skeleton.hostels.interfaces import ICustomHostel, ICustomBed25 from kofacustom.koa.hostels.interfaces import ICustomHostel, ICustomBed 26 26 27 27 class CustomHostel(Hostel): -
main/kofacustom.koa/trunk/src/kofacustom/koa/hostels/interfaces.py
r15644 r17357 25 25 from waeup.kofa.hostels.interfaces import IHostel, IBed 26 26 27 from kofacustom. skeleton.interfaces import MessageFactory as _27 from kofacustom.koa.interfaces import MessageFactory as _ 28 28 29 29 blocks = SimpleKofaVocabulary( -
main/kofacustom.koa/trunk/src/kofacustom/koa/interfaces.py
r16724 r17357 23 23 ISessionConfiguration, academic_sessions_vocab) 24 24 25 _ = MessageFactory = zope.i18nmessageid.MessageFactory('kofacustom. skeleton')25 _ = MessageFactory = zope.i18nmessageid.MessageFactory('kofacustom.koa') 26 26 27 27 class ICustomSessionConfiguration(ISessionConfiguration): -
main/kofacustom.koa/trunk/src/kofacustom/koa/interswitch/browser.py
r16724 r17357 27 27 InterswitchPageStudent, InterswitchPageApplicant, 28 28 ) 29 from kofacustom. skeleton.students.interfaces import ICustomStudentOnlinePayment30 from kofacustom. skeleton.applicants.interfaces import ICustomApplicantOnlinePayment31 from kofacustom. skeleton.interfaces import MessageFactory as _29 from kofacustom.koa.students.interfaces import ICustomStudentOnlinePayment 30 from kofacustom.koa.applicants.interfaces import ICustomApplicantOnlinePayment 31 from kofacustom.koa.interfaces import MessageFactory as _ 32 32 33 33 PRODUCT_ID = '' # must be provided by Interswitch 34 SITE_NAME = ' skeleton.waeup.org'34 SITE_NAME = 'koa.waeup.org' 35 35 PROVIDER_ACCT = '00000000' 36 36 PROVIDER_BANK_ID = '00' 37 37 PROVIDER_ITEM_NAME = 'WAeAC' 38 INSTITUTION_NAME = ' SKELETON'38 INSTITUTION_NAME = 'koa' 39 39 CURRENCY = '566' 40 40 GATEWAY_AMT = 150.0 -
main/kofacustom.koa/trunk/src/kofacustom/koa/interswitch/tests.py
r16717 r17357 24 24 from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup 25 25 from waeup.kofa.configuration import SessionConfiguration 26 from kofacustom. skeleton.testing import FunctionalLayer26 from kofacustom.koa.testing import FunctionalLayer 27 27 28 28 # Also run tests that send requests to external servers? … … 182 182 self.assertTrue( 183 183 'zope.mgr - ' 184 'kofacustom. skeleton.interswitch.browser.CustomInterswitchPaymentRequestWebservicePageStudent - '184 'kofacustom.koa.interswitch.browser.CustomInterswitchPaymentRequestWebservicePageStudent - ' 185 185 'X1000000 - successful schoolfee payment: p3547789850240\n' 186 186 in logcontent) -
main/kofacustom.koa/trunk/src/kofacustom/koa/payments/interfaces.py
r16717 r17357 19 19 from zope import schema 20 20 from kofacustom.nigeria.payments.interfaces import INigeriaOnlinePayment 21 from kofacustom. skeleton.interfaces import MessageFactory as _21 from kofacustom.koa.interfaces import MessageFactory as _ 22 22 23 23 class ICustomOnlinePayment(INigeriaOnlinePayment): -
main/kofacustom.koa/trunk/src/kofacustom/koa/remita/webservices.py
r16717 r17357 18 18 19 19 from kofacustom.nigeria.remita.webservices import PaymentNotificationListenerWebservice 20 from kofacustom. skeleton.remita.browser import MERCHANTID, HOST, HTTPS, API_KEY20 from kofacustom.koa.remita.browser import MERCHANTID, HOST, HTTPS, API_KEY 21 21 22 22 class CustomPaymentNotificationListenerWebservice( -
main/kofacustom.koa/trunk/src/kofacustom/koa/students/batching.py
r16717 r17357 20 20 from kofacustom.nigeria.students.batching import NigeriaStudentProcessor 21 21 from waeup.kofa.students.batching import StudentOnlinePaymentProcessor 22 from kofacustom. skeleton.students.interfaces import (22 from kofacustom.koa.students.interfaces import ( 23 23 ICustomStudent, 24 24 ICustomStudentUpdateByRegNo, -
main/kofacustom.koa/trunk/src/kofacustom/koa/students/browser.py
r16718 r17357 42 42 ) 43 43 44 from kofacustom. skeleton.students.interfaces import (44 from kofacustom.koa.students.interfaces import ( 45 45 ICustomStudentOnlinePayment, ICustomStudentStudyCourse, 46 46 ICustomStudentStudyLevel) 47 from kofacustom. skeleton.interfaces import MessageFactory as _47 from kofacustom.koa.interfaces import MessageFactory as _ 48 48 49 49 class CustomPaymentsManageFormPage(PaymentsManageFormPage): 50 50 """ Page to manage the student payments. This manage form page is for 51 both students and students officers. SKELETONdoes not allow students51 both students and students officers. koa does not allow students 52 52 to remove any payment ticket. 53 53 """ -
main/kofacustom.koa/trunk/src/kofacustom/koa/students/export.py
r16717 r17357 18 18 """Exporters for student related stuff. 19 19 """ 20 from kofacustom. skeleton.students.interfaces import (20 from kofacustom.koa.students.interfaces import ( 21 21 ICustomStudent, 22 22 ICustomStudentStudyCourse, -
main/kofacustom.koa/trunk/src/kofacustom/koa/students/interfaces.py
r16717 r17357 25 25 INigeriaStudentUpdateByRegNo, INigeriaStudentUpdateByMatricNo, 26 26 ) 27 from kofacustom. skeleton.payments.interfaces import ICustomOnlinePayment28 from kofacustom. skeleton.interfaces import MessageFactory as _27 from kofacustom.koa.payments.interfaces import ICustomOnlinePayment 28 from kofacustom.koa.interfaces import MessageFactory as _ 29 29 30 30 class ICustomStudentBase(INigeriaStudentBase): -
main/kofacustom.koa/trunk/src/kofacustom/koa/students/payments.py
r16717 r17357 26 26 from kofacustom.nigeria.students.payments import ( 27 27 NigeriaStudentOnlinePayment, NigeriaStudentOnlinePaymentFactory) 28 from kofacustom. skeleton.students.interfaces import ICustomStudentOnlinePayment28 from kofacustom.koa.students.interfaces import ICustomStudentOnlinePayment 29 29 30 30 class CustomStudentOnlinePayment(NigeriaStudentOnlinePayment): -
main/kofacustom.koa/trunk/src/kofacustom/koa/students/student.py
r16717 r17357 26 26 from waeup.kofa.utils.helpers import get_current_principal 27 27 from kofacustom.nigeria.students.student import NigeriaStudent 28 from kofacustom. skeleton.students.interfaces import ICustomStudent28 from kofacustom.koa.students.interfaces import ICustomStudent 29 29 30 30 -
main/kofacustom.koa/trunk/src/kofacustom/koa/students/studycourse.py
r16717 r17357 27 27 from waeup.kofa.students.workflow import CLEARED, RETURNING, PAID 28 28 from kofacustom.nigeria.students.studycourse import NigeriaStudentStudyCourse 29 from kofacustom. skeleton.students.interfaces import ICustomStudentStudyCourse29 from kofacustom.koa.students.interfaces import ICustomStudentStudyCourse 30 30 31 31 class CustomStudentStudyCourse(NigeriaStudentStudyCourse): -
main/kofacustom.koa/trunk/src/kofacustom/koa/students/studylevel.py
r16717 r17357 28 28 CourseTicketFactory, StudentStudyLevelFactory) 29 29 from waeup.kofa.students.interfaces import IStudentNavigation 30 from kofacustom. skeleton.students.interfaces import (30 from kofacustom.koa.students.interfaces import ( 31 31 ICustomStudentStudyLevel, ICustomCourseTicket) 32 32 -
main/kofacustom.koa/trunk/src/kofacustom/koa/students/tests/test_browser.py
r16717 r17357 34 34 IExtFileStore, IFileStoreNameChooser) 35 35 from waeup.kofa.students.interfaces import IStudentsUtils 36 from kofacustom. skeleton.testing import FunctionalLayer36 from kofacustom.koa.testing import FunctionalLayer 37 37 38 38 -
main/kofacustom.koa/trunk/src/kofacustom/koa/students/tests/test_export.py
r17297 r17357 6 6 from waeup.kofa.students.tests.test_batching import ( 7 7 StudentImportExportSetup, curr_year) 8 from kofacustom. skeleton.utils.utils import CustomKofaUtils9 from kofacustom. skeleton.students.export import (8 from kofacustom.koa.utils.utils import CustomKofaUtils 9 from kofacustom.koa.students.export import ( 10 10 CustomStudentExporter, CustomStudentPaymentExporter) 11 from kofacustom. skeleton.testing import FunctionalLayer11 from kofacustom.koa.testing import FunctionalLayer 12 12 13 13 -
main/kofacustom.koa/trunk/src/kofacustom/koa/students/tests/test_student.py
r16717 r17357 22 22 from zope.interface import verify 23 23 from waeup.kofa.testing import FunctionalTestCase 24 from kofacustom. skeleton.students.student import CustomStudent, CustomStudentFactory25 from kofacustom. skeleton.students.studycourse import (24 from kofacustom.koa.students.student import CustomStudent, CustomStudentFactory 25 from kofacustom.koa.students.studycourse import ( 26 26 CustomStudentStudyCourse, CustomStudentStudyCourseFactory) 27 from kofacustom. skeleton.students.studylevel import (27 from kofacustom.koa.students.studylevel import ( 28 28 CustomStudentStudyLevel, CustomCourseTicket, 29 29 CustomStudentStudyLevelFactory, 30 30 CustomCourseTicketFactory) 31 from kofacustom. skeleton.students.interfaces import (31 from kofacustom.koa.students.interfaces import ( 32 32 ICustomStudent, ICustomStudentStudyCourse, 33 33 ICustomStudentStudyLevel, ICustomCourseTicket) 34 from kofacustom. skeleton.testing import FunctionalLayer34 from kofacustom.koa.testing import FunctionalLayer 35 35 36 36 -
main/kofacustom.koa/trunk/src/kofacustom/koa/students/utils.py
r16717 r17357 21 21 CLEARED, RETURNING, PAID, REGISTERED, VALIDATED) 22 22 from kofacustom.nigeria.students.utils import NigeriaStudentsUtils 23 from kofacustom. skeleton.interfaces import MessageFactory as _23 from kofacustom.koa.interfaces import MessageFactory as _ 24 24 25 25 class CustomStudentsUtils(NigeriaStudentsUtils): -
main/kofacustom.koa/trunk/src/kofacustom/koa/students/viewlets.py
r16717 r17357 20 20 from waeup.kofa.interfaces import REQUESTED 21 21 from waeup.kofa.browser.viewlets import ManageActionButton 22 from kofacustom. skeleton.students.interfaces import (22 from kofacustom.koa.students.interfaces import ( 23 23 ICustomStudentStudyCourse, ICustomStudentStudyLevel) 24 24 from waeup.kofa.students.fileviewlets import ( -
main/kofacustom.koa/trunk/src/kofacustom/koa/testing.py
r16717 r17357 19 19 """ 20 20 import os.path 21 import kofacustom. skeleton21 import kofacustom.koa 22 22 from zope.app.testing.functional import ZCMLLayer 23 23 24 24 ftesting_zcml = os.path.join( 25 os.path.dirname(kofacustom. skeleton.__file__), 'ftesting.zcml')25 os.path.dirname(kofacustom.koa.__file__), 'ftesting.zcml') 26 26 FunctionalLayer = ZCMLLayer(ftesting_zcml, __name__, 'FunctionalLayer', 27 27 allow_teardown=True) -
main/kofacustom.koa/trunk/src/kofacustom/koa/tests/test_configuration.py
r16717 r17357 25 25 from waeup.kofa.tests.test_configuration import ( 26 26 ConfigurationTest, SessionConfigurationFactoryTest) 27 from kofacustom. skeleton.configuration import (27 from kofacustom.koa.configuration import ( 28 28 CustomSessionConfiguration, CustomSessionConfigurationFactory) 29 from kofacustom. skeleton.interfaces import(29 from kofacustom.koa.interfaces import( 30 30 ICustomSessionConfiguration, ICustomSessionConfigurationAdd) 31 from kofacustom. skeleton.testing import FunctionalLayer31 from kofacustom.koa.testing import FunctionalLayer 32 32 33 33 class ConfigurationTest(ConfigurationTest): -
main/kofacustom.koa/trunk/src/kofacustom/koa/tests/test_datacenter.py
r16717 r17357 18 18 from waeup.kofa.datacenter import DataCenter 19 19 from waeup.kofa.testing import FunctionalTestCase 20 from kofacustom. skeleton.testing import FunctionalLayer20 from kofacustom.koa.testing import FunctionalLayer 21 21 22 22 -
main/kofacustom.koa/trunk/src/kofacustom/koa/tests/test_smtp.py
r16717 r17357 33 33 send_mail) 34 34 from waeup.kofa.testing import FunctionalTestCase 35 from kofacustom. skeleton.testing import FunctionalLayer35 from kofacustom.koa.testing import FunctionalLayer 36 36 37 37 # -
main/kofacustom.koa/trunk/src/kofacustom/koa/utils/tests.py
r16717 r17357 17 17 ## 18 18 from waeup.kofa.testing import FunctionalTestCase 19 from kofacustom. skeleton.testing import FunctionalLayer19 from kofacustom.koa.testing import FunctionalLayer 20 20 21 21 -
main/kofacustom.koa/trunk/versions.cfg
r13684 r17357 1 # Versions of packages used by kofacustom. skeleton1 # Versions of packages used by kofacustom.koa 2 2 [buildout] 3 3 extends = sources/waeup.kofa/versions.cfg
Note: See TracChangeset for help on using the changeset viewer.