|
|
| version 1.310.2.4, 2012/01/17 18:39:07 | version 1.311, 2011/11/03 11:05:25 |
|---|---|
| Line 9 class ECHO_externalLink contains informa | Line 9 class ECHO_externalLink contains informa |
| """ | """ |
| try: | |
| from reportlab.pdfgen import canvas | |
| from reportlab.lib.pagesizes import A4 | |
| except: | |
| print "PDF generation will not work" | |
| import urlparse | import urlparse |
| import string | import string |
| Line 45 import urllib2 | Line 49 import urllib2 |
| import cgi | import cgi |
| import smtplib | import smtplib |
| import time | import time |
| #from Ft.Xml.Domlette import NonvalidatingReader | from Ft.Xml.Domlette import NonvalidatingReader |
| #from Ft.Xml.Domlette import PrettyPrint, Print | from Ft.Xml.Domlette import PrettyPrint, Print |
| #from Ft.Xml import EMPTY_NAMESPACE | from Ft.Xml import EMPTY_NAMESPACE |
| # | |
| #import Ft.Xml.XPath | import Ft.Xml.XPath |
| import cStringIO | import cStringIO |
| import sys | import sys |
| Line 1130 class ECHO_collection(CatalogAware, Fold | Line 1134 class ECHO_collection(CatalogAware, Fold |
| if RESPONSE is not None: | if RESPONSE is not None: |
| RESPONSE.write("<p>Done</p></body></html>") | RESPONSE.write("<p>Done</p></body></html>") |
| def changeViewerTemplateSets(self,project,xslt,thumbtemplate,topbar,digiLibTemplate,digiliburlprefix,RESPONSE=None): | |
| """change the templates""" | |
| resources=self.ZopeFind(self,obj_metatypes=['ECHO_resource'],search_sub=1) | |
| for resource in resources: | |
| resource[1].changeViewerTemplateSet(project,xslt,thumbtemplate,topbar,digiLibTemplate,digiliburlprefix) | |
| if RESPONSE is not None: | |
| RESPONSE.redirect('manage_main') | |
| def setStartpageFolderForm(self): | |
| """Form for changing the startpage""" | |
| pt=zptFile(self, 'zpt/ChangeECHO_resourceStartPageFolder.zpt') | |
| pt.content_type="text/html" | |
| return pt() | |
| def setStartpageFolder(self,startpage=None,RESPONSE=None): | |
| """change the templates""" | |
| resources=self.ZopeFind(self,obj_metatypes=['ECHO_resource'],search_sub=1) | |
| for resource in resources: | |
| resource[1].setStartPage(startpage) | |
| if RESPONSE is not None: | |
| RESPONSE.redirect('manage_main') | |
| def copyTitleToInfoXMLFolder(self,RESPONSE=None): | def copyTitleToInfoXMLFolder(self,RESPONSE=None): |
| """copy title into the title field of info.xml | """copy title into the title field of info.xml |
| Line 1165 class ECHO_collection(CatalogAware, Fold | Line 1200 class ECHO_collection(CatalogAware, Fold |
| if RESPONSE is not None: | if RESPONSE is not None: |
| RESPONSE.redirect('manage_main') | RESPONSE.redirect('manage_main') |
| def reloadMetaDataFromStorageWarning(self,RESPONSE=None): | |
| """warning""" | |
| pt=zptFile(self, 'zpt/reloadMetaDataFromStorageWarning.zpt') | |
| pt.content_type="text/html" | |
| return pt() | |
| def reloadMetaDataFromStorage(self,RESPONSE=None): | |
| """copy metadata from the storage to ECHO""" | |
| return reloadMetaDataFromStorage(self,RESPONSE) | |
| def getPartnerCopyright(self,name,sonst="generic"): | def getPartnerCopyright(self,name,sonst="generic"): |
| Line 1398 class ECHO_collection(CatalogAware, Fold | Line 1443 class ECHO_collection(CatalogAware, Fold |
| {'label':'Export/Import Objects','action':'exportImportObjects_html'}, | {'label':'Export/Import Objects','action':'exportImportObjects_html'}, |
| {'label':'Graphic Coords','action':'ECHO_graphicEntry'}, | {'label':'Graphic Coords','action':'ECHO_graphicEntry'}, |
| {'label':'create resources from XML','action':'createRessourcesFromXMLForm'}, | {'label':'create resources from XML','action':'createRessourcesFromXMLForm'}, |
| {'label':'Set Startpage','action':'setStartpageFolderForm'}, | |
| {'label':'Change Viewer Templates and Image Viewer','action':'changeViewerTemplateSetsForm'}, | {'label':'Change Viewer Templates and Image Viewer','action':'changeViewerTemplateSetsForm'}, |
| {'label':'Reload Metadata','action':'reloadMetaDataFromStorageWarning'}, | |
| {'label':'ImportCollection','action':'importCollection'}, | {'label':'ImportCollection','action':'importCollection'}, |
| {'label':'Copy MD for indexing and search','action':'copySearchFields'}, | |
| {'label':'Change access rights', 'action':'changeAccessRightsCollectionForm'}, | {'label':'Change access rights', 'action':'changeAccessRightsCollectionForm'}, |
| ) | ) |
| Line 1458 class ECHO_collection(CatalogAware, Fold | Line 1506 class ECHO_collection(CatalogAware, Fold |
| def showOverview(self): | def showOverview(self): |
| """overview""" | """overview""" |
| # use ECHO_overview.html template in this instance | # ECHO_overview.html template for this instance |
| if 'ECHO_overview.html' in self: | if 'ECHO_overview.html' in self.__dict__.keys(): |
| return self['ECHO_overview.html']() | return getattr(self,'ECHO_overview.html')() |
| # use ECHO_overview_main template in path | # ECHO_overview_main template in path |
| if hasattr(self, 'ECHO_overview_main'): | if hasattr(self, 'ECHO_overview_main'): |
| return getattr(self, 'ECHO_overview_main')() | return getattr(self, 'ECHO_overview_main')() |
| # use template from Product | # template from product |
| pt=zptFile(self, 'zpt/ECHO_content_overview.zpt') | pt=zptFile(self, 'zpt/ECHO_content_overview.zpt') |
| return pt() | return pt() |
| Line 1475 class ECHO_collection(CatalogAware, Fold | Line 1523 class ECHO_collection(CatalogAware, Fold |
| def index_html(self): | def index_html(self): |
| """standard page""" | """standard page""" |
| if self.ZCacheable_isCachingEnabled(): | if self.ZCacheable_isCachingEnabled(): |
| result = self.ZCacheable_get() | result = self.ZCacheable_get() |
| if result is not None: | if result is not None: |
| # Got a cached value. | # Got a cached value. |
| return result | return result |
| # old Zope 2.9 method | if 'index.html' in self.__dict__.keys(): |
| #if 'index.html' in self.__dict__.keys(): | ret=getattr(self,'index.html')() |
| # ret=getattr(self,'index.html')() | |
| # use Zope 2.12 IContainer for child access | |
| if 'index.html' in self: | |
| # use index.html template if it exists | |
| ret = self['index.html']() | |
| elif 'overview' in self: | elif 'overview' in self.__dict__.keys(): |
| # use red-rectangle template when there's an 'overview' | |
| ret=self.showOverview() | ret=self.showOverview() |
| # use getattr for acquisition | |
| elif hasattr(self,'collection_index_template'): | elif hasattr(self,'collection_index_template'): |
| # use 'collection_index_template' in acquisition path | |
| ret=self.collection_index_template() | ret=self.collection_index_template() |
| elif hasattr(self,'main_index_template'): | elif hasattr(self,'main_index_template'): |
| # use 'main_index_template' in acquisition path | |
| ret=self.main_index_template.__of__(self)(self.main_template) | |
| ret=self.main_index_template.__of__(self)(self.main_template) | |
| else: | else: |
| # use template from Product | |
| pt=zptFile(self, 'zpt/ECHO_main_index_template_standard.zpt') | pt=zptFile(self, 'zpt/ECHO_main_index_template_standard.zpt') |
| pt.content_type="text/html" | pt.content_type="text/html" |
| ret=pt.render() | ret=pt.render() |
| Line 1532 class ECHO_collection(CatalogAware, Fold | Line 1568 class ECHO_collection(CatalogAware, Fold |
| def area_img(self): | def area_img(self): |
| """area image""" | """area image""" |
| bt = browserType(self) | bt = BrowserCheck(self) |
| if bt['isIE'] or bt['isN4']: | if bt.isIE or bt.isN4: |
| return sendFile(self, 'images/red.gif', 'image/gif') | return sendFile(self, 'images/red.gif', 'image/gif') |
| else: | else: |
| return sendFile(self, 'images/reda.png', 'image/png') | return sendFile(self, 'images/reda.png', 'image/png') |
| Line 1893 class ECHO_root(Folder,Persistent,Implic | Line 1929 class ECHO_root(Folder,Persistent,Implic |
| manage_options=Folder.manage_options+( | manage_options=Folder.manage_options+( |
| {'label':'Main Config','action':'ECHO_copyright_configForm'}, | {'label':'Main Config','action':'ECHO_copyright_configForm'}, |
| {'label':'Reload Metadata','action':'reloadMetaDataFromStorageWarning'}, | |
| {'label':'Change Weights','action':'changeWeights'}, | {'label':'Change Weights','action':'changeWeights'}, |
| {'label':'Generate from RDF','action':'generateFromRDFForm'}, | {'label':'Generate from RDF','action':'generateFromRDFForm'}, |
| {'label':'update Resource Catalog','action':'updateResourceCatalog'}, | {'label':'update Resource Catalog','action':'updateResourceCatalog'}, |
| {'label':'Copy MD for indexing and search','action':'copySearchFields'}, | |
| ) | ) |
| Line 1907 class ECHO_root(Folder,Persistent,Implic | Line 1945 class ECHO_root(Folder,Persistent,Implic |
| def getECHORoot(self): | def getECHORoot(self): |
| return self | return self |
| def getBrowserType(self): | def copySearchFields(self,RESPONSE=None): |
| """returns browserType object""" | """copys < metadatafields to the object""" |
| return browserType(self) | resources=self.ZopeFind(self,obj_metatypes=['ECHO_resource'],search_sub=1) |
| for resource in resources: | |
| resource[1].copySearchFields() | |
| if RESPONSE is not None: | |
| RESPONSE.redirect('manage_main') | |
| def mod_re_sub(self,pattern,replace,string): | def mod_re_sub(self,pattern,replace,string): |
| """re.sub aus mod re zur Verfuegung stellen""" | """re.sub aus mod re zur Verfuegung stellen""" |
| Line 2155 class ECHO_root(Folder,Persistent,Implic | Line 2200 class ECHO_root(Folder,Persistent,Implic |
| return pt() | return pt() |
| def reloadMetaDataFromStorageWarning(self,RESPONSE=None): | |
| """warning""" | |
| pt=zptFile(self, 'zpt/reloadMetaDataFromStorageWarning.zpt') | |
| pt.content_type="text/html" | |
| return pt() | |
| def reloadMetaDataFromStorage(self,RESPONSE=None): | |
| """reload MD from Storage""" | |
| return reloadMetaDataFromStorage(self,RESPONSE) | |
| def getRDF(self,urn=None): | def getRDF(self,urn=None): |
| """rdf of the collection""" | """rdf of the collection""" |
| Line 3203 class ECHO_main(ECHO_root,ECHO_navigatio | Line 3259 class ECHO_main(ECHO_root,ECHO_navigatio |
| {'label':'Main Config','action':'ECHO_navigationConfigForm'}, | {'label':'Main Config','action':'ECHO_navigationConfigForm'}, |
| {'label':'Cache','action':'ECHO_cacheManageForm'}, | {'label':'Cache','action':'ECHO_cacheManageForm'}, |
| {'label':'Main Config','action':'ECHO_copyright_configForm'}, | {'label':'Main Config','action':'ECHO_copyright_configForm'}, |
| {'label':'Reload Metadata','action':'reloadMetaDataFromStorageWarning'}, | |
| {'label':'Change Weights','action':'changeWeights'}, | {'label':'Change Weights','action':'changeWeights'}, |
| {'label':'Generate from RDF','action':'generateFromRDFForm'}, | {'label':'Generate from RDF','action':'generateFromRDFForm'}, |
| {'label':'update Resource Catalog','action':'updateResourceCatalog'}, | {'label':'update Resource Catalog','action':'updateResourceCatalog'}, |