--- OSAS/OSA_system/OSAS_addfiles.py 2003/10/11 10:54:13 1.10 +++ OSAS/OSA_system/OSAS_addfiles.py 2004/04/02 08:02:15 1.22 @@ -1,7 +1,10 @@ # Methoden und Classen zum Hinzufuegen von Dokumenten + +from OSAS_helpers import readArchimedesXML, getISO, getText +import os import xml.dom.minidom -from Products.ECHO_content import ECHO_collection + import urllib import OSAS_add import OSAS_show @@ -11,6 +14,21 @@ from AccessControl import ClassSecurityI from Globals import InitializeClass from Products.PageTemplates.PageTemplateFile import PageTemplateFile from Products.PageTemplates.PageTemplate import PageTemplate +import archive # check if this is necessary + + +from xml.sax import make_parser +from xml.sax.handler import ContentHandler + +def spaces(depth): + """needed in XMLtoTree""" + tmp="" + k=0 + while k<2*depth: + k+=1 + tmp=tmp+" "+" " + return tmp + class OSAS_add_Document(Folder): """Hinzufuegen eines Dokumentes zum Storage""" @@ -31,7 +49,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/zpt/ChangeOSAS_addDocument.zpt').__of__(self) return pt() security.declarePublic('change_OSAS_add_Document') @@ -80,7 +98,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/zpt/AddOSAS_document.zpt').__of__(self) return pt() def manage_AddOSAS_add_Document(self,id,RESPONSE=None): @@ -113,7 +131,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/zpt/ChangeOSAS_addText.zpt').__of__(self) return pt() security.declarePublic('change_OSAS_add_Text') @@ -132,7 +150,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/zpt/AddOSAS_text.zpt').__of__(self) return pt() def manage_AddOSAS_add_Text(self,id,RESPONSE=None): @@ -145,6 +163,7 @@ def manage_AddOSAS_add_Text(self,id,RESP InitializeClass(OSAS_add_Text) + class OSAS_add_contextData(Folder): """Einfuegen eines Documentes in eine Collection""" @@ -153,6 +172,34 @@ class OSAS_add_contextData(Folder): meta_type='OSAS_add_contextData' + def XmlToTree(self,URL): + """Collection XML to Tree""" + + + class requestHandler(ContentHandler): + def __init__(self): + self.depth=0 + self.retStr="" + + def startElement(self,name,attrs): + if name=="element": + self.depth+=1 + self.retStr+=spaces(self.depth)+"%s"%(attrs.get('url'),attrs.get('name'))+"
\n" + + + + def endElement(self,name): + if name=="element": + self.depth-=1 + + + parser=make_parser() + curHandler=requestHandler() + parser.setContentHandler(curHandler) + #return urllib.urlopen(URL).read() + parser.parse(urllib.urlopen(URL)) + return curHandler.retStr + def __init__(self,id,collection): self.id=id self.collection=collection @@ -164,8 +211,10 @@ class OSAS_add_contextData(Folder): list.append(object) return list + + def printChilds(self,startItem,depth,items,enddepth): - + """NOT USED ANYMORE""" def spaces(depth): tmp="" k=0 @@ -184,15 +233,16 @@ 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=10): - """Erzeugt HTML-Tree der Collection""" + """Erzeugt HTML-Tree der Collection NOTE USED ANYMORE""" exec("items=self.getPhysicalRoot()."+self.collection+".getCollectionTree()") #print items[0][0] @@ -205,40 +255,54 @@ class OSAS_add_contextData(Folder): """Zeige Partnerliste""" exec("items=self.getPhysicalRoot()."+self.collection+".partners.getPartners()") return items + def addContextData(self,path): """Hinzufügen zu einer Sammlung""" try: urllib.urlopen(self.REQUEST['SERVER_URL']+path+"/index.meta") except: - return "index.meta file has to exist!" + return self.REQUEST['SERVER_URL']+path+"/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 + #return links self.REQUEST.SESSION['links']=links - pt=PageTemplateFile('Products/OSA_system/contextDataMain.zpt').__of__(self) + pt=PageTemplateFile('Products/OSA_system/zpt/contextDataMain.zpt').__of__(self) return pt() - def addContextData2(self,path,collection,context,science,practice,source_type,period,link,label,description,content_type,responsible,credits): + def addContextData2(self,path,collection,context,link,label,description,content_type,responsible,weight,credits=None): """Hinzufuegen der Resource""" splitted=path.split("/") - + #print "BLU" id=splitted[len(splitted)-1] title=splitted[len(splitted)-1] metalink=self.REQUEST['SERVER_URL']+path+"/index.meta" + #link=TOBEDONE" """Hinzufügen der Ressource""" - - exec("collection_object=self"+collection) - - ECHO_collection.manage_AddECHO_resource(collection_object,context,science,practice,source_type,period,id,title,label,description,content_type,responsible,link,metalink,credits,RESPONSE=None) + params=urllib.urlencode({'id':id,'title':title,'link':link,'label':label,'description':description,'content_type':content_type,'responsible':responsible,'weight':weight,'credits':credits,'metalink':metalink}) - getattr(collection_object,id).ECHO_getResourceMD() + retStr=urllib.urlopen(collection+"/addResource",params).read() + if not retStr: + return "An Error occured adding the resource\n" + urllib.urlopen(collection+"/"+id+"/ECHO_getResourceMD").read() + #exec("collection_object=self"+collection) + + + + #ECHO_collection.manage_addECHO_resource(collection_object,id,title,label,description,content_type,responsible,link,metalink,credits,weight,RESPONSE=None) + #print "HI5" + #try: + # getattr(collection_object,id).ECHO_getResourceMD() + #except: + # """nothing""" + #return "BLUByy" return self.REQUEST.RESPONSE.redirect(self.REQUEST['URL2']+'?path='+path) manage_options = Folder.manage_options+( @@ -248,7 +312,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/zpt/ChangeOSAS_add_contextData.zpt').__of__(self) return pt() @@ -260,7 +324,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/zpt/AddOSAS_contextData.zpt').__of__(self) return pt() def manage_AddOSAS_add_contextData(self,id,collection,RESPONSE=None): @@ -292,7 +356,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/zpt/ChangeOSAS_addPresentation.zpt').__of__(self) return pt() security.declarePublic('change_OSAS_add_Presentation') @@ -312,7 +376,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/zpt/AddOSAS_presentation.zpt').__of__(self) return pt() def manage_AddOSAS_add_Presentation(self,id,RESPONSE=None): @@ -326,7 +390,7 @@ def manage_AddOSAS_add_Presentation(self InitializeClass(OSAS_add_Presentation) class OSAS_combineTextImage(Folder): - """Hinzufügen der Combine Text und Image""" + """Hinzufüge der Combine Text und Image""" security=ClassSecurityInfo() def __init__(self,id): @@ -339,12 +403,12 @@ class OSAS_combineTextImage(Folder): {'label':'Main Config','action':'combineTextImage_config'}, ) - + 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/zpt/ChangeOSAS_combineTextImage.zpt').__of__(self) return pt() security.declarePublic('change_OSAS_combineTextImage') @@ -357,22 +421,96 @@ class OSAS_combineTextImage(Folder): security.declarePublic('combineTextImage') def combineTextImage(self,path): """Hinzufügen der Presenationsinformation""" - return OSAS_add.combineTextImage(self,path) + """gibt input formular zur erstellung des texttools meta tag aus""" + files = os.listdir(path) + + texts=[] + imagefolders=[] + presentationfolders=[] + + splitted=path.split("/") + externxml=readArchimedesXML(splitted[len(splitted)-1]) + + for filename in files: + #print "FN",filename + if archive.isdigilib2(path+"/"+filename): + imagefolders.append(filename) + + if archive.isFullText(path,filename): + #print "HI" + texts.append(filename) + if archive.isPresentation(path,filename): + presentationfolders.append(filename) + + dom=xml.dom.minidom.parse(path+"/index.meta") + try: + filelanguage=archive.getText(dom.getElementsByTagName('lang')[0].childNodes) + except: + filelanguage="" + + self.REQUEST.SESSION['isolist']=getISO() + tmp=getISO().keys() + tmp.sort() + self.REQUEST.SESSION['isolistsort']=tmp + self.REQUEST.SESSION['path']=path + self.REQUEST.SESSION['texts']=texts + self.REQUEST.SESSION['imagefolders']=imagefolders + self.REQUEST.SESSION['presentationfolders']=presentationfolders + self.REQUEST.SESSION['filelanguage']=filelanguage + self.REQUEST.SESSION['externxml']=externxml + + newtemplate=PageTemplateFile('Products/OSA_system/zpt/ImageandText').__of__(self) + return newtemplate() + + def getProjects(self,obj_ids=None): + """Get the Project title for configuration""" + ret=[] + print "HI" + try: + projects=self.ZopeFind(self.projects,obj_metatypes=['OSAS_project'],obj_ids=obj_ids)#assumes projects folder somewhere in the hierarchie. + print "pr" + for project in projects: + ret.append((project[1].title,project[0],project[1])) + print ret + return ret + + except: + return [('no Projectfolders','')] + + def getTextToolsField(self,path,name,default=''): + """Lese Textoolsfelder aus index.meta im path aus""" + + try: + dom=xml.dom.minidom.parse(path+"/index.meta") + node=dom.getElementsByTagName('texttool')[0] #getNode + subnode=node.getElementsByTagName(name)[0] + print getText(subnode.childNodes) + return getText(subnode.childNodes) + except: + return default + def combineTextImage2(self,path): """Eingabe von Metadateninformationen""" 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 + linkViewerEnvironment="http://nausikaa2.mpiwg-berlin.mpg.de/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) + pt=PageTemplateFile('Products/OSA_system/zpt/AddOSAS_combineTextImageFinal.zpt').__of__(self) return pt() + def isSelectedProject(self,obj,id): + """is ausgewählt""" + + if self.REQUEST['project']==id: + return 1 + else: + return None def writeToContext(path,link,description): """Created an additional entry to the index.meta file of path""" @@ -400,7 +538,7 @@ def writeToContext(path,link,description 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/zpt/AddOSAS_combineTextImage.zpt').__of__(self) return pt() def manage_AddOSAS_combineTextImage(self,id,RESPONSE=None):