Ignore:
Timestamp:
3 Jan 2015, 07:38:07 (10 years ago)
Author:
Henrik Bettermann
Message:

Replace 'skeleton' by 'pcn'.

Location:
main/ikobacustom.pcn/trunk
Files:
3 edited
1 moved

Legend:

Unmodified
Added
Removed
  • main/ikobacustom.pcn/trunk

    • Property svn:global-ignores set to
      bin
      develop-eggs
      parts
      sources
      var
  • main/ikobacustom.pcn/trunk/src

    • Property svn:global-ignores set to
      ikobacustom.pcn.egg-info
  • main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers/customer.py

    r12272 r12371  
    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.pcn.customers.interfaces import IPCNCustomer
     28from ikobacustom.pcn.interfaces import MessageFactory as _
    2929
    3030
    31 class SkeletonCustomer(Customer):
     31class PCNCustomer(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(IPCNCustomer, ICustomerNavigation)
     36    grok.provides(IPCNCustomer)
    3737
    38 SkeletonCustomer = attrs_to_fields(SkeletonCustomer)
     38PCNCustomer = attrs_to_fields(PCNCustomer)
    3939
    4040
    41 class SkeletonCustomerFactory(grok.GlobalUtility):
     41class PCNCustomerFactory(grok.GlobalUtility):
    4242    """A factory for customers.
    4343    """
    4444    grok.implements(IFactory)
    4545    grok.name(u'waeup.Customer')
    46     title = u"Create a new skeleton customer.",
    47     description = u"This factory instantiates new skeleton customer instances."
     46    title = u"Create a new pcn customer.",
     47    description = u"This factory instantiates new pcn customer instances."
    4848
    4949    def __call__(self, *args, **kw):
    50         return SkeletonCustomer()
     50        return PCNCustomer()
    5151
    5252    def getInterfaces(self):
    53         return implementedBy(SkeletonCustomer)
     53        return implementedBy(PCNCustomer)
Note: See TracChangeset for help on using the changeset viewer.