Commit 9119c436 authored by Amos Latteier's avatar Amos Latteier

Added StringIO import which was needed for exporting objects as a download.

parent aec8c519
...@@ -84,9 +84,9 @@ ...@@ -84,9 +84,9 @@
############################################################################## ##############################################################################
__doc__="""Object Manager __doc__="""Object Manager
$Id: ObjectManager.py,v 1.60 1999/04/01 16:13:26 jim Exp $""" $Id: ObjectManager.py,v 1.61 1999/04/02 02:09:52 amos Exp $"""
__version__='$Revision: 1.60 $'[11:-2] __version__='$Revision: 1.61 $'[11:-2]
import App.Management, Acquisition, App.Undo, Globals, CopySupport import App.Management, Acquisition, App.Undo, Globals, CopySupport
import os, App.FactoryDispatcher, ts_regex, Products import os, App.FactoryDispatcher, ts_regex, Products
...@@ -94,6 +94,7 @@ from Globals import HTMLFile, HTMLFile, Persistent ...@@ -94,6 +94,7 @@ from Globals import HTMLFile, HTMLFile, Persistent
from Globals import MessageDialog, default__class_init__ from Globals import MessageDialog, default__class_init__
from webdav.NullResource import NullResource from webdav.NullResource import NullResource
from urllib import quote from urllib import quote
from cStringIO import StringIO
bad_id=ts_regex.compile('[^a-zA-Z0-9-_~\,\. ]').match bad_id=ts_regex.compile('[^a-zA-Z0-9-_~\,\. ]').match
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment