Ignore:
Timestamp:
17 May 2015, 20:02:59 (10 years ago)
Author:
Henrik Bettermann
Message:

Remove deprecated xml importer and exporter components.

Location:
main/waeup.kofa/trunk/src/waeup/kofa/doctests
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/doctests/app.txt

    r12951 r12960  
    5757  <waeup.kofa.configuration.ConfigurationContainer object at 0x...>
    5858
    59 We can export universities. For this we lookup an appropriate exporter
    60 first::
    61 
    62   >>> from waeup.kofa.interfaces import IKofaExporter
    63   >>> exporter = IKofaExporter(myuniversity)
    64   >>> exporter
    65   <waeup.kofa.utils.importexport.Exporter object at 0x...>
    66 
    67 Now we can trigger the export::
    68 
    69   >>> exporter.export()
    70   <cStringIO.StringO object at 0x...>
    71 
    72 We can also get an XML representation as file. If we do not provide a
    73 filepath, we will get an instance of `cStringIO.StringIO`, i.e. a
    74 memory file::
    75 
    76   >>> from waeup.kofa.interfaces import IKofaXMLExporter
    77   >>> exporter = IKofaXMLExporter(myuniversity)
    78   >>> f = exporter.export()
    79   >>> f
    80   <cStringIO.StringO object at 0x...>
    81 
    82   >>> print f.read()
    83   <?xml version="1.0" encoding="utf-8" ?>
    84   <pickle>
    85     <initialized_object id="...">
    86   ...
    87   </pickle>
    88 
    8959Kofa plugins
    9060============
  • main/waeup.kofa/trunk/src/waeup/kofa/doctests/pages.txt

    r12938 r12960  
    150150
    151151  >>> browser.open('http://localhost/myuniversity//@@change_language?lang=en')
    152 
    153 We can export a university as XML::
    154 
    155   >>> browser.open('http://localhost/myuniversity/export.xml')
    156   >>> print browser.contents
    157   <?xml version="1.0" encoding="utf-8" ?>
    158   <pickle>
    159   ...
    160   </pickle>
    161 
    162   >>> print browser.headers
    163   Status: 200 Ok
    164   Content-Length: ...
    165   Content-Type: text/xml; charset=UTF-8
    166   X-Powered-By: Zope (www.zope.org), Python (www.python.org)
    167152
    168153
Note: See TracChangeset for help on using the changeset viewer.