--- ECHO_content/ECHO_collection.py 2003/12/03 19:01:23 1.2 +++ ECHO_content/ECHO_collection.py 2004/04/04 17:48:22 1.28 @@ -1,4 +1,4 @@ - +"""New version of the product started February, 8th. Without scientific classification, use content-type for further classification.""" """Echo collection provides the classes for the ECHO content web-site. class ECHO_collection is the basis class for an ECHO collection. @@ -8,9 +8,9 @@ class ECHO_resource contains information class ECHO_externalLink contains information on externalLinks - """ import string +import re import OFS.Image from types import * from OFS.Image import Image @@ -24,10 +24,16 @@ from Products.PageTemplates.PageTemplate from Products.PageTemplates.PageTemplate import PageTemplate from Globals import Persistent from Acquisition import Implicit - +#from psycopg import libpq +#from pyPgSQL import libpq +import xml.dom.minidom import urllib import xml.dom.minidom +from ECHO_graphicalOverview import javaHandler,javaScriptMain + +#List of different types for the graphical linking viewer +viewClassificationListMaster=['view point','area'] def toList(field): @@ -90,31 +96,40 @@ def readMetadata(url): return metadict,"" -def setECHO_CollectionInformation(self,context,science,practice,source_type,period,id,title,label,description,content_type,responsible,credits,weight,coords): +def setECHO_collectionInformation(self,title,label,description,contentType,responsible,credits,weight,coordstrs,viewClassification=""): """Allegemeine Informationen zu einer ECHO Collection""" + self.viewClassification=viewClassification + self.label = label self.title=title self.description=description - self.content_type=content_type + self.contentType=contentType self.responsible=responsible self.credits=toList(credits) self.weight=weight - self.scientific_Information.source_type=source_type - self.scientific_Information.period=period - self.scientific_Information.scientific_Classification.context=context - self.scientific_Information.scientific_Classification.science=science - self.scientific_Information.scientific_Classification.practice=practice - - + coords=[] #coordinates of for rectangles - self.coords=coords + + #print "cs", coordstrs + if coordstrs: + for coordstr in coordstrs: + #print "cs", coordstr + try: + temco=coordstr.split(",") + except: + temco=[] + #temco.append(angle) + coords.append(temco) + + + self.coords=coords[0:] class scientificClassification(SimpleItem,Persistent,Implicit): - """subclass""" + """outdated will be deleeted in the next versions: subclass""" security=ClassSecurityInfo() def __init__(self,context,science,practice): @@ -137,7 +152,7 @@ class scientificClassification(SimpleIte class scientificInformation(Folder,Persistent,Implicit): - """subclass scientificInformation""" + """outdated will be deleted in the next versions: subclass scientificInformation""" security=ClassSecurityInfo() @@ -163,8 +178,22 @@ class ECHO_resource(Folder): """ECHO Ressource""" meta_type='ECHO_resource' + viewClassificationList=viewClassificationListMaster - def __init__(self,id,link,metalink,title,label,description,content_type,responsible,credits,weight,coords): + def getViewClassification(self): + if hasattr(self,'viewClassification'): + return self.viewClassification + else: + return "" + + def getCredits(self): + """Ausgabe der credits""" + if self.credits: + return self.credits + else: + return [] + + def __init__(self,id,link,metalink,title,label,description,contentType,responsible,credits,weight,coords): self.id = id """Festlegen der ID""" @@ -176,12 +205,23 @@ class ECHO_resource(Folder): self.weight=weight self.credits=toList(credits) self.description=description - self.content_type=content_type + self.contentType=contentType self.responsible=responsible - coordsnew=[ string.split(x,",") for x in coords] + + if coords: + coordsnew=[ string.split(x,",") for x in coords] + else: + coordsnew=[] + self.coords=coordsnew - + + def getCoords(self): + try: + return [string.join(x,",") for x in self.coords] + except: + return [] + def ECHO_resource_config(self): """Main configuration""" @@ -191,18 +231,21 @@ class ECHO_resource(Folder): if not hasattr(self,'coords'): self.coords=[] - pt=PageTemplateFile('Products/ECHO_content/ChangeECHO_resource.zpt').__of__(self) + print "vorher",self.coords + pt=PageTemplateFile('Products/ECHO_content/zpt/ChangeECHO_resource.zpt').__of__(self) return pt() - def changeECHO_resource(self,metalink,link,context,science,practice,source_type,period,title,label,description,content_type,responsible,credits,weight,coords,RESPONSE=None): - + def changeECHO_resource(self,metalink,link,title,label,description,contentType,responsible,weight,viewClassification="",coords=None,credits=None,RESPONSE=None): """Änderung der Properties""" - - setECHO_CollectionInformation(self,context,science,practice,source_type,period,id,title,label,description,content_type,responsible,credits,weight,coords) - + coordsnew=[ string.split(x,",") for x in coords] + + + setECHO_collectionInformation(self,title,label,description,contentType,responsible,credits,weight,coordsnew) + + self.coords=coordsnew[0:] self.link=link self.metalink=metalink @@ -213,15 +256,40 @@ class ECHO_resource(Folder): manage_options = Folder.manage_options+( {'label':'Main Config','action':'ECHO_resource_config'}, {'label':'Metadata','action':'ECHO_getResourceMD'}, - + {'label':'Graphics','action':'ECHO_graphicEntry'}, ) - + def getOverview(self): + """overview graphics""" + + return self.aq_parent.ZopeFind(self.aq_parent,obj_ids=['overview'])[0][1] + + def ECHO_graphicEntry(self): + """DO nothing""" + overview = self.aq_parent.ZopeFind(self.aq_parent,obj_ids=['overview']) + if overview: + pt=PageTemplateFile('Products/ECHO_content/zpt/ECHO_draw.zpt').__of__(self) + return pt() + else: + return "NO OVERVIEW GRAPHICS" + + def ECHO_enterCoords(self,coordstr,angle="",RESPONSE=None): + """Enter coords""" + coords=self.coords + temco=coordstr.split(",") + temco.append(angle) + coords.append(temco) + + self.coords=coords[0:] + + if RESPONSE is not None: + RESPONSE.redirect('ECHO_graphicEntry') + def ECHO_getResourceMD(self,template="yes"): """Einlesen der Metadaten und Anlegen dieser Metadaten als Informationen zur Resource""" (metadict, error)=readMetadata(self.metalink) - #print "BLA" + if not error=="": #Fehler beim Auslesen des Metafiles return "ERROR:",error @@ -231,11 +299,11 @@ class ECHO_resource(Folder): self.metadata=metadict.keys() - #return "BLUccssB" + self.label=self.generate_label() if template=="yes": - pt=PageTemplateFile('Products/ECHO_content/ECHO_resourceMD.zpt').__of__(self) + pt=PageTemplateFile('Products/ECHO_content/zpt/ECHO_resourceMD.zpt').__of__(self) return pt() def ECHO_getMD(self,item): @@ -250,29 +318,23 @@ class ECHO_resource(Folder): def generate_label(self): """Erzeugt_standard_Label aus Template""" pt=getattr(self,"label_template_"+self.bib_type) - #return pt - #pt.content_type="text/html; charset=utf-8" + return pt() -def manage_AddECHO_resourceForm(self): - """Nothing yet""" - pt=PageTemplateFile('Products/ECHO_content/AddECHO_resourceForm.zpt').__of__(self) +def manage_addECHO_resourceForm(self): + """Form for adding a ressource""" + pt=PageTemplateFile('Products/ECHO_content/zpt/AddECHO_resourceForm.zpt').__of__(self) return pt() -def manage_AddECHO_resource(self,context,science,practice,source_type,period,id,title,label,description,content_type,responsible,link,metalink,credits,weight,coords,RESPONSE=None): - """nothing yet""" - scientificClassificationObj=scientificClassification(context,science,practice) - - scientificInformationObj=scientificInformation(source_type,period) - +def manage_addECHO_resource(self,id,title,label,description,contentType,responsible,link,metalink,weight,credits=None,coords=None,RESPONSE=None): + """addaresource""" - newObj=ECHO_resource(id,link,metalink,title,label,description,content_type,responsible,credits,weight,coords) + newObj=ECHO_resource(id,link,metalink,title,label,description,contentType,responsible,credits,weight,coords) self._setObject(id,newObj) - getattr(self,id)._setObject('scientific_Information',scientificInformationObj) - getattr(self,id).scientific_Information._setObject('scientific_Classification',scientificClassificationObj) + if RESPONSE is not None: RESPONSE.redirect('manage_main') @@ -283,7 +345,7 @@ class ECHO_externalLink(Folder): meta_type='ECHO_externalLink' - def __init__(self,id,link,title,label,description,content_type,responsible,credits,weight,coords): + def __init__(self,id,link,title,label,description,contentType,responsible,credits,weight,coords): self.id = id """Festlegen der ID""" @@ -294,7 +356,7 @@ class ECHO_externalLink(Folder): self.title=title self.weight=weight self.description=description - self.content_type=content_type + self.contentType=contentType self.responsible=responsible coordsnew=[ string.split(x,",") for x in coords] self.coords=coordsnew @@ -305,22 +367,22 @@ class ECHO_externalLink(Folder): if not hasattr(self,'weight'): self.weight="" if not hasattr(self,'coords'): - print "HI" + self.coords=[''] - print "G",self.coords + #print "G",self.coords - pt=PageTemplateFile('Products/ECHO_content/ChangeECHO_externalLink.zpt').__of__(self) + pt=PageTemplateFile('Products/ECHO_content/zpt/ChangeECHO_externalLink.zpt').__of__(self) return pt() - def changeECHO_externalLink(self,link,context,science,practice,source_type,period,title,label,description,content_type,responsible,credits,weight,coords,RESPONSE=None): + def changeECHO_externalLink(self,link,title,label,description,contentType,responsible,weight,coords=None,credits=None,RESPONSE=None): """Änderung der Properties""" - + coordsnew=[ string.split(x,",") for x in coords] - setECHO_CollectionInformation(self,context,science,practice,source_type,period,id,title,label,description,content_type,responsible,credits,weight,coords) + setECHO_collectionInformation(self,title,label,description,contentType,responsible,credits,weight,coords) - + self.coords=coordsnew[0:] self.link=link if RESPONSE is not None: RESPONSE.redirect('manage_main') @@ -329,47 +391,94 @@ class ECHO_externalLink(Folder): manage_options = Folder.manage_options+( {'label':'Main Config','action':'ECHO_externalLink_config'}, ) - + + def getCredits(self): + """Ausgabe der credits""" + if self.credits: + return self.credits + else: + return [] + def index_html(self): """standard page""" return self.REQUEST.RESPONSE.redirect(self.link) -def manage_AddECHO_externalLinkForm(self): - """Nothing yet""" - pt=PageTemplateFile('Products/ECHO_content/AddECHO_externalLinkForm.zpt').__of__(self) +def manage_addECHO_externalLinkForm(self): + """Form for external Links""" + pt=PageTemplateFile('Products/ECHO_content/zpt/AddECHO_externalLinkForm.zpt').__of__(self) return pt() -def manage_AddECHO_externalLink(self,context,science,practice,source_type,period,id,title,label,description,content_type,responsible,link,credits,weight,coords,RESPONSE=None): - - """nothing yet""" - scientificClassificationObj=scientificClassification(context,science,practice) - - scientificInformationObj=scientificInformation(source_type,period) - +def manage_addECHO_externalLink(self,id,title,label,description,contentType,responsible,link,weight,coords=None,credits=None,RESPONSE=None): + """Add an external Link""" - newObj=ECHO_externalLink(id,link,title,label,description,content_type,responsible,credits,weight,coords) + newObj=ECHO_externalLink(id,link,title,label,description,contentType,responsible,credits,weight,coords) self._setObject(id,newObj) - getattr(self,id)._setObject('scientific_Information',scientificInformationObj) - getattr(self,id).scientific_Information._setObject('scientific_Classification',scientificClassificationObj) + if RESPONSE is not None: RESPONSE.redirect('manage_main') - + + class ECHO_collection(Folder, Persistent, Implicit): """ECHO Collection""" security=ClassSecurityInfo() meta_type='ECHO_collection' + def getImageTag(self): + """GetTag""" + try: + return self.imageTag + except: + return "" + def addResource(self,id,title,label,description,contentType,responsible,link,metalink,weight,credits=None,coords=None,RESPONSE=None): + """SSS""" + try: + manage_addECHO_resource(self,id,title,label,description,contentType,responsible,link,metalink,weight,credits=None,coords=None,RESPONSE=None) + return "done" + except: + return None + + def getCollectionTreeXML(self): + """Tree as XML""" + + def getCollection(object,depth=0): + depth+=1 + collections="" + for entry in object.__dict__.keys(): + element=getattr(object,entry) + try: + if element.meta_type=="ECHO_collection": + collections+="" + collections+=getCollection(element,depth)+"\n" + except: + """nothing""" + return collections + + + return ""+getCollection(self)+"" + + def createJavaScript(self): + """CreateJava""" + ret=javaScriptMain + + dynamical="" + for ob in self.getGraphicCoords(): + dynamical+="""Coords.push(new Coord('%s', Img, %s));\n"""%(ob[1],ob[0]) + ret+=javaHandler%dynamical + return ret security.declarePublic('getCreditObject') def getCreditObject(self,name): """credit id to credititem""" - return getattr(self.partners,name) - + try: + return getattr(self.partners,name) + except: + return "" + security.declarePublic('ECHO_generateNavBar') def ECHO_generateNavBar(self): """Erzeuge Navigationsbar""" @@ -392,8 +501,7 @@ class ECHO_collection(Folder, Persistent security.declarePublic('ECHO_rerenderLinksMD') def ECHO_rerenderLinksMD(self): """Rerender all Links""" - #print "HI" - #return "OK" + for entry in self.__dict__.keys(): object=getattr(self,entry) @@ -408,21 +516,22 @@ class ECHO_collection(Folder, Persistent """nothing""" return "Rerenderd all links to resources in: "+self.title - - - - security.declarePublic('printall') - def printall(self): - return self.scientific_information.__dict__.keys() + security.declarePublic('ECHO_newViewerLink') + def getCoords(self): try: - return [ string.join(x,",") for x in self.coords] + + x= [string.join(x,",") for x in self.coords] + return x + except: + return [] - def __init__(self,id,title,label,description,content_type,responsible,credits,weight,sortfield,coords): - print "CO",coords + + def __init__(self,id,title,label,description,contentType,responsible,credits,weight,sortfield,coords,imageTag=""): + #print "CO",coords self.id = id """Festlegen der ID""" @@ -430,9 +539,9 @@ class ECHO_collection(Folder, Persistent self.label = label self.title=title self.description=description - self.content_type=content_type + self.contentType=contentType self.responsible=responsible - + self.imageTag=imageTag self.weight=weight self.sortfield=sortfield coordsnew=[ string.split(x,",") for x in coords] @@ -440,32 +549,43 @@ class ECHO_collection(Folder, Persistent manage_options = Folder.manage_options+( - {'label':'Main Config','action':'ECHO_Collection_config'}, + {'label':'Main Config','action':'ECHO_collection_config'}, {'label':'Rerender Links','action':'ECHO_rerenderLinksMD'}, {'label':'Graphics','action':'ECHO_graphicEntry'}, ) + def getOverview(self): + """overview graphics""" + + return self.aq_parent.ZopeFind(self.aq_parent,obj_ids=['overview'])[0][1] + + def ECHO_graphicEntry(self): """DO nothing""" - if 'overview' in self.aq_parent.__dict__.keys(): - pt=PageTemplateFile('Products/ECHO_content/ECHO_draw.zpt').__of__(self) + overview = self.aq_parent.ZopeFind(self.aq_parent,obj_ids=['overview']) + + + if overview: + pt=PageTemplateFile('Products/ECHO_content/zpt/ECHO_draw.zpt').__of__(self) return pt() else: return "NO OVERVIEW GRAPHICS" - def ECHO_enterCoords(self,coordstr,RESPONSE=None): + def ECHO_enterCoords(self,coordstr,angle="",RESPONSE=None): """Enter coords""" coords=self.coords - coords.append(coordstr.split(",")) + temco=coordstr.split(",") + temco.append(angle) + coords.append(temco) self.coords=coords[0:] - #pt=PageTemplateFile('Products/ECHO_content/ECHO_draw.zpt').__of__(self) + if RESPONSE is not None: RESPONSE.redirect('ECHO_graphicEntry') - security.declarePublic('ECHO_Collection_config') - def ECHO_Collection_config(self): + security.declarePublic('ECHO_collection_config') + def ECHO_collection_config(self): """Main configuration""" if not hasattr(self,'weight'): @@ -473,23 +593,26 @@ class ECHO_collection(Folder, Persistent if not hasattr(self,'sortfield'): self.sortfield="weight" - #print "HI" + if not hasattr(self,'coords'): self.coords=[] - pt=PageTemplateFile('Products/ECHO_content/ChangeECHO_Collection.zpt').__of__(self) + pt=PageTemplateFile('Products/ECHO_content/zpt/ChangeECHO_collection.zpt').__of__(self) return pt() - security.declarePublic('changeECHO_Collection') + security.declarePublic('changeECHO_collection') - def changeECHO_Collection(self,context,science,practice,source_type,period,id,title,label,description,content_type,responsible,credits,weight,coords,sortfield="weight",RESPONSE=None): + def changeECHO_collection(self,title,label,description,contentType,responsible,weight,credits=None,sortfield="weight",coords=None,RESPONSE=None,imageTag=""): """Änderung der Properties""" + self.imageTag=imageTag coordsnew=[ string.split(x,",") for x in coords] - setECHO_CollectionInformation(self,context,science,practice,source_type,period,id,title,label,description,content_type,responsible,credits,weight,coordsnew) + setECHO_collectionInformation(self,title,label,description,contentType,responsible,credits,weight,coordsnew) + + self.coords=coordsnew[0:] self.sortfield=sortfield if RESPONSE is not None: @@ -497,44 +620,61 @@ class ECHO_collection(Folder, Persistent security.declarePublic('index_html') - showOverview=DTMLFile('ECHO_content_overview',globals()) - + + def showOverview(self): + """overview""" + if 'ECHO_overview.html' in self.__dict__.keys(): + return getattr(self,'ECHO_overview.html')() + pt=PageTemplateFile('Products/ECHO_content/zpt/ECHO_content_overview.zpt').__of__(self) + return pt() + def index_html(self): """standard page""" - #print self.objectIDs() if 'index.html' in self.__dict__.keys(): return getattr(self,'index.html')() elif 'overview' in self.__dict__.keys(): - print "HI" return self.showOverview() - pt=PageTemplateFile('Products/ECHO_content/ECHO_content_standard.zpt').__of__(self) - pt.content_type="text/html" + pt=PageTemplateFile('Products/ECHO_content/zpt/ECHO_content_standard.zpt').__of__(self) + pt.contentType="text/html" return pt() + def getCredits(self): + """Ausgabe der credits""" + if self.credits: + return self.credits + else: + return [] + + def getGraphicCoords(self): """Give list of coordinates""" subColTypes=['ECHO_collection','ECHO_externalLink','ECHO_resource'] ids=[] for entry in self.__dict__.keys(): object=getattr(self,entry) - #print "OB:",object - try: - print "MT:",object.meta_type if object.meta_type in subColTypes: - for coord in object.coords: - if len(coord)==4: - ids.append([string.join(coord,", "),object.getId()]) - + for coordtemp in object.coords: + if len(coordtemp)>3: + coord=coordtemp[0:4] + if hasattr(object,'label') and not object.label=="": + ids.append([string.join(coord,", "),object.getId(),object.label,object]) + elif hasattr(object,'title'): + if not object.title=="": + ids.append([string.join(coord,", "),object.getId(),object.title,object]) + else: + ids.append([string.join(coord,", "),object.getId(),object.getId(),object]) + else: + ids.append([string.join(coord,", "),object.getId(),object.getId(),object]) except: """nothing""" - #print "IDS",ids + return ids def getSubCols(self,sortfield="weight"): @@ -543,10 +683,7 @@ class ECHO_collection(Folder, Persistent ids=[] for entry in self.__dict__.keys(): object=getattr(self,entry) - #print "OB:",object - try: - #print "MT:",object.meta_type if object.meta_type in subColTypes: ids.append(object) @@ -576,25 +713,20 @@ class ECHO_collection(Folder, Persistent -def manage_AddECHO_collectionForm(self): - """Nothing yet""" - pt=PageTemplateFile('Products/ECHO_content/AddECHO_collectionForm.zpt').__of__(self) +def manage_addECHO_collectionForm(self): + """Add collection form""" + pt=PageTemplateFile('Products/ECHO_content/zpt/AddECHO_collectionForm.zpt').__of__(self) return pt() -def manage_AddECHO_collection(self,context,science,practice,source_type,period,id,title,label,description,content_type,responsible,credits,weight,sortfield,coords,RESPONSE=None): - - """nothing yet""" - scientificClassificationObj=scientificClassification(context,science,practice) - - scientificInformationObj=scientificInformation(source_type,period) +def manage_addECHO_collection(self,id,title,label,description,contentType,responsible,weight,sortfield,coords="",credits=None,RESPONSE=None,imageTag=""): + """add a echo collection""" - newObj=ECHO_collection(id,title,label,description,content_type,responsible,credits,weight,sortfield,coords) + newObj=ECHO_collection(id,title,label,description,contentType,responsible,credits,weight,sortfield,coords,imageTag) self._setObject(id,newObj) - getattr(self,id)._setObject('scientific_Information',scientificInformationObj) - getattr(self,id).scientific_Information._setObject('scientific_Classification',scientificClassificationObj) + if RESPONSE is not None: RESPONSE.redirect('manage_main') @@ -602,27 +734,150 @@ class ECHO_root(Folder,Persistent,Implic """ECHO Root Folder""" meta_type="ECHO_root" + + def contentTypeSelector_HTML(self,selected=None): + """give type selector""" + if not selected: + retStr="