Changeset 6338


Ignore:
Timestamp:
10 Jun 2011, 15:37:59 (13 years ago)
Author:
uli
Message:

Add component to store object related history (shouldnt this be part of logging?) as metadata.

Location:
main/waeup.sirp/trunk/src/waeup/sirp
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/interfaces.py

    r6293 r6338  
    419419        """
    420420
    421 class IImagesContainer(IWAeUPObject):
    422     """A container that stores images.
    423     """
     421class IObjectHistory(Interface):
     422
     423    messages = schema.List(
     424        title = u'List of messages stored',
     425        required = True,
     426        )
     427
     428    def addMessage(message):
     429        """Add a message.
     430        """
     431        pass
Note: See TracChangeset for help on using the changeset viewer.