--- documentViewer/documentViewer.py 2007/06/22 16:02:55 1.30 +++ documentViewer/documentViewer.py 2007/06/29 15:44:40 1.31 @@ -425,7 +425,10 @@ class documentViewer(Folder): textUrl=getTextFromNode(textUrls[0]) if urlparse.urlparse(textUrl)[0]=="": #keine url textUrl=os.path.join(archivePath,textUrl) - + # fix URLs starting with /mpiwg/online + if textUrl.startswith("/mpiwg/online"): + textUrl = textUrl.replace("/mpiwg/online",'',1) + docinfo['textURL'] = textUrl presentationUrls=dom.xpath("//texttool/presentation")