--- OSAS/OSA_system/OSAS_Root.py 2004/07/01 07:46:42 1.13 +++ OSAS/OSA_system/OSAS_Root.py 2004/08/19 19:01:17 1.15 @@ -98,9 +98,10 @@ class OSAS_Root(Folder,Implicit): def downloadExternalXML(self,index_meta_url,xml_url): """lade xml file""" - + #print "GI" + #print xml_url xmlneu=urllib.urlopen(xml_url).read() - + try: dom=xml.dom.minidom.parseString(xmlneu) except: @@ -112,9 +113,11 @@ class OSAS_Root(Folder,Implicit): path=re.sub('http://'+self.REQUEST['HTTP_HOST'],'',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 + path=re.sub('http://foxridge.rz-berlin.mpg.de:8080','',path) # falls foxridge als server + path=re.sub('http://foxridge.rz-berlin.mpg.de','',path) # falls foxridge als server + path=re.sub('http://foxridge.mpiwg-berlin.mpg.de','',path) # falls foxridge als server + path=re.sub('http://content.mpiwg-berlin.mpg.de','',path) # falls content als server fh=open(path,'w')