Ignore:
Timestamp:
23 Sep 2016, 05:54:20 (8 years ago)
Author:
Henrik Bettermann
Message:

Renaming 2

File:
1 edited

Legend:

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

    r14178 r14181  
    2525from waeup.ikoba.customers.customer import Customer
    2626from waeup.ikoba.customers.interfaces import ICustomerNavigation
    27 from ikobacustom.uniben.customers.interfaces import ISkeletonCustomer
     27from ikobacustom.uniben.customers.interfaces import IUnibenCustomer
    2828from ikobacustom.uniben.interfaces import MessageFactory as _
    2929
    3030
    31 class SkeletonCustomer(Customer):
     31class UnibenCustomer(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(IUnibenCustomer, ICustomerNavigation)
     36    grok.provides(IUnibenCustomer)
    3737
    38     form_fields_interface = ISkeletonCustomer
     38    form_fields_interface = IUnibenCustomer
    3939
    40 SkeletonCustomer = attrs_to_fields(SkeletonCustomer)
     40UnibenCustomer = attrs_to_fields(UnibenCustomer)
    4141
    4242
    43 class SkeletonCustomerFactory(grok.GlobalUtility):
     43class UnibenCustomerFactory(grok.GlobalUtility):
    4444    """A factory for customers.
    4545    """
     
    5050
    5151    def __call__(self, *args, **kw):
    52         return SkeletonCustomer()
     52        return UnibenCustomer()
    5353
    5454    def getInterfaces(self):
    55         return implementedBy(SkeletonCustomer)
     55        return implementedBy(UnibenCustomer)
Note: See TracChangeset for help on using the changeset viewer.