--- OSAS/OSA_system/OSAS_addfiles.py 2003/10/06 23:02:48 1.6 +++ OSAS/OSA_system/OSAS_addfiles.py 2003/10/11 16:44:23 1.11 @@ -1,8 +1,10 @@ # Methoden und Classen zum Hinzufuegen von Dokumenten +import xml.dom.minidom from Products.ECHO_content import ECHO_collection import urllib import OSAS_add +import OSAS_show import string from OFS.Folder import Folder from AccessControl import ClassSecurityInfo @@ -29,7 +31,7 @@ class OSAS_add_Document(Folder): security.declarePublic('add_Document_config') def add_Document_config(self): """Main configuration""" - pt=PageTemplateFile('products/OSA_system/ChangeOSAS_addDocument.zpt').__of__(self) + pt=PageTemplateFile('Products/OSA_system/ChangeOSAS_addDocument.zpt').__of__(self) return pt() security.declarePublic('change_OSAS_add_Document') @@ -78,7 +80,7 @@ class OSAS_add_Document(Folder): def manage_AddOSAS_add_DocumentForm(self): """interface for adding the OSAS_add_Metadata""" - pt=PageTemplateFile('products/OSA_system/AddOSAS_document.zpt').__of__(self) + pt=PageTemplateFile('Products/OSA_system/AddOSAS_document.zpt').__of__(self) return pt() def manage_AddOSAS_add_Document(self,id,RESPONSE=None): @@ -111,7 +113,7 @@ class OSAS_add_Text(Folder): security.declarePublic('add_Text_config') def add_Text_config(self): """Main configuration""" - pt=PageTemplateFile('products/OSA_system/ChangeOSAS_addText.zpt').__of__(self) + pt=PageTemplateFile('Products/OSA_system/ChangeOSAS_addText.zpt').__of__(self) return pt() security.declarePublic('change_OSAS_add_Text') @@ -130,7 +132,7 @@ class OSAS_add_Text(Folder): return OSAS_add.addText2(self) def manage_AddOSAS_add_TextForm(self): """interface for adding the OSAS_add_Metadata""" - pt=PageTemplateFile('products/OSA_system/AddOSAS_text.zpt').__of__(self) + pt=PageTemplateFile('Products/OSA_system/AddOSAS_text.zpt').__of__(self) return pt() def manage_AddOSAS_add_Text(self,id,RESPONSE=None): @@ -182,20 +184,20 @@ class OSAS_add_contextData(Folder): if depth < enddepth: tmp=tmp+spaces(depth) - tmp= tmp+retLink(child[1])+"
"+self.printChilds(child[1],depth,items,enddepth)+"
" + tmp= tmp+retLink(child[1])+"
"+self.printChilds(child[1],depth,items,enddepth) else: tmp=tmp+spaces(2*depth) - tmp = tmp+retLink(child[1])+"
" + tmp = tmp+retLink(child[1]) return tmp - def generateTree(self,depth=3): + def generateTree(self,depth=10): """Erzeugt HTML-Tree der Collection""" exec("items=self.getPhysicalRoot()."+self.collection+".getCollectionTree()") #print items[0][0] - childs=self.printChilds(items[0][0],0,items,3) + childs=self.printChilds(items[0][0],0,items,depth) return childs @@ -207,21 +209,27 @@ class OSAS_add_contextData(Folder): """Hinzufügen zu einer Sammlung""" try: urllib.urlopen(self.REQUEST['SERVER_URL']+path+"/index.meta") - pt=PageTemplateFile('products/OSA_system/contextDataMain.zpt').__of__(self) - return pt() + except: return "index.meta file has to exist!" + links=[(path,'standard storage')] + + links+=OSAS_show.readContexts(path) # auslesen von contexten für den link + #print "LINK",links + self.REQUEST.SESSION['links']=links + pt=PageTemplateFile('Products/OSA_system/contextDataMain.zpt').__of__(self) + return pt() - def addContextData2(self,path,collection,context,science,practice,source_type,period,label,description,content_type,responsible,credits): + def addContextData2(self,path,collection,context,science,practice,source_type,period,link,label,description,content_type,responsible,credits): """Hinzufuegen der Resource""" splitted=path.split("/") id=splitted[len(splitted)-1] title=splitted[len(splitted)-1] metalink=self.REQUEST['SERVER_URL']+path+"/index.meta" - link="TOBEDONE" + #link=TOBEDONE" """Hinzufügen der Ressource""" @@ -240,7 +248,7 @@ class OSAS_add_contextData(Folder): def add_contextData_config(self): """Main configuration""" - pt=PageTemplateFile('products/OSA_system/ChangeOSAS_add_contextData.zpt').__of__(self) + pt=PageTemplateFile('Products/OSA_system/ChangeOSAS_add_contextData.zpt').__of__(self) return pt() @@ -252,7 +260,7 @@ class OSAS_add_contextData(Folder): def manage_AddOSAS_add_contextDataForm(self): """interface for adding the OSAS_add_Metadata""" - pt=PageTemplateFile('products/OSA_system/AddOSAS_contextData.zpt').__of__(self) + pt=PageTemplateFile('Products/OSA_system/AddOSAS_contextData.zpt').__of__(self) return pt() def manage_AddOSAS_add_contextData(self,id,collection,RESPONSE=None): @@ -284,7 +292,7 @@ class OSAS_add_Presentation(Folder): security.declarePublic('add_Presentation_config') def add_Presentation_config(self): """Main configuration""" - pt=PageTemplateFile('products/OSA_system/ChangeOSAS_addPresentation.zpt').__of__(self) + pt=PageTemplateFile('Products/OSA_system/ChangeOSAS_addPresentation.zpt').__of__(self) return pt() security.declarePublic('change_OSAS_add_Presentation') @@ -304,7 +312,7 @@ class OSAS_add_Presentation(Folder): def manage_AddOSAS_add_PresentationForm(self): """interface for adding the OSAS_add_Metadata""" - pt=PageTemplateFile('products/OSA_system/AddOSAS_presentation.zpt').__of__(self) + pt=PageTemplateFile('Products/OSA_system/AddOSAS_presentation.zpt').__of__(self) return pt() def manage_AddOSAS_add_Presentation(self,id,RESPONSE=None): @@ -336,7 +344,7 @@ class OSAS_combineTextImage(Folder): security.declarePublic('combineTextImage_config') def combineTextImage_config(self): """Main configuration""" - pt=PageTemplateFile('products/OSA_system/ChangeOSAS_combineTextImage.zpt').__of__(self) + pt=PageTemplateFile('Products/OSA_system/ChangeOSAS_combineTextImage.zpt').__of__(self) return pt() security.declarePublic('change_OSAS_combineTextImage') @@ -353,12 +361,46 @@ class OSAS_combineTextImage(Folder): def combineTextImage2(self,path): """Eingabe von Metadateninformationen""" - return OSAS_add.combineTextImage2(self,path) + OSAS_add.combineTextImage2(self,path) # Add images + splitted=path.split("/") + linkPath=splitted[len(splitted)-1] + linkViewerEnvironment="http://nausikaa2.mpiwg-berlin.mpg.de:86/cgi-bin/toc/toc.x.cgi?dir=%s&step=thumb" % linkPath + self.REQUEST.SESSION['linkViewerEnvironment']=linkViewerEnvironment + + writeToContext(path,linkViewerEnvironment,"ECHO standard environment") + + pt=PageTemplateFile('Products/OSA_system/AddOSAS_combineTextImageFinal.zpt').__of__(self) + + return pt() + + +def writeToContext(path,link,description): + """Created an additional entry to the index.meta file of path""" + dom=xml.dom.minidom.parse(path+"/index.meta") + node=dom.getElementsByTagName('resource')[0] + + subnode=dom.createElement('context') + + linknode=dom.createElement('link') + namelinknode=dom.createTextNode(link) + linknode.appendChild(namelinknode) + subnode.appendChild(linknode) + + linknode=dom.createElement('name') + namelinknode=dom.createTextNode(description) + linknode.appendChild(namelinknode) + subnode.appendChild(linknode) + + node.appendChild(subnode) + + writefile=file(path+"/index.meta","w") + #print path+"/index.meta" + writefile.write(dom.toxml().encode('utf-8')) + writefile.close() - def manage_AddOSAS_combineTextImageForm(self): """interface for adding the OSAS_add_Metadata""" - pt=PageTemplateFile('products/OSA_system/AddOSAS_combineTextImage.zpt').__of__(self) + pt=PageTemplateFile('Products/OSA_system/AddOSAS_combineTextImage.zpt').__of__(self) return pt() def manage_AddOSAS_combineTextImage(self,id,RESPONSE=None):