Changeset 14716 for main/kofacustom.dspg/trunk
- Timestamp:
- 11 Jul 2017, 13:57:00 (7 years ago)
- Location:
- main/kofacustom.dspg/trunk
- Files:
-
- 43 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.dspg/trunk/README.txt
r14712 r14716 1 waeup.dsp ou2 ********** *1 waeup.dspg 2 ********** 3 3 4 `waeup.dsp ou` is a Python package providing a student information4 `waeup.dspg` is a Python package providing a student information 5 5 portal based on WAeUP Kofa. 6 6 … … 22 22 The Subversion_ repository location of this package is 23 23 24 https://svn.waeup.org/repos/main/waeup.dsp ou/24 https://svn.waeup.org/repos/main/waeup.dspg/ 25 25 26 26 .. _Subversion: http://subversion.apache.org/ -
main/kofacustom.dspg/trunk/buildout-zeo.cfg
r14712 r14716 118 118 # See http://pypi.python.org/pypi/zc.recipe.egg for details... 119 119 recipe = zc.recipe.egg 120 eggs = kofacustom.dsp ou[beaker, diazo]120 eggs = kofacustom.dspg [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.dsp ou[beaker, diazo]127 eggs = kofacustom.dspg [beaker, diazo] 128 128 arguments = "${buildout:parts-directory}/etc/zeo2.conf" 129 129 scripts = kofactl=zeo_client2 -
main/kofacustom.dspg/trunk/buildout.cfg
r14712 r14716 64 64 # number of preopened paster threads, default 10 65 65 threadpool_workers = 10 66 devel_pkg = kofacustom.dsp ou66 devel_pkg = kofacustom.dspg 67 67 68 68 [app] 69 69 # This creates all scripts in bin/. The kofactl created here is 'faulty'. 70 70 recipe = zc.recipe.egg 71 eggs = kofacustom.dsp ou[beaker, diazo]71 eggs = kofacustom.dspg [beaker, diazo] 72 72 z3c.evalexception>=2.0 73 73 Paste … … 83 83 # fixed path to zdaemon.conf as argument. 84 84 recipe = zc.recipe.egg 85 eggs = kofacustom.dsp ou[beaker, diazo]85 eggs = kofacustom.dspg [beaker, diazo] 86 86 arguments = "${buildout:parts-directory}/etc/zdaemon.conf" 87 87 scripts = kofactl=kofactl … … 98 98 [test] 99 99 recipe = zc.recipe.testrunner 100 eggs = kofacustom.dsp ou[beaker, test]100 eggs = kofacustom.dspg [beaker, test] 101 101 defaults = ['--tests-pattern', '^f?tests$', '-v'] 102 102 … … 104 104 [i18n] 105 105 recipe = z3c.recipe.i18n:i18n 106 packages = kofacustom.dsp ou107 eggs = kofacustom.dsp ou108 domain = kofacustom.dsp ou109 output = src/kofacustom/dsp ou/locales106 packages = kofacustom.dspg 107 eggs = kofacustom.dspg 108 domain = kofacustom.dspg 109 output = src/kofacustom/dspg/locales 110 110 zcml = 111 111 … … 114 114 [zpasswd] 115 115 recipe = z3c.recipe.dev:script 116 eggs = kofacustom.dsp ou116 eggs = kofacustom.dspg 117 117 module = zope.app.server.zpasswd 118 118 method = main … … 182 182 [coverage-detect] 183 183 recipe = zc.recipe.testrunner 184 eggs = kofacustom.dsp ou[beaker]184 eggs = kofacustom.dspg[beaker] 185 185 defaults = ['--tests-pattern', '^f?tests$', '-v', '--coverage', 'coverage'] 186 186 … … 203 203 diazo [wsgi] 204 204 PasteScript 205 kofacustom.dsp ou[beaker, diazo]205 kofacustom.dspg [beaker, diazo] -
main/kofacustom.dspg/trunk/etc/profile.ini.in
r14712 r14716 57 57 58 58 [app:app] 59 use = egg:kofacustom.dsp ou59 use = egg:kofacustom.dspg 60 60 61 61 [pipeline:main] -
main/kofacustom.dspg/trunk/etc/site.zcml.in
r14712 r14716 1 1 <configure xmlns="http://namespaces.zope.org/zope" 2 2 xmlns:kofa="http://namespaces.waeup.org/kofa" 3 i18n_domain="kofacustom.dsp ou">3 i18n_domain="kofacustom.dspg"> 4 4 5 <include package="kofacustom.dsp ou" />6 <include package="kofacustom.dsp ou" file="mail.zcml" />5 <include package="kofacustom.dspg" /> 6 <include package="kofacustom.dspg" file="mail.zcml" /> 7 7 8 8 <!-- install job container … … 29 29 path="${buildout:directory}/var/datacenter" /> 30 30 31 <configure i18n_domain="kofacustom.dsp ou">31 <configure i18n_domain="kofacustom.dspg"> 32 32 33 33 <unauthenticatedPrincipal id="zope.anybody" -
main/kofacustom.dspg/trunk/setup.py
r14712 r14716 47 47 ) 48 48 49 setup(name = 'kofacustom.dsp ou',49 setup(name = 'kofacustom.dspg', 50 50 version = version, 51 51 description = "A customized waeup.kofa", -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/applicant.py
r14712 r14716 22 22 from waeup.kofa.utils.helpers import attrs_to_fields 23 23 from kofacustom.nigeria.applicants.applicant import NigeriaApplicant 24 from kofacustom.dsp ou.applicants.interfaces import(24 from kofacustom.dspg.applicants.interfaces import( 25 25 ICustomApplicant, ICustomUGApplicantEdit, ICustomPGApplicantEdit, IPUTMEApplicantEdit) 26 26 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/batching.py
r14712 r14716 20 20 from waeup.kofa.utils.batching import BatchProcessor 21 21 from waeup.kofa.applicants.batching import ApplicantProcessor 22 from kofacustom.dsp ou.applicants.interfaces import (22 from kofacustom.dspg.applicants.interfaces import ( 23 23 ICustomApplicant, ICustomApplicantUpdateByRegNo) 24 24 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/browser.py
r14712 r14716 25 25 NigeriaPDFApplicationSlip) 26 26 27 from kofacustom.dsp ou.interfaces import MessageFactory as _27 from kofacustom.dspg.interfaces import MessageFactory as _ 28 28 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/export.py
r14712 r14716 24 24 from kofacustom.nigeria.applicants.interfaces import ( 25 25 INigeriaUGApplicant, INigeriaPGApplicant) 26 from kofacustom.dsp ou.applicants.interfaces import (26 from kofacustom.dspg.applicants.interfaces import ( 27 27 ICustomUGApplicant, ICustomPGApplicant) 28 28 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/interfaces.py
r14712 r14716 37 37 IPUTMEApplicantEdit, 38 38 ) 39 from kofacustom.dsp ou.interfaces import MessageFactory as _40 from kofacustom.dsp ou.payments.interfaces import ICustomOnlinePayment39 from kofacustom.dspg.interfaces import MessageFactory as _ 40 from kofacustom.dspg.payments.interfaces import ICustomOnlinePayment 41 41 42 42 class ICustomUGApplicant(INigeriaUGApplicant): -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/payment.py
r14712 r14716 24 24 from waeup.kofa.applicants.payment import ApplicantOnlinePayment 25 25 from waeup.kofa.utils.helpers import attrs_to_fields 26 from kofacustom.dsp ou.applicants.interfaces import ICustomApplicantOnlinePayment26 from kofacustom.dspg.applicants.interfaces import ICustomApplicantOnlinePayment 27 27 28 28 class CustomApplicantOnlinePayment(ApplicantOnlinePayment): -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/tests/test_applicant.py
r14712 r14716 30 30 from waeup.kofa.interfaces import IFileStoreHandler, IFileStoreNameChooser 31 31 from waeup.kofa.testing import FunctionalTestCase 32 from kofacustom.dsp ou.applicants.applicant import (32 from kofacustom.dspg.applicants.applicant import ( 33 33 CustomApplicant, CustomApplicantFactory, 34 34 ) 35 from kofacustom.dsp ou.applicants.interfaces import ICustomApplicant36 from kofacustom.dsp ou.testing import FunctionalLayer35 from kofacustom.dspg.applicants.interfaces import ICustomApplicant 36 from kofacustom.dspg.testing import FunctionalLayer 37 37 38 38 class CustomApplicantTest(FunctionalTestCase): -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/tests/test_browser.py
r14712 r14716 25 25 from zope.intid.interfaces import IIntIds 26 26 from hurry.workflow.interfaces import IWorkflowState 27 from kofacustom.dsp ou.testing import FunctionalLayer27 from kofacustom.dspg.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.dsp ou.applicants.export import CustomApplicantExporter32 from kofacustom.dsp ou.applicants.batching import CustomApplicantProcessor31 from kofacustom.dspg.applicants.export import CustomApplicantExporter 32 from kofacustom.dspg.applicants.batching import CustomApplicantProcessor 33 33 34 34 class CustomApplicantUITests(ApplicantsFullSetup): -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/utils.py
r14712 r14716 22 22 from waeup.kofa.applicants.workflow import (INITIALIZED, 23 23 STARTED, PAID, ADMITTED, NOT_ADMITTED, SUBMITTED, CREATED) 24 from kofacustom.dsp ou.interfaces import MessageFactory as _24 from kofacustom.dspg.interfaces import MessageFactory as _ 25 25 26 26 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/browser/pages.py
r14712 r14716 21 21 LoginPage, CertificatePage, CertificateManageFormPage) 22 22 from waeup.kofa.university.interfaces import ICertificate 23 from kofacustom.dsp ou.interfaces import (23 from kofacustom.dspg.interfaces import ( 24 24 ICustomSessionConfiguration, ICustomSessionConfigurationAdd) 25 25 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/browser/tests.py
r14712 r14716 22 22 from zope.security.interfaces import Unauthorized 23 23 from waeup.kofa.testing import FunctionalTestCase 24 from kofacustom.dsp ou.testing import FunctionalLayer24 from kofacustom.dspg.testing import FunctionalLayer 25 25 from waeup.kofa.app import University 26 26 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/configuration.py
r14712 r14716 24 24 from waeup.kofa.configuration import ( 25 25 SessionConfigurationFactory, SessionConfiguration) 26 from kofacustom.dsp ou.interfaces import (26 from kofacustom.dspg.interfaces import ( 27 27 ICustomSessionConfiguration, ICustomSessionConfigurationAdd) 28 28 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/configure.zcml
r14712 r14716 1 1 <configure xmlns="http://namespaces.zope.org/zope" 2 2 xmlns:grok="http://namespaces.zope.org/grok"> 3 <include package="kofacustom.dsp ou" file="locales.zcml" />3 <include package="kofacustom.dspg" file="locales.zcml" /> 4 4 5 5 <!-- kofacustom.nigeria configures everything we basically need. -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/ftesting.zcml
r14712 r14716 2 2 xmlns="http://namespaces.zope.org/zope" 3 3 xmlns:kofa="http://namespaces.waeup.org/kofa" 4 i18n_domain="kofacustom.dsp ou"5 package="kofacustom.dsp ou"4 i18n_domain="kofacustom.dspg" 5 package="kofacustom.dspg" 6 6 > 7 7 8 <include package="kofacustom.dsp ou" />9 <include package="kofacustom.dsp ou" file="mail.zcml"/>8 <include package="kofacustom.dspg" /> 9 <include package="kofacustom.dspg" file="mail.zcml"/> 10 10 11 11 <!-- Where should the datacenter reside by default? --> -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/interfaces.py
r14712 r14716 23 23 ISessionConfiguration, academic_sessions_vocab) 24 24 25 _ = MessageFactory = zope.i18nmessageid.MessageFactory('kofacustom.dsp ou')25 _ = MessageFactory = zope.i18nmessageid.MessageFactory('kofacustom.dspg') 26 26 27 27 class ICustomSessionConfiguration(ISessionConfiguration): -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/interswitch/browser.py
r14712 r14716 26 26 InterswitchPageStudent, InterswitchPageApplicant, 27 27 ) 28 from kofacustom.dsp ou.students.interfaces import ICustomStudentOnlinePayment29 from kofacustom.dsp ou.applicants.interfaces import ICustomApplicantOnlinePayment30 from kofacustom.dsp ou.interfaces import MessageFactory as _28 from kofacustom.dspg.students.interfaces import ICustomStudentOnlinePayment 29 from kofacustom.dspg.applicants.interfaces import ICustomApplicantOnlinePayment 30 from kofacustom.dspg.interfaces import MessageFactory as _ 31 31 32 32 PRODUCT_ID = '' # must be provided by Interswitch 33 SITE_NAME = 'dsp ou-kofa.waeup.org'33 SITE_NAME = 'dspg-kofa.waeup.org' 34 34 PROVIDER_ACCT = '00000000' 35 35 PROVIDER_BANK_ID = '00' -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/interswitch/tests.py
r14712 r14716 24 24 from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup 25 25 from waeup.kofa.configuration import SessionConfiguration 26 from kofacustom.dsp ou.testing import FunctionalLayer26 from kofacustom.dspg.testing import FunctionalLayer 27 27 28 28 # Also run tests that send requests to external servers? … … 183 183 self.assertTrue( 184 184 'zope.mgr - ' 185 'kofacustom.dsp ou.interswitch.browser.CustomInterswitchPaymentRequestWebservicePageStudent - '185 'kofacustom.dspg.interswitch.browser.CustomInterswitchPaymentRequestWebservicePageStudent - ' 186 186 'X1000000 - successful schoolfee payment: p3547789850240\n' 187 187 in logcontent) -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/payments/interfaces.py
r14712 r14716 19 19 from zope import schema 20 20 from kofacustom.nigeria.payments.interfaces import INigeriaOnlinePayment 21 from kofacustom.dsp ou.interfaces import MessageFactory as _21 from kofacustom.dspg.interfaces import MessageFactory as _ 22 22 23 23 class ICustomOnlinePayment(INigeriaOnlinePayment): -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/batching.py
r14712 r14716 24 24 students, studycourses, payment tickets and accommodation tickets. 25 25 """ 26 from kofacustom.dsp ou.students.interfaces import (26 from kofacustom.dspg.students.interfaces import ( 27 27 ICustomStudent, ICustomStudentUpdateByRegNo, 28 28 ICustomStudentUpdateByMatricNo, -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/browser.py
r14712 r14716 41 41 ) 42 42 43 from kofacustom.dsp ou.students.interfaces import (43 from kofacustom.dspg.students.interfaces import ( 44 44 ICustomStudentOnlinePayment, ICustomStudentStudyCourse, 45 45 ICustomStudentStudyLevel) 46 from kofacustom.dsp ou.interfaces import MessageFactory as _46 from kofacustom.dspg.interfaces import MessageFactory as _ 47 47 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/export.py
r14712 r14716 18 18 """Exporters for student related stuff. 19 19 """ 20 from kofacustom.dsp ou.students.interfaces import (20 from kofacustom.dspg.students.interfaces import ( 21 21 ICustomStudent, 22 22 ICustomStudentStudyCourse, -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/interfaces.py
r14712 r14716 25 25 INigeriaStudentUpdateByRegNo, INigeriaStudentUpdateByMatricNo, 26 26 ) 27 from kofacustom.dsp ou.payments.interfaces import ICustomOnlinePayment28 from kofacustom.dsp ou.interfaces import MessageFactory as _27 from kofacustom.dspg.payments.interfaces import ICustomOnlinePayment 28 from kofacustom.dspg.interfaces import MessageFactory as _ 29 29 30 30 class ICustomStudentBase(INigeriaStudentBase): -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/payments.py
r14712 r14716 26 26 from kofacustom.nigeria.students.payments import ( 27 27 NigeriaStudentOnlinePayment, NigeriaStudentOnlinePaymentFactory) 28 from kofacustom.dsp ou.students.interfaces import ICustomStudentOnlinePayment28 from kofacustom.dspg.students.interfaces import ICustomStudentOnlinePayment 29 29 30 30 class CustomStudentOnlinePayment(NigeriaStudentOnlinePayment): -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/student.py
r14712 r14716 26 26 from waeup.kofa.utils.helpers import get_current_principal 27 27 from kofacustom.nigeria.students.student import NigeriaStudent 28 from kofacustom.dsp ou.students.interfaces import ICustomStudent28 from kofacustom.dspg.students.interfaces import ICustomStudent 29 29 30 30 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/studycourse.py
r14712 r14716 27 27 from waeup.kofa.students.workflow import CLEARED, RETURNING, PAID 28 28 from kofacustom.nigeria.students.studycourse import NigeriaStudentStudyCourse 29 from kofacustom.dsp ou.students.interfaces import ICustomStudentStudyCourse29 from kofacustom.dspg.students.interfaces import ICustomStudentStudyCourse 30 30 31 31 class CustomStudentStudyCourse(NigeriaStudentStudyCourse): -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/studylevel.py
r14712 r14716 28 28 CourseTicketFactory, StudentStudyLevelFactory) 29 29 from waeup.kofa.students.interfaces import IStudentNavigation 30 from kofacustom.dsp ou.students.interfaces import (30 from kofacustom.dspg.students.interfaces import ( 31 31 ICustomStudentStudyLevel, ICustomCourseTicket) 32 32 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/tests/test_browser.py
r14712 r14716 34 34 IExtFileStore, IFileStoreNameChooser) 35 35 from waeup.kofa.students.interfaces import IStudentsUtils 36 from kofacustom.dsp ou.testing import FunctionalLayer36 from kofacustom.dspg.testing import FunctionalLayer 37 37 38 38 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/tests/test_export.py
r14712 r14716 6 6 from waeup.kofa.students.tests.test_batching import ( 7 7 StudentImportExportSetup, curr_year) 8 from kofacustom.dsp ou.utils.utils import CustomKofaUtils9 from kofacustom.dsp ou.students.export import (8 from kofacustom.dspg.utils.utils import CustomKofaUtils 9 from kofacustom.dspg.students.export import ( 10 10 CustomStudentExporter, CustomStudentPaymentExporter) 11 from kofacustom.dsp ou.testing import FunctionalLayer11 from kofacustom.dspg.testing import FunctionalLayer 12 12 13 13 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/tests/test_student.py
r14712 r14716 22 22 from zope.interface import verify 23 23 from waeup.kofa.testing import FunctionalTestCase 24 from kofacustom.dsp ou.students.student import CustomStudent, CustomStudentFactory25 from kofacustom.dsp ou.students.studycourse import (24 from kofacustom.dspg.students.student import CustomStudent, CustomStudentFactory 25 from kofacustom.dspg.students.studycourse import ( 26 26 CustomStudentStudyCourse, CustomStudentStudyCourseFactory) 27 from kofacustom.dsp ou.students.studylevel import (27 from kofacustom.dspg.students.studylevel import ( 28 28 CustomStudentStudyLevel, CustomCourseTicket, 29 29 CustomStudentStudyLevelFactory, 30 30 CustomCourseTicketFactory) 31 from kofacustom.dsp ou.students.interfaces import (31 from kofacustom.dspg.students.interfaces import ( 32 32 ICustomStudent, ICustomStudentStudyCourse, 33 33 ICustomStudentStudyLevel, ICustomCourseTicket) 34 from kofacustom.dsp ou.testing import FunctionalLayer34 from kofacustom.dspg.testing import FunctionalLayer 35 35 36 36 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/utils.py
r14712 r14716 21 21 CLEARED, RETURNING, PAID, REGISTERED, VALIDATED) 22 22 from kofacustom.nigeria.students.utils import NigeriaStudentsUtils 23 from kofacustom.dsp ou.interfaces import MessageFactory as _23 from kofacustom.dspg.interfaces import MessageFactory as _ 24 24 25 25 class CustomStudentsUtils(NigeriaStudentsUtils): -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/viewlets.py
r14712 r14716 20 20 from waeup.kofa.interfaces import REQUESTED 21 21 from waeup.kofa.browser.viewlets import ManageActionButton 22 from kofacustom.dsp ou.students.interfaces import (22 from kofacustom.dspg.students.interfaces import ( 23 23 ICustomStudentStudyCourse, ICustomStudentStudyLevel) 24 24 from waeup.kofa.students.fileviewlets import ( -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/testing.py
r14712 r14716 19 19 """ 20 20 import os.path 21 import kofacustom.dsp ou21 import kofacustom.dspg 22 22 from zope.app.testing.functional import ZCMLLayer 23 23 24 24 ftesting_zcml = os.path.join( 25 os.path.dirname(kofacustom.dsp ou.__file__), 'ftesting.zcml')25 os.path.dirname(kofacustom.dspg.__file__), 'ftesting.zcml') 26 26 FunctionalLayer = ZCMLLayer(ftesting_zcml, __name__, 'FunctionalLayer', 27 27 allow_teardown=True) -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/tests/test_configuration.py
r14712 r14716 25 25 from waeup.kofa.tests.test_configuration import ( 26 26 ConfigurationTest, SessionConfigurationFactoryTest) 27 from kofacustom.dsp ou.configuration import (27 from kofacustom.dspg.configuration import ( 28 28 CustomSessionConfiguration, CustomSessionConfigurationFactory) 29 from kofacustom.dsp ou.interfaces import(29 from kofacustom.dspg.interfaces import( 30 30 ICustomSessionConfiguration, ICustomSessionConfigurationAdd) 31 from kofacustom.dsp ou.testing import FunctionalLayer31 from kofacustom.dspg.testing import FunctionalLayer 32 32 33 33 class ConfigurationTest(ConfigurationTest): -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/tests/test_datacenter.py
r14712 r14716 18 18 from waeup.kofa.datacenter import DataCenter 19 19 from waeup.kofa.testing import FunctionalTestCase 20 from kofacustom.dsp ou.testing import FunctionalLayer20 from kofacustom.dspg.testing import FunctionalLayer 21 21 22 22 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/tests/test_smtp.py
r14712 r14716 33 33 send_mail) 34 34 from waeup.kofa.testing import FunctionalTestCase 35 from kofacustom.dsp ou.testing import FunctionalLayer35 from kofacustom.dspg.testing import FunctionalLayer 36 36 37 37 # -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/utils/tests.py
r14712 r14716 17 17 ## 18 18 from waeup.kofa.testing import FunctionalTestCase 19 from kofacustom.dsp ou.testing import FunctionalLayer19 from kofacustom.dspg.testing import FunctionalLayer 20 20 21 21 -
main/kofacustom.dspg/trunk/versions.cfg
r14712 r14716 1 # Versions of packages used by kofacustom.dsp ou1 # Versions of packages used by kofacustom.dspg 2 2 [buildout] 3 3 extends = sources/waeup.kofa/versions.cfg
Note: See TracChangeset for help on using the changeset viewer.