|
|
| version 1.63, 2010/10/08 12:18:14 | version 1.93, 2010/10/13 15:40:57 |
|---|---|
| Line 140 class MpdlXmlTextServer(SimpleItem): | Line 140 class MpdlXmlTextServer(SimpleItem): |
| docinfo['numPages']=int(getTextFromNode(result[0])) | docinfo['numPages']=int(getTextFromNode(result[0])) |
| return docinfo | return docinfo |
| def getGisPlases(self, docinfo): | def getGisPlaces(self, docinfo=None, pageinfo=None): |
| """ Show all Gis Places of whole Page""" | """ Show all Gis Places of whole Page""" |
| xpath='//place' | #xpath='//place' |
| text=self.getServerData("xpath.xql", "document=%s&xpath=%s"%(docinfo['textURLPath'], xpath)) | docpath = docinfo['textURLPath'] |
| url = docinfo['url'] | |
| selfurl = self.absolute_url() | |
| pn = pageinfo['current'] | |
| text=self.getServerData("xpath.xql", "document=%s&xpath=%s&pn=%s"%(docinfo['textURLPath'],'//place',pn)) | |
| logging.debug("documentViewer getGisPlaces (text) text:%s"%(text)) | |
| pagedom = Parse(text) | pagedom = Parse(text) |
| result =pagedom.xpath("//result/resultPage/place") | result =pagedom.xpath("//result/resultPage/*") |
| docinfo['place']=getTextFromNode(result[0]) | for l in result: |
| return docinfo | hrefNode= l.getAttributeNodeNS(None, u"id") |
| logging.debug("documentViewer getGisPlaces (characterNormalization) l:%s"%(l)) | |
| if hrefNode: | |
| href= hrefNode.nodeValue | |
| if href.startswith('id='): | |
| hrefNode.nodeValue = href.replace('id=',"?") | |
| return serializeNode(pagenode) | |
| def getTextPage(self, mode="text", pn=1, docinfo=None, pageinfo=None, highlightQuery=None,sn=None, viewMode=None, tocMode=None, tocPN=None, characterNormalization=""): | def getTextPage(self, mode="text", pn=1, docinfo=None, pageinfo=None, highlightQuery=None,sn=None, viewMode=None, tocMode=None, tocPN=None, characterNormalization=""): |
| """returns single page from fulltext""" | """returns single page from fulltext""" |
| docpath = docinfo['textURLPath'] | docpath = docinfo['textURLPath'] |
| path = docinfo['textURLPath'] | path = docinfo['textURLPath'] |
| url = docinfo['url'] | url = docinfo['url'] |
| name = docinfo['name'] | |
| viewMode= pageinfo['viewMode'] | viewMode= pageinfo['viewMode'] |
| tocMode = pageinfo['tocMode'] | tocMode = pageinfo['tocMode'] |
| characterNormalization=pageinfo['characterNormalization'] | characterNormalization=pageinfo['characterNormalization'] |
| Line 203 class MpdlXmlTextServer(SimpleItem): | Line 216 class MpdlXmlTextServer(SimpleItem): |
| if hrefNode: | if hrefNode: |
| href=hrefNode.nodeValue | href=hrefNode.nodeValue |
| if href.startswith('http://chinagis.mpiwg-berlin.mpg.de'): | if href.startswith('http://chinagis.mpiwg-berlin.mpg.de'): |
| hrefNode.nodeValue =href.replace('chinagis_REST/REST/db/chgis/mpdl','chinagis/REST/db/mpdl/url=%s'%url) | hrefNode.nodeValue =href.replace('chinagis_REST/REST/db/chgis/mpdl','chinagis/REST/db/mpdl/%s'%name) |
| #hrefNode.nodeValue=href.replace('chgis','') | |
| l.setAttributeNS(None, 'target', '_blank') | l.setAttributeNS(None, 'target', '_blank') |
| return serializeNode(pagenode) | return serializeNode(pagenode) |