|
|
| version 1.63, 2010/10/08 12:18:14 | version 1.168, 2010/10/18 10:01:16 |
|---|---|
| Line 42 class MpdlXmlTextServer(SimpleItem): | Line 42 class MpdlXmlTextServer(SimpleItem): |
| """get search list""" | """get search list""" |
| docpath = docinfo['textURLPath'] | docpath = docinfo['textURLPath'] |
| url = docinfo['url'] | url = docinfo['url'] |
| logging.debug("documentViewer (gettoc) docpath: %s"%(docpath)) | |
| logging.debug("documentViewer (gettoc) url: %s"%(url)) | |
| pagesize = pageinfo['queryPageSize'] | pagesize = pageinfo['queryPageSize'] |
| pn = pageinfo['searchPN'] | pn = pageinfo['searchPN'] |
| sn = pageinfo['sn'] | sn = pageinfo['sn'] |
| Line 140 class MpdlXmlTextServer(SimpleItem): | Line 138 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' |
| docpath = docinfo['textURLPath'] | |
| url = docinfo['url'] | |
| selfurl = self.absolute_url() | |
| pn = pageinfo['current'] | |
| hrefList=[] | |
| myList= "" | |
| text=self.getServerData("xpath.xql", "document=%s&xpath=%s&pn=%s"%(docinfo['textURLPath'],xpath,pn)) | |
| dom = Parse(text) | |
| result = dom.xpath("//result/resultPage/place") | |
| for l in result: | |
| hrefNode= l.getAttributeNodeNS(None, u"id") | |
| href= hrefNode.nodeValue | |
| hrefList.append(href) | |
| myList = ",".join(hrefList) | |
| logging.debug("getGisPlaces :%s"%(myList)) | |
| return myList | |
| def getAllGisPlaces (self, docinfo=None, pageinfo=None): | |
| """Show all Gis Places of whole Book """ | |
| xpath ='//echo:place' | |
| docpath =docinfo['textURLPath'] | |
| url = docinfo['url'] | |
| selfurl =self.absolute_url() | |
| pn =pageinfo['current'] | |
| hrefList=[] | |
| myList="" | |
| text=self.getServerData("xpath.xql", "document=%s&xpath=%s"%(docinfo['textURLPath'], xpath)) | text=self.getServerData("xpath.xql", "document=%s&xpath=%s"%(docinfo['textURLPath'], xpath)) |
| pagedom = Parse(text) | dom =Parse(text) |
| result =pagedom.xpath("//result/resultPage/place") | result = dom.xpath("//result/resultPage/place") |
| docinfo['place']=getTextFromNode(result[0]) | for l in result: |
| hrefNode = l.getAttributeNodeNS(None, u"id") | |
| href= hrefNode.nodeValue | |
| hrefList.append(href) | |
| myList = ",".join(hrefList) | |
| logging.debug("getALLGisPlaces :%s"%(myList)) | |
| return myList | |
| def getOrigPages (self, docinfo=None): | |
| """Show original page """ | |
| #docpath = docinfo['textURLPath'] | |
| #url = docinfo['url'] | |
| selfurl = self.absolute_url() | |
| pn =pageinfo['current'] | |
| viewMode= pageinfo['viewMode'] | |
| text = self.getServerData("page-fragment.xql","document=%s&mode=%s&pn=%s"%(docinfo['textURLPath'], 'text', pn)) | |
| dom =Parse(text) | |
| pagedivs = dom.xpath("//div[@class='pageNumberOrig']") | |
| if len(pagedivs)>0: | |
| docinfo['originalPage'] = getTextFromNode(pagedivs[0]) | |
| #return docinfo['originalPage'] | |
| #return originalPage | |
| return docinfo | return docinfo |
| 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=""): |
| Line 154 class MpdlXmlTextServer(SimpleItem): | Line 200 class MpdlXmlTextServer(SimpleItem): |
| 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 250 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) |