Ignore:
Timestamp:
10 Dec 2011, 06:15:17 (13 years ago)
Author:
Henrik Bettermann
Message:

Replace the term 'WAeUP' by SIRP which is a WAeUP product.

File:
1 edited

Legend:

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

    r7196 r7321  
    2323from zope.component import getUtility
    2424from zope.interface import implements
    25 from waeup.sirp.image.interfaces import IWAeUPImageFile
     25from waeup.sirp.image.interfaces import ISIRPImageFile
    2626
    27 class WAeUPImageFile(HurryFile):
     27class SIRPImageFile(HurryFile):
    2828    """A file prepared for storing image files.
    2929
     
    3232    regular hurry files.
    3333
    34     To create a :class:`WAeUPImageFile` you should use
    35     :func:`createWAeUPImageFile`.
     34    To create a :class:`SIRPImageFile` you should use
     35    :func:`createSIRPImageFile`.
    3636    """
    37     implements(IWAeUPImageFile)
     37    implements(ISIRPImageFile)
    3838
    3939    def __ne__(self, other):
     
    4545            return True
    4646
    47 def createWAeUPImageFile(filename, f):
     47def createSIRPImageFile(filename, f):
    4848    retrieval = getUtility(IFileRetrieval)
    4949    return retrieval.createFile(filename, f)
Note: See TracChangeset for help on using the changeset viewer.