Ignore:
Timestamp:
5 Dec 2016, 09:14:32 (8 years ago)
Author:
Henrik Bettermann
Message:

Renaming and port setting.

Location:
main/ikobacustom.aaue/trunk/src/ikobacustom/aaue
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • main/ikobacustom.aaue/trunk/src/ikobacustom/aaue/customers/customer.py

    r12399 r14310  
    2525from waeup.ikoba.customers.customer import Customer
    2626from waeup.ikoba.customers.interfaces import ICustomerNavigation
    27 from ikobacustom.skeleton.customers.interfaces import ISkeletonCustomer
    28 from ikobacustom.skeleton.interfaces import MessageFactory as _
     27from ikobacustom.aaue.customers.interfaces import IAAUECustomer
     28from ikobacustom.aaue.interfaces import MessageFactory as _
    2929
    3030
    31 class SkeletonCustomer(Customer):
     31class AAUECustomer(Customer):
    3232    """This is a customer container for the various objects
    3333    owned by customers.
    3434    """
    35     grok.implements(ISkeletonCustomer, ICustomerNavigation)
    36     grok.provides(ISkeletonCustomer)
     35    grok.implements(IAAUECustomer, ICustomerNavigation)
     36    grok.provides(IAAUECustomer)
    3737
    38     form_fields_interface = ISkeletonCustomer
     38    form_fields_interface = IAAUECustomer
    3939
    40 SkeletonCustomer = attrs_to_fields(SkeletonCustomer)
     40AAUECustomer = attrs_to_fields(AAUECustomer)
    4141
    4242
    43 class SkeletonCustomerFactory(grok.GlobalUtility):
     43class AAUECustomerFactory(grok.GlobalUtility):
    4444    """A factory for customers.
    4545    """
    4646    grok.implements(IFactory)
    4747    grok.name(u'waeup.Customer')
    48     title = u"Create a new skeleton customer.",
    49     description = u"This factory instantiates new skeleton customer instances."
     48    title = u"Create a new aaue customer.",
     49    description = u"This factory instantiates new aaue customer instances."
    5050
    5151    def __call__(self, *args, **kw):
    52         return SkeletonCustomer()
     52        return AAUECustomer()
    5353
    5454    def getInterfaces(self):
    55         return implementedBy(SkeletonCustomer)
     55        return implementedBy(AAUECustomer)
Note: See TracChangeset for help on using the changeset viewer.