--- versionedFile/versionedFile.py 2005/08/15 09:48:35 1.42 +++ versionedFile/versionedFile.py 2005/10/18 15:37:11 1.45 @@ -8,13 +8,16 @@ from AccessControl import getSecurityMan from Products.PageTemplates.PageTemplate import PageTemplate from Products.PageTemplates.ZopePageTemplate import ZopePageTemplate from AccessControl import ClassSecurityInfo -from Products.ImageArchive.ImageArchive import manage_AddImageZogiLib +try: + from Products.ImageArchive.ImageArchive import manage_AddImageZogiLib +except: + print "no images" from threading import Thread import shutil import tempfile import os.path - +import urllib import time try: @@ -520,7 +523,9 @@ class versionedFileObject(File): self.content_type="application/octet-stream" #self.REQUEST.RESPONSE.redirect(self.absolute_url()) - self.REQUEST.RESPONSE.write(self.index_html()) + self.REQUEST.RESPONSE.write(self.index_html()) + #txt=urllib.urlopen(self.absolute_url()).read() + #self.REQUEST.RESPONSE.write(txt) #self.REQUEST.RESPONSE.write("bl") self.REQUEST.close()