Ignore:
Timestamp:
13 Nov 2014, 14:40:27 (10 years ago)
Author:
Henrik Bettermann
Message:

Change of name.

Location:
main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/payments/interfaces.py

    r11947 r11949  
    1818from zope.interface import Attribute
    1919from zope import schema
    20 from waeup.kofa.interfaces import (
    21     IKofaObject, SimpleKofaVocabulary, application_sessions_vocab,
     20from waeup.ikoba.interfaces import (
     21    IIkobaObject, SimpleIkobaVocabulary, application_sessions_vocab,
    2222    ContextualDictSourceFactoryBase)
    23 from waeup.kofa.interfaces import MessageFactory as _
     23from waeup.ikoba.interfaces import MessageFactory as _
    2424
    25 payment_states = SimpleKofaVocabulary(
     25payment_states = SimpleIkobaVocabulary(
    2626    (_('Not yet paid'),'unpaid'),
    2727    (_('Paid'),'paid'),
     
    3333
    3434    """
    35     #: name of dict to deliver from kofa utils.
     35    #: name of dict to deliver from ikoba utils.
    3636    DICT_NAME = 'PAYMENT_CATEGORIES'
    3737
    38 class IPaymentsContainer(IKofaObject):
     38class IPaymentsContainer(IIkobaObject):
    3939    """A container for all kind of payment objects.
    4040
    4141    """
    4242
    43 class IPayment(IKofaObject):
     43class IPayment(IIkobaObject):
    4444    """A base representation of payments.
    4545
Note: See TracChangeset for help on using the changeset viewer.