Diff for /documentViewer/MpdlXmlTextServer.py between versions 1.111 and 1.115

version 1.111, 2010/10/14 09:52:21 version 1.115, 2010/10/14 10:18:35
Line 154  class MpdlXmlTextServer(SimpleItem): Line 154  class MpdlXmlTextServer(SimpleItem):
         for l in result:          for l in result:
             hrefNode= l.getAttributeNodeNS(None, u"id")              hrefNode= l.getAttributeNodeNS(None, u"id")
             href= hrefNode.nodeValue              href= hrefNode.nodeValue
             for l in href:              for i in range(0,len(href)):
                  logging.debug("getGisPlaces :%s"%(href))                  print "Element with nummer ", i, "ist", href[i]
   
               #logging.debug("getGisPlaces :%s"%(href))
                 #if href.startswith('id='):                  #if href.startswith('id='):
                     #hrefNode.nodeValue = href.replace('id=',"?")                         #hrefNode.nodeValue = href.replace('id=',"?")   
                     #logging.debug("documentViewer getGisPlaces (characterNormalization) hrefNode.nodeValue:%s"%(hrefNode.nodeValue))                      #logging.debug("documentViewer getGisPlaces (characterNormalization) hrefNode.nodeValue:%s"%(hrefNode.nodeValue))
             #logging.debug("getGisPlaces :%s"%(href))                                      logging.debug("getGisPlaces :%s"%(href))                            
         return serializeNode(href)          return href
           
     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"""

Removed from v.1.111  
changed lines
  Added in v.1.115


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>