Ignore:
Timestamp:
11 Jul 2017, 13:57:00 (7 years ago)
Author:
Henrik Bettermann
Message:

Rename package (step 2).

Location:
main/kofacustom.dspg/trunk/src/kofacustom/dspg
Files:
36 edited
1 moved

Legend:

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

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

    r14712 r14716  
    2020from waeup.kofa.utils.batching import BatchProcessor
    2121from waeup.kofa.applicants.batching import ApplicantProcessor
    22 from kofacustom.dspou.applicants.interfaces import (
     22from kofacustom.dspg.applicants.interfaces import (
    2323    ICustomApplicant, ICustomApplicantUpdateByRegNo)
    2424
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/browser.py

    r14712 r14716  
    2525    NigeriaPDFApplicationSlip)
    2626
    27 from kofacustom.dspou.interfaces import MessageFactory as _
     27from kofacustom.dspg.interfaces import MessageFactory as _
    2828
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/export.py

    r14712 r14716  
    2424from kofacustom.nigeria.applicants.interfaces import (
    2525    INigeriaUGApplicant, INigeriaPGApplicant)
    26 from kofacustom.dspou.applicants.interfaces import (
     26from kofacustom.dspg.applicants.interfaces import (
    2727    ICustomUGApplicant, ICustomPGApplicant)
    2828
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/interfaces.py

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

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

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

    r14712 r14716  
    2525from zope.intid.interfaces import IIntIds
    2626from hurry.workflow.interfaces import IWorkflowState
    27 from kofacustom.dspou.testing import FunctionalLayer
     27from kofacustom.dspg.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.dspou.applicants.export import CustomApplicantExporter
    32 from kofacustom.dspou.applicants.batching import CustomApplicantProcessor
     31from kofacustom.dspg.applicants.export import CustomApplicantExporter
     32from kofacustom.dspg.applicants.batching import CustomApplicantProcessor
    3333
    3434class CustomApplicantUITests(ApplicantsFullSetup):
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/utils.py

    r14712 r14716  
    2222from waeup.kofa.applicants.workflow import (INITIALIZED,
    2323    STARTED, PAID, ADMITTED, NOT_ADMITTED, SUBMITTED, CREATED)
    24 from kofacustom.dspou.interfaces import MessageFactory as _
     24from kofacustom.dspg.interfaces import MessageFactory as _
    2525
    2626
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/browser/pages.py

    r14712 r14716  
    2121    LoginPage, CertificatePage, CertificateManageFormPage)
    2222from waeup.kofa.university.interfaces import ICertificate
    23 from kofacustom.dspou.interfaces import (
     23from kofacustom.dspg.interfaces import (
    2424    ICustomSessionConfiguration, ICustomSessionConfigurationAdd)
    2525
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/browser/tests.py

    r14712 r14716  
    2222from zope.security.interfaces import Unauthorized
    2323from waeup.kofa.testing import FunctionalTestCase
    24 from kofacustom.dspou.testing import FunctionalLayer
     24from kofacustom.dspg.testing import FunctionalLayer
    2525from waeup.kofa.app import University
    2626
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/configuration.py

    r14712 r14716  
    2424from waeup.kofa.configuration import (
    2525    SessionConfigurationFactory, SessionConfiguration)
    26 from kofacustom.dspou.interfaces import (
     26from kofacustom.dspg.interfaces import (
    2727    ICustomSessionConfiguration, ICustomSessionConfigurationAdd)
    2828
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/configure.zcml

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

    r14712 r14716  
    22   xmlns="http://namespaces.zope.org/zope"
    33   xmlns:kofa="http://namespaces.waeup.org/kofa"
    4    i18n_domain="kofacustom.dspou"
    5    package="kofacustom.dspou"
     4   i18n_domain="kofacustom.dspg"
     5   package="kofacustom.dspg"
    66   >
    77
    8   <include package="kofacustom.dspou" />
    9   <include package="kofacustom.dspou" file="mail.zcml"/>
     8  <include package="kofacustom.dspg" />
     9  <include package="kofacustom.dspg" file="mail.zcml"/>
    1010
    1111  <!-- Where should the datacenter reside by default? -->
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/interfaces.py

    r14712 r14716  
    2323    ISessionConfiguration, academic_sessions_vocab)
    2424
    25 _ = MessageFactory = zope.i18nmessageid.MessageFactory('kofacustom.dspou')
     25_ = MessageFactory = zope.i18nmessageid.MessageFactory('kofacustom.dspg')
    2626
    2727class ICustomSessionConfiguration(ISessionConfiguration):
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/interswitch/browser.py

    r14712 r14716  
    2626    InterswitchPageStudent, InterswitchPageApplicant,
    2727    )
    28 from kofacustom.dspou.students.interfaces import ICustomStudentOnlinePayment
    29 from kofacustom.dspou.applicants.interfaces import ICustomApplicantOnlinePayment
    30 from kofacustom.dspou.interfaces import MessageFactory as _
     28from kofacustom.dspg.students.interfaces import ICustomStudentOnlinePayment
     29from kofacustom.dspg.applicants.interfaces import ICustomApplicantOnlinePayment
     30from kofacustom.dspg.interfaces import MessageFactory as _
    3131
    3232PRODUCT_ID = '' # must be provided by Interswitch
    33 SITE_NAME = 'dspou-kofa.waeup.org'
     33SITE_NAME = 'dspg-kofa.waeup.org'
    3434PROVIDER_ACCT = '00000000'
    3535PROVIDER_BANK_ID = '00'
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/interswitch/tests.py

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

    r14712 r14716  
    1919from zope import schema
    2020from kofacustom.nigeria.payments.interfaces import INigeriaOnlinePayment
    21 from kofacustom.dspou.interfaces import MessageFactory as _
     21from kofacustom.dspg.interfaces import MessageFactory as _
    2222
    2323class ICustomOnlinePayment(INigeriaOnlinePayment):
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/batching.py

    r14712 r14716  
    2424students, studycourses, payment tickets and accommodation tickets.
    2525"""
    26 from kofacustom.dspou.students.interfaces import (
     26from kofacustom.dspg.students.interfaces import (
    2727    ICustomStudent, ICustomStudentUpdateByRegNo,
    2828    ICustomStudentUpdateByMatricNo,
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/browser.py

    r14712 r14716  
    4141    )
    4242
    43 from kofacustom.dspou.students.interfaces import (
     43from kofacustom.dspg.students.interfaces import (
    4444    ICustomStudentOnlinePayment, ICustomStudentStudyCourse,
    4545    ICustomStudentStudyLevel)
    46 from kofacustom.dspou.interfaces import MessageFactory as _
     46from kofacustom.dspg.interfaces import MessageFactory as _
    4747
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/export.py

    r14712 r14716  
    1818"""Exporters for student related stuff.
    1919"""
    20 from kofacustom.dspou.students.interfaces import (
     20from kofacustom.dspg.students.interfaces import (
    2121    ICustomStudent,
    2222    ICustomStudentStudyCourse,
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/interfaces.py

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

    r14712 r14716  
    2626from kofacustom.nigeria.students.payments import (
    2727    NigeriaStudentOnlinePayment, NigeriaStudentOnlinePaymentFactory)
    28 from kofacustom.dspou.students.interfaces import ICustomStudentOnlinePayment
     28from kofacustom.dspg.students.interfaces import ICustomStudentOnlinePayment
    2929
    3030class CustomStudentOnlinePayment(NigeriaStudentOnlinePayment):
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/student.py

    r14712 r14716  
    2626from waeup.kofa.utils.helpers import get_current_principal
    2727from kofacustom.nigeria.students.student import NigeriaStudent
    28 from kofacustom.dspou.students.interfaces import ICustomStudent
     28from kofacustom.dspg.students.interfaces import ICustomStudent
    2929
    3030
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/studycourse.py

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

    r14712 r14716  
    2828    CourseTicketFactory, StudentStudyLevelFactory)
    2929from waeup.kofa.students.interfaces import IStudentNavigation
    30 from kofacustom.dspou.students.interfaces import (
     30from kofacustom.dspg.students.interfaces import (
    3131    ICustomStudentStudyLevel, ICustomCourseTicket)
    3232
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/tests/test_browser.py

    r14712 r14716  
    3434    IExtFileStore, IFileStoreNameChooser)
    3535from waeup.kofa.students.interfaces import IStudentsUtils
    36 from kofacustom.dspou.testing import FunctionalLayer
     36from kofacustom.dspg.testing import FunctionalLayer
    3737
    3838
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/tests/test_export.py

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

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

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

    r14712 r14716  
    2020from waeup.kofa.interfaces import REQUESTED
    2121from waeup.kofa.browser.viewlets import ManageActionButton
    22 from kofacustom.dspou.students.interfaces import (
     22from kofacustom.dspg.students.interfaces import (
    2323    ICustomStudentStudyCourse, ICustomStudentStudyLevel)
    2424from waeup.kofa.students.fileviewlets import (
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/testing.py

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

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

    r14712 r14716  
    1818from waeup.kofa.datacenter import DataCenter
    1919from waeup.kofa.testing import FunctionalTestCase
    20 from kofacustom.dspou.testing import FunctionalLayer
     20from kofacustom.dspg.testing import FunctionalLayer
    2121
    2222
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/tests/test_smtp.py

    r14712 r14716  
    3333    send_mail)
    3434from waeup.kofa.testing import FunctionalTestCase
    35 from kofacustom.dspou.testing import FunctionalLayer
     35from kofacustom.dspg.testing import FunctionalLayer
    3636
    3737#
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/utils/tests.py

    r14712 r14716  
    1717##
    1818from waeup.kofa.testing import FunctionalTestCase
    19 from kofacustom.dspou.testing import FunctionalLayer
     19from kofacustom.dspg.testing import FunctionalLayer
    2020
    2121
Note: See TracChangeset for help on using the changeset viewer.