--- OSAS/OSA_system/OSAS_Root.py 2004/05/10 15:54:40 1.9 +++ OSAS/OSA_system/OSAS_Root.py 2004/06/22 06:39:04 1.10 @@ -52,12 +52,14 @@ class OSAS_Root(Folder,Implicit): def downloadExternalXML(self,index_meta_url,xml_url): """lade xml file""" + xmlneu=urllib.urlopen(xml_url).read() path=re.sub(self.REQUEST['SERVER_URL'],'',index_meta_url) - path=re.sub('http://foxridge.mpiwg-berlin.mpg.de:8080','',path) # falls foxridge als server + path=re.sub('http://foxridge.mpiwg-berlin.mpg.de:8080','',path) # falls foxridge als server path=re.sub('http://foxridge.mpiwg-berlin.mpg.de','',path) # falls foxridge als server + fh=open(path,'w') fh.write(xmlneu) fh.close()