Changeset 17357


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

Rename skeleton koa.

Location:
main/kofacustom.koa/trunk
Files:
47 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.koa/trunk/README.txt

    r17349 r17357  
    1 waeup.skeleton
    2 **************
     1waeup.koa
     2*********
    33
    4 `waeup.skeleton` is a Python package providing a student information
     4`waeup.koa` is a Python package providing a student information
    55portal based on WAeUP Kofa.
    6 
    7 This is a skelton package which can be used to create customized version of Kofa.
    86
    97For generic install instructions please see sources/waeup.kofa/docs/INSTALL.txt.
    108
    11 Buildout has to be run in two steps:
     9Buildout has to be run in two steps (assuming we are in the folder where buildout.cfg is located):
    1210
    13   (py27)$ ./bin/buildout -c buildout-init.cfg
     11  ../py27/bin/buildout -c buildout-init.cfg
    1412
    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  
    118118# See http://pypi.python.org/pypi/zc.recipe.egg for details...
    119119recipe = zc.recipe.egg
    120 eggs = kofacustom.skeleton [beaker, diazo]
     120eggs = kofacustom.koa [beaker, diazo]
    121121arguments = "${buildout:parts-directory}/etc/zeo1.conf"
    122122scripts = kofactl=zeo_client1
     
    125125# See http://pypi.python.org/pypi/zc.recipe.egg for details...
    126126recipe = zc.recipe.egg
    127 eggs = kofacustom.skeleton [beaker, diazo]
     127eggs = kofacustom.koa [beaker, diazo]
    128128arguments = "${buildout:parts-directory}/etc/zeo2.conf"
    129129scripts = kofactl=zeo_client2
  • main/kofacustom.koa/trunk/buildout.cfg

    r11518 r17357  
    6666# number of preopened paster threads, default 10
    6767threadpool_workers = 10
    68 devel_pkg = kofacustom.skeleton
     68devel_pkg = kofacustom.koa
    6969
    7070[app]
    7171# This creates all scripts in bin/. The kofactl created here is 'faulty'.
    7272recipe = zc.recipe.egg
    73 eggs = kofacustom.skeleton [beaker, diazo]
     73eggs = kofacustom.koa [beaker, diazo]
    7474       z3c.evalexception>=2.0
    7575       Paste
     
    8585# fixed path to zdaemon.conf as argument.
    8686recipe = zc.recipe.egg
    87 eggs = kofacustom.skeleton [beaker, diazo]
     87eggs = kofacustom.koa [beaker, diazo]
    8888arguments = "${buildout:parts-directory}/etc/zdaemon.conf"
    8989scripts = kofactl=kofactl
     
    100100[test]
    101101recipe = zc.recipe.testrunner
    102 eggs = kofacustom.skeleton [beaker, test]
     102eggs = kofacustom.koa [beaker, test]
    103103defaults = ['--tests-pattern', '^f?tests$', '-v']
    104104
     
    106106[i18n]
    107107recipe = z3c.recipe.i18n:i18n
    108 packages = kofacustom.skeleton
    109 eggs = kofacustom.skeleton
    110 domain = kofacustom.skeleton
    111 output = src/kofacustom/skeleton/locales
     108packages = kofacustom.koa
     109eggs = kofacustom.koa
     110domain = kofacustom.koa
     111output = src/kofacustom/koa/locales
    112112zcml =
    113113
     
    116116[zpasswd]
    117117recipe = z3c.recipe.dev:script
    118 eggs = kofacustom.skeleton
     118eggs = kofacustom.koa
    119119module = zope.app.server.zpasswd
    120120method = main
     
    184184[coverage-detect]
    185185recipe = zc.recipe.testrunner
    186 eggs = kofacustom.skeleton[beaker]
     186eggs = kofacustom.koa[beaker]
    187187defaults = ['--tests-pattern', '^f?tests$', '-v', '--coverage', 'coverage']
    188188
     
    205205    diazo [wsgi]
    206206    PasteScript
    207     kofacustom.skeleton [beaker, diazo]
     207    kofacustom.koa [beaker, diazo]
  • main/kofacustom.koa/trunk/etc/profile.ini.in

    r10765 r17357  
    5757
    5858[app:app]
    59 use = egg:kofacustom.skeleton
     59use = egg:kofacustom.koa
    6060
    6161[pipeline:main]
  • main/kofacustom.koa/trunk/etc/site.zcml.in

    r17297 r17357  
    22           xmlns:browser="http://namespaces.zope.org/browser"
    33           xmlns:kofa="http://namespaces.waeup.org/kofa"
    4            i18n_domain="kofacustom.skeleton">
     4           i18n_domain="kofacustom.koa">
    55
    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" />
    88
    99  <!-- install job container
     
    3030      path="${buildout:directory}/var/datacenter" />
    3131
    32     <configure i18n_domain="kofacustom.skeleton">
     32    <configure i18n_domain="kofacustom.koa">
    3333
    3434      <unauthenticatedPrincipal id="zope.anybody"
  • main/kofacustom.koa/trunk/setup.py

    r17349 r17357  
    4747    )
    4848
    49 setup(name = 'kofacustom.skeleton',
     49setup(name = 'kofacustom.koa',
    5050      version = version,
    5151      description = "A customized waeup.kofa",
  • 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
  • main/kofacustom.koa/trunk/src/kofacustom/koa/browser/pages.py

    r16717 r17357  
    2121    LoginPage, CertificatePage, CertificateManageFormPage)
    2222from waeup.kofa.university.interfaces import ICertificate
    23 from kofacustom.skeleton.interfaces import (
     23from kofacustom.koa.interfaces import (
    2424    ICustomSessionConfiguration, ICustomSessionConfigurationAdd)
    2525
  • main/kofacustom.koa/trunk/src/kofacustom/koa/browser/tests.py

    r16717 r17357  
    2222from zope.security.interfaces import Unauthorized
    2323from waeup.kofa.testing import FunctionalTestCase
    24 from kofacustom.skeleton.testing import FunctionalLayer
     24from kofacustom.koa.testing import FunctionalLayer
    2525from waeup.kofa.app import University
    2626
  • main/kofacustom.koa/trunk/src/kofacustom/koa/configuration.py

    r16717 r17357  
    2424from waeup.kofa.configuration import (
    2525    SessionConfigurationFactory, SessionConfiguration)
    26 from kofacustom.skeleton.interfaces import (
     26from kofacustom.koa.interfaces import (
    2727    ICustomSessionConfiguration, ICustomSessionConfigurationAdd)
    2828
  • main/kofacustom.koa/trunk/src/kofacustom/koa/configure.zcml

    r16717 r17357  
    11<configure xmlns="http://namespaces.zope.org/zope"
    22           xmlns:grok="http://namespaces.zope.org/grok">
    3   <include package="kofacustom.skeleton" file="locales.zcml" />
     3  <include package="kofacustom.koa" file="locales.zcml" />
    44
    55  <!-- kofacustom.nigeria configures everything we basically need.
  • main/kofacustom.koa/trunk/src/kofacustom/koa/ftesting.zcml

    r17297 r17357  
    33   xmlns:browser="http://namespaces.zope.org/browser"
    44   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"
    77   >
    88
    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"/>
    1111
    1212  <!-- Where should the datacenter reside by default? -->
  • main/kofacustom.koa/trunk/src/kofacustom/koa/hostels/browser.py

    r15644 r17357  
    2121from waeup.kofa.hostels.browser import (
    2222    HostelAddFormPage, HostelDisplayFormPage, HostelManageFormPage)
    23 from kofacustom.skeleton.hostels.interfaces import ICustomHostel
     23from kofacustom.koa.hostels.interfaces import ICustomHostel
    2424
    2525class CustomHostelAddFormPage(HostelAddFormPage):
  • main/kofacustom.koa/trunk/src/kofacustom/koa/hostels/hostel.py

    r15644 r17357  
    2323from waeup.kofa.utils.helpers import attrs_to_fields
    2424from waeup.kofa.hostels.hostel import HostelFactory, BedFactory, Hostel, Bed
    25 from kofacustom.skeleton.hostels.interfaces import ICustomHostel, ICustomBed
     25from kofacustom.koa.hostels.interfaces import ICustomHostel, ICustomBed
    2626
    2727class CustomHostel(Hostel):
  • main/kofacustom.koa/trunk/src/kofacustom/koa/hostels/interfaces.py

    r15644 r17357  
    2525from waeup.kofa.hostels.interfaces import IHostel, IBed
    2626
    27 from kofacustom.skeleton.interfaces import MessageFactory as _
     27from kofacustom.koa.interfaces import MessageFactory as _
    2828
    2929blocks = SimpleKofaVocabulary(
  • main/kofacustom.koa/trunk/src/kofacustom/koa/interfaces.py

    r16724 r17357  
    2323    ISessionConfiguration, academic_sessions_vocab)
    2424
    25 _ = MessageFactory = zope.i18nmessageid.MessageFactory('kofacustom.skeleton')
     25_ = MessageFactory = zope.i18nmessageid.MessageFactory('kofacustom.koa')
    2626
    2727class ICustomSessionConfiguration(ISessionConfiguration):
  • main/kofacustom.koa/trunk/src/kofacustom/koa/interswitch/browser.py

    r16724 r17357  
    2727    InterswitchPageStudent, InterswitchPageApplicant,
    2828    )
    29 from kofacustom.skeleton.students.interfaces import ICustomStudentOnlinePayment
    30 from kofacustom.skeleton.applicants.interfaces import ICustomApplicantOnlinePayment
    31 from kofacustom.skeleton.interfaces import MessageFactory as _
     29from kofacustom.koa.students.interfaces import ICustomStudentOnlinePayment
     30from kofacustom.koa.applicants.interfaces import ICustomApplicantOnlinePayment
     31from kofacustom.koa.interfaces import MessageFactory as _
    3232
    3333PRODUCT_ID = '' # must be provided by Interswitch
    34 SITE_NAME = 'skeleton.waeup.org'
     34SITE_NAME = 'koa.waeup.org'
    3535PROVIDER_ACCT = '00000000'
    3636PROVIDER_BANK_ID = '00'
    3737PROVIDER_ITEM_NAME = 'WAeAC'
    38 INSTITUTION_NAME = 'SKELETON'
     38INSTITUTION_NAME = 'koa'
    3939CURRENCY = '566'
    4040GATEWAY_AMT = 150.0
  • main/kofacustom.koa/trunk/src/kofacustom/koa/interswitch/tests.py

    r16717 r17357  
    2424from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup
    2525from waeup.kofa.configuration import SessionConfiguration
    26 from kofacustom.skeleton.testing import FunctionalLayer
     26from kofacustom.koa.testing import FunctionalLayer
    2727
    2828# Also run tests that send requests to external servers?
     
    182182        self.assertTrue(
    183183            'zope.mgr - '
    184             'kofacustom.skeleton.interswitch.browser.CustomInterswitchPaymentRequestWebservicePageStudent - '
     184            'kofacustom.koa.interswitch.browser.CustomInterswitchPaymentRequestWebservicePageStudent - '
    185185            'X1000000 - successful schoolfee payment: p3547789850240\n'
    186186            in logcontent)
  • main/kofacustom.koa/trunk/src/kofacustom/koa/payments/interfaces.py

    r16717 r17357  
    1919from zope import schema
    2020from kofacustom.nigeria.payments.interfaces import INigeriaOnlinePayment
    21 from kofacustom.skeleton.interfaces import MessageFactory as _
     21from kofacustom.koa.interfaces import MessageFactory as _
    2222
    2323class ICustomOnlinePayment(INigeriaOnlinePayment):
  • main/kofacustom.koa/trunk/src/kofacustom/koa/remita/webservices.py

    r16717 r17357  
    1818
    1919from kofacustom.nigeria.remita.webservices import PaymentNotificationListenerWebservice
    20 from kofacustom.skeleton.remita.browser import MERCHANTID, HOST, HTTPS, API_KEY
     20from kofacustom.koa.remita.browser import MERCHANTID, HOST, HTTPS, API_KEY
    2121
    2222class CustomPaymentNotificationListenerWebservice(
  • main/kofacustom.koa/trunk/src/kofacustom/koa/students/batching.py

    r16717 r17357  
    2020from kofacustom.nigeria.students.batching import NigeriaStudentProcessor
    2121from waeup.kofa.students.batching import StudentOnlinePaymentProcessor
    22 from kofacustom.skeleton.students.interfaces import (
     22from kofacustom.koa.students.interfaces import (
    2323    ICustomStudent,
    2424    ICustomStudentUpdateByRegNo,
  • main/kofacustom.koa/trunk/src/kofacustom/koa/students/browser.py

    r16718 r17357  
    4242    )
    4343
    44 from kofacustom.skeleton.students.interfaces import (
     44from kofacustom.koa.students.interfaces import (
    4545    ICustomStudentOnlinePayment, ICustomStudentStudyCourse,
    4646    ICustomStudentStudyLevel)
    47 from kofacustom.skeleton.interfaces import MessageFactory as _
     47from kofacustom.koa.interfaces import MessageFactory as _
    4848
    4949class CustomPaymentsManageFormPage(PaymentsManageFormPage):
    5050    """ Page to manage the student payments. This manage form page is for
    51     both students and students officers. SKELETON does not allow students
     51    both students and students officers. koa does not allow students
    5252    to remove any payment ticket.
    5353    """
  • main/kofacustom.koa/trunk/src/kofacustom/koa/students/export.py

    r16717 r17357  
    1818"""Exporters for student related stuff.
    1919"""
    20 from kofacustom.skeleton.students.interfaces import (
     20from kofacustom.koa.students.interfaces import (
    2121    ICustomStudent,
    2222    ICustomStudentStudyCourse,
  • main/kofacustom.koa/trunk/src/kofacustom/koa/students/interfaces.py

    r16717 r17357  
    2525    INigeriaStudentUpdateByRegNo, INigeriaStudentUpdateByMatricNo,
    2626    )
    27 from kofacustom.skeleton.payments.interfaces import ICustomOnlinePayment
    28 from kofacustom.skeleton.interfaces import MessageFactory as _
     27from kofacustom.koa.payments.interfaces import ICustomOnlinePayment
     28from kofacustom.koa.interfaces import MessageFactory as _
    2929
    3030class ICustomStudentBase(INigeriaStudentBase):
  • main/kofacustom.koa/trunk/src/kofacustom/koa/students/payments.py

    r16717 r17357  
    2626from kofacustom.nigeria.students.payments import (
    2727    NigeriaStudentOnlinePayment, NigeriaStudentOnlinePaymentFactory)
    28 from kofacustom.skeleton.students.interfaces import ICustomStudentOnlinePayment
     28from kofacustom.koa.students.interfaces import ICustomStudentOnlinePayment
    2929
    3030class CustomStudentOnlinePayment(NigeriaStudentOnlinePayment):
  • main/kofacustom.koa/trunk/src/kofacustom/koa/students/student.py

    r16717 r17357  
    2626from waeup.kofa.utils.helpers import get_current_principal
    2727from kofacustom.nigeria.students.student import NigeriaStudent
    28 from kofacustom.skeleton.students.interfaces import ICustomStudent
     28from kofacustom.koa.students.interfaces import ICustomStudent
    2929
    3030
  • main/kofacustom.koa/trunk/src/kofacustom/koa/students/studycourse.py

    r16717 r17357  
    2727from waeup.kofa.students.workflow import CLEARED, RETURNING, PAID
    2828from kofacustom.nigeria.students.studycourse import NigeriaStudentStudyCourse
    29 from kofacustom.skeleton.students.interfaces import ICustomStudentStudyCourse
     29from kofacustom.koa.students.interfaces import ICustomStudentStudyCourse
    3030
    3131class CustomStudentStudyCourse(NigeriaStudentStudyCourse):
  • main/kofacustom.koa/trunk/src/kofacustom/koa/students/studylevel.py

    r16717 r17357  
    2828    CourseTicketFactory, StudentStudyLevelFactory)
    2929from waeup.kofa.students.interfaces import IStudentNavigation
    30 from kofacustom.skeleton.students.interfaces import (
     30from kofacustom.koa.students.interfaces import (
    3131    ICustomStudentStudyLevel, ICustomCourseTicket)
    3232
  • main/kofacustom.koa/trunk/src/kofacustom/koa/students/tests/test_browser.py

    r16717 r17357  
    3434    IExtFileStore, IFileStoreNameChooser)
    3535from waeup.kofa.students.interfaces import IStudentsUtils
    36 from kofacustom.skeleton.testing import FunctionalLayer
     36from kofacustom.koa.testing import FunctionalLayer
    3737
    3838
  • main/kofacustom.koa/trunk/src/kofacustom/koa/students/tests/test_export.py

    r17297 r17357  
    66from waeup.kofa.students.tests.test_batching import (
    77    StudentImportExportSetup, curr_year)
    8 from kofacustom.skeleton.utils.utils import CustomKofaUtils
    9 from kofacustom.skeleton.students.export import (
     8from kofacustom.koa.utils.utils import CustomKofaUtils
     9from kofacustom.koa.students.export import (
    1010    CustomStudentExporter, CustomStudentPaymentExporter)
    11 from kofacustom.skeleton.testing import FunctionalLayer
     11from kofacustom.koa.testing import FunctionalLayer
    1212
    1313
  • main/kofacustom.koa/trunk/src/kofacustom/koa/students/tests/test_student.py

    r16717 r17357  
    2222from zope.interface import verify
    2323from waeup.kofa.testing import FunctionalTestCase
    24 from kofacustom.skeleton.students.student import CustomStudent, CustomStudentFactory
    25 from kofacustom.skeleton.students.studycourse import (
     24from kofacustom.koa.students.student import CustomStudent, CustomStudentFactory
     25from kofacustom.koa.students.studycourse import (
    2626    CustomStudentStudyCourse, CustomStudentStudyCourseFactory)
    27 from kofacustom.skeleton.students.studylevel import (
     27from kofacustom.koa.students.studylevel import (
    2828    CustomStudentStudyLevel, CustomCourseTicket,
    2929    CustomStudentStudyLevelFactory,
    3030    CustomCourseTicketFactory)
    31 from kofacustom.skeleton.students.interfaces import (
     31from kofacustom.koa.students.interfaces import (
    3232    ICustomStudent, ICustomStudentStudyCourse,
    3333    ICustomStudentStudyLevel, ICustomCourseTicket)
    34 from kofacustom.skeleton.testing import FunctionalLayer
     34from kofacustom.koa.testing import FunctionalLayer
    3535
    3636
  • main/kofacustom.koa/trunk/src/kofacustom/koa/students/utils.py

    r16717 r17357  
    2121    CLEARED, RETURNING, PAID, REGISTERED, VALIDATED)
    2222from kofacustom.nigeria.students.utils import NigeriaStudentsUtils
    23 from kofacustom.skeleton.interfaces import MessageFactory as _
     23from kofacustom.koa.interfaces import MessageFactory as _
    2424
    2525class CustomStudentsUtils(NigeriaStudentsUtils):
  • main/kofacustom.koa/trunk/src/kofacustom/koa/students/viewlets.py

    r16717 r17357  
    2020from waeup.kofa.interfaces import REQUESTED
    2121from waeup.kofa.browser.viewlets import ManageActionButton
    22 from kofacustom.skeleton.students.interfaces import (
     22from kofacustom.koa.students.interfaces import (
    2323    ICustomStudentStudyCourse, ICustomStudentStudyLevel)
    2424from waeup.kofa.students.fileviewlets import (
  • main/kofacustom.koa/trunk/src/kofacustom/koa/testing.py

    r16717 r17357  
    1919"""
    2020import os.path
    21 import kofacustom.skeleton
     21import kofacustom.koa
    2222from zope.app.testing.functional import ZCMLLayer
    2323
    2424ftesting_zcml = os.path.join(
    25     os.path.dirname(kofacustom.skeleton.__file__), 'ftesting.zcml')
     25    os.path.dirname(kofacustom.koa.__file__), 'ftesting.zcml')
    2626FunctionalLayer = ZCMLLayer(ftesting_zcml, __name__, 'FunctionalLayer',
    2727                            allow_teardown=True)
  • main/kofacustom.koa/trunk/src/kofacustom/koa/tests/test_configuration.py

    r16717 r17357  
    2525from waeup.kofa.tests.test_configuration import (
    2626    ConfigurationTest, SessionConfigurationFactoryTest)
    27 from kofacustom.skeleton.configuration import (
     27from kofacustom.koa.configuration import (
    2828    CustomSessionConfiguration, CustomSessionConfigurationFactory)
    29 from kofacustom.skeleton.interfaces import(
     29from kofacustom.koa.interfaces import(
    3030    ICustomSessionConfiguration, ICustomSessionConfigurationAdd)
    31 from kofacustom.skeleton.testing import FunctionalLayer
     31from kofacustom.koa.testing import FunctionalLayer
    3232
    3333class ConfigurationTest(ConfigurationTest):
  • main/kofacustom.koa/trunk/src/kofacustom/koa/tests/test_datacenter.py

    r16717 r17357  
    1818from waeup.kofa.datacenter import DataCenter
    1919from waeup.kofa.testing import FunctionalTestCase
    20 from kofacustom.skeleton.testing import FunctionalLayer
     20from kofacustom.koa.testing import FunctionalLayer
    2121
    2222
  • main/kofacustom.koa/trunk/src/kofacustom/koa/tests/test_smtp.py

    r16717 r17357  
    3333    send_mail)
    3434from waeup.kofa.testing import FunctionalTestCase
    35 from kofacustom.skeleton.testing import FunctionalLayer
     35from kofacustom.koa.testing import FunctionalLayer
    3636
    3737#
  • main/kofacustom.koa/trunk/src/kofacustom/koa/utils/tests.py

    r16717 r17357  
    1717##
    1818from waeup.kofa.testing import FunctionalTestCase
    19 from kofacustom.skeleton.testing import FunctionalLayer
     19from kofacustom.koa.testing import FunctionalLayer
    2020
    2121
  • main/kofacustom.koa/trunk/versions.cfg

    r13684 r17357  
    1 # Versions of packages used by kofacustom.skeleton
     1# Versions of packages used by kofacustom.koa
    22[buildout]
    33extends = sources/waeup.kofa/versions.cfg
Note: See TracChangeset for help on using the changeset viewer.