Ignore:
Timestamp:
8 Mar 2012, 22:28:46 (13 years ago)
Author:
Henrik Bettermann
Message:

KOFA -> Kofa

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/utils/importexport.py

    r7811 r7819  
    2222from cStringIO import StringIO
    2323from zope.interface import Interface
    24 from waeup.kofa.interfaces import (IKOFAObject, IKOFAExporter,
    25                                    IKOFAXMLExporter, IKOFAXMLImporter)
     24from waeup.kofa.interfaces import (IKofaObject, IKofaExporter,
     25                                   IKofaXMLExporter, IKofaXMLImporter)
    2626
    2727def readFile(f):
     
    4040
    4141class Exporter(grok.Adapter):
    42     """Export a KOFA object as pickle.
     42    """Export a Kofa object as pickle.
    4343
    4444    This all-purpose exporter exports attributes defined in schemata
    4545    and contained objects (if the exported thing is a container).
    4646    """
    47     grok.context(IKOFAObject)
    48     grok.provides(IKOFAExporter)
     47    grok.context(IKofaObject)
     48    grok.provides(IKofaExporter)
    4949
    5050    def __init__(self, context):
     
    6161
    6262class XMLExporter(grok.Adapter):
    63     """Export a KOFA object as XML.
     63    """Export a Kofa object as XML.
    6464
    6565    This all-purpose exporter exports XML representations of pickable
     
    6767    """
    6868    grok.context(Interface)
    69     grok.provides(IKOFAXMLExporter)
     69    grok.provides(IKofaXMLExporter)
    7070
    7171    def __init__(self, context):
     
    8484
    8585class XMLImporter(grok.Adapter):
    86     """Import a KOFA object from XML.
     86    """Import a Kofa object from XML.
    8787    """
    8888    grok.context(Interface)
    89     grok.provides(IKOFAXMLImporter)
     89    grok.provides(IKofaXMLImporter)
    9090
    9191    def __init__(self, context):
Note: See TracChangeset for help on using the changeset viewer.