Annotation of documentViewer/documentViewer.py, revision 1.20

1.18      dwinter     1: 
                      2: 
1.1       dwinter     3: from OFS.Folder import Folder
                      4: from Products.PageTemplates.ZopePageTemplate import ZopePageTemplate
                      5: from Products.PageTemplates.PageTemplateFile import PageTemplateFile
                      6: from AccessControl import ClassSecurityInfo
1.8       casties     7: from AccessControl import getSecurityManager
1.1       dwinter     8: from Globals import package_home
                      9: 
                     10: from Ft.Xml.Domlette import NonvalidatingReader
                     11: from Ft.Xml.Domlette import PrettyPrint, Print
1.11      casties    12: from Ft.Xml import EMPTY_NAMESPACE, Parse
1.1       dwinter    13: 
                     14: import Ft.Xml.XPath
                     15: 
                     16: import os.path
1.7       casties    17: import sys
1.1       dwinter    18: import cgi
                     19: import urllib
1.20    ! dwinter    20: import logging
1.3       casties    21: import zLOG
1.18      dwinter    22: import urlparse 
1.1       dwinter    23: 
1.4       casties    24: def getInt(number, default=0):
                     25:     """returns always an int (0 in case of problems)"""
                     26:     try:
                     27:         return int(number)
                     28:     except:
                     29:         return default
                     30: 
1.1       dwinter    31: def getTextFromNode(nodename):
1.18      dwinter    32:     """get the cdata content of a node"""
1.8       casties    33:     if nodename is None:
                     34:         return ""
1.1       dwinter    35:     nodelist=nodename.childNodes
                     36:     rc = ""
                     37:     for node in nodelist:
                     38:         if node.nodeType == node.TEXT_NODE:
                     39:            rc = rc + node.data
                     40:     return rc
                     41: 
1.9       casties    42:         
                     43: def getParentDir(path):
                     44:     """returns pathname shortened by one"""
                     45:     return '/'.join(path.split('/')[0:-1])
                     46:         
                     47: 
1.1       dwinter    48: import socket
                     49: 
1.8       casties    50: def urlopen(url,timeout=2):
1.1       dwinter    51:         """urlopen mit timeout"""
1.8       casties    52:         socket.setdefaulttimeout(timeout)
1.1       dwinter    53:         ret=urllib.urlopen(url)
                     54:         socket.setdefaulttimeout(5)
                     55:         return ret
                     56: 
                     57: 
1.3       casties    58: ##
                     59: ## documentViewer class
                     60: ##
                     61: class documentViewer(Folder):
1.1       dwinter    62:     """document viewer"""
1.20    ! dwinter    63:     #textViewerUrl="http://127.0.0.1:8080/HFQP/testXSLT/getPage?"
1.18      dwinter    64:     
1.1       dwinter    65:     meta_type="Document viewer"
                     66:     
                     67:     security=ClassSecurityInfo()
1.3       casties    68:     manage_options=Folder.manage_options+(
1.1       dwinter    69:         {'label':'main config','action':'changeDocumentViewerForm'},
                     70:         )
                     71: 
1.3       casties    72:     # templates and forms
                     73:     viewer_main = PageTemplateFile('zpt/viewer_main', globals())
                     74:     thumbs_main = PageTemplateFile('zpt/thumbs_main', globals())
                     75:     image_main = PageTemplateFile('zpt/image_main', globals())
                     76:     head_main = PageTemplateFile('zpt/head_main', globals())
                     77:     docuviewer_css = PageTemplateFile('css/docuviewer.css', globals())
                     78: 
                     79:     security.declareProtected('View management screens','changeDocumentViewerForm')    
                     80:     changeDocumentViewerForm = PageTemplateFile('zpt/changeDocumentViewer', globals())
                     81: 
1.1       dwinter    82:     
1.18      dwinter    83:     def __init__(self,id,imageViewerUrl,textViewerUrl=None,title="",digilibBaseUrl=None,thumbcols=2,thumbrows=10,authgroups="mpiwg"):
1.1       dwinter    84:         """init document viewer"""
                     85:         self.id=id
                     86:         self.title=title
                     87:         self.imageViewerUrl=imageViewerUrl
1.18      dwinter    88:         self.textViewerUrl=textViewerUrl
                     89:         
1.4       casties    90:         if not digilibBaseUrl:
1.3       casties    91:             self.digilibBaseUrl = self.findDigilibUrl()
1.4       casties    92:         else:
                     93:             self.digilibBaseUrl = digilibBaseUrl
                     94:         self.thumbcols = thumbcols
                     95:         self.thumbrows = thumbrows
1.8       casties    96:         # authgroups is list of authorized groups (delimited by ,)
                     97:         self.authgroups = [s.strip().lower() for s in authgroups.split(',')]
1.3       casties    98:         # add template folder so we can always use template.something
                     99:         self.manage_addFolder('template')
                    100: 
                    101: 
                    102:     security.declareProtected('View','index_html')
1.18      dwinter   103:     def index_html(self,mode,url,viewMode="images",start=None,pn=1):
1.3       casties   104:         '''
                    105:         view it
                    106:         @param mode: defines which type of document is behind url
                    107:         @param url: url which contains display information
1.18      dwinter   108:         @param viewMode: if images display images, if text display text, default is images
                    109:         
1.3       casties   110:         '''
                    111:         
                    112:         zLOG.LOG("documentViewer (index)", zLOG.INFO, "mode: %s url:%s start:%s pn:%s"%(mode,url,start,pn))
1.1       dwinter   113:         
1.3       casties   114:         if not hasattr(self, 'template'):
                    115:             # create template folder if it doesn't exist
                    116:             self.manage_addFolder('template')
                    117:             
                    118:         if not self.digilibBaseUrl:
                    119:             self.digilibBaseUrl = self.findDigilibUrl() or "http://nausikaa.mpiwg-berlin.mpg.de/digitallibrary"
                    120:             
1.4       casties   121:         docinfo = self.getDocinfo(mode=mode,url=url)
                    122:         pageinfo = self.getPageinfo(start=start,current=pn,docinfo=docinfo)
1.3       casties   123:         pt = getattr(self.template, 'viewer_main')
1.18      dwinter   124:         return pt(docinfo=docinfo,pageinfo=pageinfo,viewMode=viewMode)
1.1       dwinter   125:   
                    126:   
1.4       casties   127:     def getLink(self,param=None,val=None):
                    128:         """link to documentviewer with parameter param set to val"""
1.9       casties   129:         params=self.REQUEST.form.copy()
1.4       casties   130:         if param is not None:
1.7       casties   131:             if val is None:
                    132:                 if params.has_key(param):
                    133:                     del params[param]
1.4       casties   134:             else:
1.9       casties   135:                 params[param] = str(val)
1.7       casties   136:                 
1.9       casties   137:         # quote values and assemble into query string
                    138:         ps = "&".join(["%s=%s"%(k,urllib.quote(v)) for (k, v) in params.items()])
                    139:         url=self.REQUEST['URL1']+"?"+ps
1.4       casties   140:         return url
                    141: 
                    142:     
1.3       casties   143:     def getStyle(self, idx, selected, style=""):
1.4       casties   144:         """returns a string with the given style and append 'sel' if path == selected."""
1.3       casties   145:         #zLOG.LOG("documentViewer (getstyle)", zLOG.INFO, "idx: %s selected: %s style: %s"%(idx,selected,style))
                    146:         if idx == selected:
                    147:             return style + 'sel'
                    148:         else:
1.9       casties   149:             return style
                    150:         
1.2       dwinter   151:         
1.9       casties   152:     def isAccessible(self, docinfo):
1.8       casties   153:         """returns if access to the resource is granted"""
                    154:         access = docinfo.get('accessType', None)
1.14      casties   155:         zLOG.LOG("documentViewer (accessOK)", zLOG.INFO, "access type %s"%access)
1.17      casties   156:         if access is not None and access == 'free':
1.15      casties   157:             zLOG.LOG("documentViewer (accessOK)", zLOG.INFO, "access is free")
1.8       casties   158:             return True
1.17      casties   159:         elif access is None or access in self.authgroups:
1.9       casties   160:             # only local access -- only logged in users
                    161:             user = getSecurityManager().getUser()
                    162:             if user is not None:
                    163:                 #print "user: ", user
                    164:                 return (user.getUserName() != "Anonymous User")
                    165:             else:
                    166:                 return False
1.8       casties   167:         
1.9       casties   168:         zLOG.LOG("documentViewer (accessOK)", zLOG.INFO, "unknown access type %s"%access)
1.8       casties   169:         return False
1.9       casties   170:     
1.8       casties   171:                 
1.7       casties   172:     def getDirinfoFromDigilib(self,path,docinfo=None):
1.6       casties   173:         """gibt param von dlInfo aus"""
1.13      casties   174:         num_retries = 3
1.7       casties   175:         if docinfo is None:
                    176:             docinfo = {}
                    177:             
1.13      casties   178:         infoUrl=self.digilibBaseUrl+"/dirInfo-xml.jsp?mo=dir&fn="+path
1.6       casties   179:     
1.13      casties   180:         zLOG.LOG("documentViewer (getparamfromdigilib)", zLOG.INFO, "dirInfo from %s"%(infoUrl))
1.6       casties   181:         
1.13      casties   182:         for cnt in range(num_retries):
1.9       casties   183:             try:
1.13      casties   184:                 # dom = NonvalidatingReader.parseUri(imageUrl)
                    185:                 txt=urllib.urlopen(infoUrl).read()
                    186:                 dom = Parse(txt)
1.9       casties   187:                 break
                    188:             except:
1.13      casties   189:                 zLOG.LOG("documentViewer (getdirinfofromdigilib)", zLOG.ERROR, "error reading %s (try %d)"%(infoUrl,cnt))
1.9       casties   190:         else:
1.13      casties   191:             raise IOError("Unable to get dir-info from %s"%(infoUrl))
1.6       casties   192:         
1.10      casties   193:         sizes=dom.xpath("//dir/size")
                    194:         zLOG.LOG("documentViewer (getparamfromdigilib)", zLOG.INFO, "dirInfo:size"%sizes)
1.6       casties   195:         
1.10      casties   196:         if sizes:
                    197:             docinfo['numPages'] = int(getTextFromNode(sizes[0]))
1.7       casties   198:         else:
                    199:             docinfo['numPages'] = 0
                    200:                         
                    201:         return docinfo
1.8       casties   202:     
1.6       casties   203:             
1.9       casties   204:     def getIndexMeta(self, url):
                    205:         """returns dom of index.meta document at url"""
1.12      casties   206:         num_retries = 3
1.9       casties   207:         dom = None
1.12      casties   208:         metaUrl = None
1.9       casties   209:         if url.startswith("http://"):
                    210:             # real URL
1.12      casties   211:             metaUrl = url
1.9       casties   212:         else:
                    213:             # online path
                    214:             server=self.digilibBaseUrl+"/servlet/Texter?fn="
1.13      casties   215:             metaUrl=server+url.replace("/mpiwg/online","")
1.9       casties   216:             if not metaUrl.endswith("index.meta"):
                    217:                 metaUrl += "/index.meta"
1.18      dwinter   218:         print metaUrl
1.13      casties   219:         for cnt in range(num_retries):
1.9       casties   220:             try:
1.12      casties   221:                 # patch dirk encoding fehler treten dann nicht mehr auf
1.11      casties   222:                 # dom = NonvalidatingReader.parseUri(metaUrl)
1.12      casties   223:                 txt=urllib.urlopen(metaUrl).read()
                    224:                 dom = Parse(txt)
1.13      casties   225:                 break
1.9       casties   226:             except:
1.12      casties   227:                 zLOG.LOG("ERROR documentViewer (getIndexMata)", zLOG.INFO,"%s (%s)"%sys.exc_info()[0:2])
                    228:                 
                    229:         if dom is None:
                    230:             raise IOError("Unable to read index meta from %s"%(url))
1.9       casties   231:                  
                    232:         return dom
1.20    ! dwinter   233:     
        !           234:     def getPresentationInfoXML(self, url):
        !           235:         """returns dom of info.xml document at url"""
        !           236:         num_retries = 3
        !           237:         dom = None
        !           238:         metaUrl = None
        !           239:         if url.startswith("http://"):
        !           240:             # real URL
        !           241:             metaUrl = url
        !           242:         else:
        !           243:             # online path
        !           244:             server=self.digilibBaseUrl+"/servlet/Texter?fn="
        !           245:             metaUrl=server+url.replace("/mpiwg/online","")
        !           246:            
        !           247:         
        !           248:         for cnt in range(num_retries):
        !           249:             try:
        !           250:                 # patch dirk encoding fehler treten dann nicht mehr auf
        !           251:                 # dom = NonvalidatingReader.parseUri(metaUrl)
        !           252:                 txt=urllib.urlopen(metaUrl).read()
        !           253:                 dom = Parse(txt)
        !           254:                 break
        !           255:             except:
        !           256:                 zLOG.LOG("ERROR documentViewer (getPresentationInfoXML)", zLOG.INFO,"%s (%s)"%sys.exc_info()[0:2])
        !           257:                 
        !           258:         if dom is None:
        !           259:             raise IOError("Unable to read infoXMLfrom %s"%(url))
        !           260:                  
        !           261:         return dom
1.9       casties   262:                         
                    263:         
1.8       casties   264:     def getAuthinfoFromIndexMeta(self,path,docinfo=None,dom=None):
1.9       casties   265:         """gets authorization info from the index.meta file at path or given by dom"""
1.10      casties   266:         zLOG.LOG("documentViewer (getauthinfofromindexmeta)", zLOG.INFO,"path: %s"%(path))
1.8       casties   267:         
                    268:         access = None
                    269:         
                    270:         if docinfo is None:
                    271:             docinfo = {}
                    272:             
                    273:         if dom is None:
1.9       casties   274:             dom = self.getIndexMeta(getParentDir(path))
1.18      dwinter   275:        
1.8       casties   276:         acctype = dom.xpath("//access-conditions/access/@type")
                    277:         if acctype and (len(acctype)>0):
                    278:             access=acctype[0].value
1.9       casties   279:             if access in ['group', 'institution']:
1.8       casties   280:                 access = getTextFromNode(dom.xpath("//access-conditions/access/name")[0]).lower()
                    281:             
                    282:         docinfo['accessType'] = access
                    283:         return docinfo
1.6       casties   284:     
1.8       casties   285:         
1.3       casties   286:     def getBibinfoFromIndexMeta(self,path,docinfo=None,dom=None):
1.9       casties   287:         """gets bibliographical info from the index.meta file at path or given by dom"""
1.3       casties   288:         zLOG.LOG("documentViewer (getbibinfofromindexmeta)", zLOG.INFO,"path: %s"%(path))
1.2       dwinter   289:         
1.3       casties   290:         if docinfo is None:
                    291:             docinfo = {}
                    292:             
                    293:         if dom is None:
1.9       casties   294:             dom = self.getIndexMeta(getParentDir(path))
                    295:             
1.4       casties   296:         metaData=self.metadata.main.meta.bib
                    297:         bibtype=dom.xpath("//bib/@type")
                    298:         if bibtype and (len(bibtype)>0):
                    299:             bibtype=bibtype[0].value
1.2       dwinter   300:         else:
1.4       casties   301:             bibtype="generic"
                    302:         bibtype=bibtype.replace("-"," ") # wrong typesiin index meta "-" instead of " " (not wrong! ROC)
                    303:         bibmap=metaData.generateMappingForType(bibtype)
1.9       casties   304:         #print "bibmap: ", bibmap, " for: ", bibtype
1.8       casties   305:         # if there is no mapping bibmap is empty (mapping sometimes has empty fields)
1.7       casties   306:         if len(bibmap) > 0 and len(bibmap['author'][0]) > 0:
1.4       casties   307:             docinfo['author']=getTextFromNode(dom.xpath("//bib/%s"%bibmap['author'][0])[0])
                    308:             docinfo['title']=getTextFromNode(dom.xpath("//bib/%s"%bibmap['title'][0])[0])
                    309:             docinfo['year']=getTextFromNode(dom.xpath("//bib/%s"%bibmap['year'][0])[0])
1.3       casties   310:         
                    311:         return docinfo
                    312: 
                    313:         
1.8       casties   314:     def getDocinfoFromTextTool(self,url,dom=None,docinfo=None):
1.3       casties   315:        """parse texttool tag in index meta"""
                    316:        zLOG.LOG("documentViewer (getdocinfofromtexttool)", zLOG.INFO,"url: %s"%(url))
                    317:        if docinfo is None:
                    318:            docinfo = {}
                    319:            
1.8       casties   320:        if dom is None:
1.9       casties   321:            dom = self.getIndexMeta(url)
1.8       casties   322:        
1.16      casties   323:        archivePath = None
                    324:        archiveName = None
                    325: 
1.8       casties   326:        archiveNames=dom.xpath("//resource/name")
                    327:        if archiveNames and (len(archiveNames)>0):
                    328:            archiveName=getTextFromNode(archiveNames[0])
1.16      casties   329:        else:
                    330:            zLOG.LOG("documentViewer (getdocinfofromtexttool)", zLOG.WARNING,"resource/name missing in: %s"%(url))
1.3       casties   331:        
                    332:        archivePaths=dom.xpath("//resource/archive-path")
                    333:        if archivePaths and (len(archivePaths)>0):
                    334:            archivePath=getTextFromNode(archivePaths[0])
1.8       casties   335:            # clean up archive path
                    336:            if archivePath[0] != '/':
                    337:                archivePath = '/' + archivePath
1.16      casties   338:            if archiveName and (not archivePath.endswith(archiveName)):
1.8       casties   339:                archivePath += "/" + archiveName
1.3       casties   340:        else:
1.16      casties   341:            # try to get archive-path from url
                    342:            zLOG.LOG("documentViewer (getdocinfofromtexttool)", zLOG.WARNING,"resource/archive-path missing in: %s"%(url))
                    343:            if (not url.startswith('http')):
                    344:                archivePath = url.replace('index.meta', '')
                    345:                
                    346:        if archivePath is None:
                    347:            # we balk without archive-path
                    348:            raise IOError("Missing archive-path (for text-tool) in %s"%(url))
1.3       casties   349:        
1.9       casties   350:        imageDirs=dom.xpath("//texttool/image")
                    351:        if imageDirs and (len(imageDirs)>0):
                    352:            imageDir=getTextFromNode(imageDirs[0])
1.3       casties   353:        else:
1.10      casties   354:            # we balk with no image tag
                    355:            raise IOError("No text-tool info in %s"%(url))
1.3       casties   356:            
1.9       casties   357:        if imageDir and archivePath:
                    358:            #print "image: ", imageDir, " archivepath: ", archivePath
                    359:            imageDir=os.path.join(archivePath,imageDir)
                    360:            imageDir=imageDir.replace("/mpiwg/online",'')
                    361:            docinfo=self.getDirinfoFromDigilib(imageDir,docinfo=docinfo)
                    362:            docinfo['imagePath'] = imageDir
                    363:            docinfo['imageURL'] = self.digilibBaseUrl+"/servlet/Scaler?fn="+imageDir
1.3       casties   364:            
                    365:        viewerUrls=dom.xpath("//texttool/digiliburlprefix")
                    366:        if viewerUrls and (len(viewerUrls)>0):
                    367:            viewerUrl=getTextFromNode(viewerUrls[0])
1.7       casties   368:            docinfo['viewerURL'] = viewerUrl
1.3       casties   369:                   
                    370:        textUrls=dom.xpath("//texttool/text")
                    371:        if textUrls and (len(textUrls)>0):
                    372:            textUrl=getTextFromNode(textUrls[0])
1.19      dwinter   373:            if urlparse.urlparse(textUrl)[0]=="": #keine url
                    374:                textUrl=os.path.join(archivePath,textUrl) 
                    375: 
1.7       casties   376:            docinfo['textURL'] = textUrl
1.3       casties   377:                      
1.20    ! dwinter   378:    
        !           379:        presentationUrls=dom.xpath("//texttool/presentation")
        !           380:        if presentationUrls and (len(presentationUrls)>0):
        !           381:             # presentation url ergiebt sich ersetzen von index.meta in der url der fŸr die Metadaten
        !           382:             # durch den relativen Pfad auf die presentation infos
        !           383:            presentationUrl=url.replace('index.meta',getTextFromNode(presentationUrls[0]))
        !           384:            
        !           385:            docinfo = self.getBibinfoFromTextToolPresentation(presentationUrl,docinfo=docinfo,dom=dom)
        !           386:        else:
        !           387:            docinfo = self.getBibinfoFromIndexMeta(url,docinfo=docinfo,dom=dom)   
1.8       casties   388:        docinfo = self.getAuthinfoFromIndexMeta(url,docinfo=docinfo,dom=dom)
1.3       casties   389:        return docinfo
                    390:    
1.20    ! dwinter   391:    
        !           392:     def getBibinfoFromTextToolPresentation(self,url,docinfo=None,dom=None):
        !           393:         """gets the bibliographical information from the preseantion entry in texttools
        !           394:         """
        !           395:         dom=self.getPresentationInfoXML(url)
        !           396:         docinfo['author']=getTextFromNode(dom.xpath("//author")[0])
        !           397:         docinfo['title']=getTextFromNode(dom.xpath("//title")[0])
        !           398:         docinfo['year']=getTextFromNode(dom.xpath("//date")[0])
        !           399:         return docinfo
        !           400:     
1.3       casties   401:     def getDocinfoFromImagePath(self,path,docinfo=None):
                    402:         """path ist the path to the images it assumes that the index.meta file is one level higher."""
                    403:         zLOG.LOG("documentViewer (getdocinfofromimagepath)", zLOG.INFO,"path: %s"%(path))
                    404:         if docinfo is None:
                    405:             docinfo = {}
1.6       casties   406:         path=path.replace("/mpiwg/online","")
1.3       casties   407:         docinfo['imagePath'] = path
1.7       casties   408:         docinfo=self.getDirinfoFromDigilib(path,docinfo=docinfo)
                    409:         imageUrl=self.digilibBaseUrl+"/servlet/Scaler?fn="+path
1.3       casties   410:         docinfo['imageURL'] = imageUrl
                    411:         
                    412:         docinfo = self.getBibinfoFromIndexMeta(path,docinfo=docinfo)
1.8       casties   413:         docinfo = self.getAuthinfoFromIndexMeta(path,docinfo=docinfo)
1.3       casties   414:         return docinfo
                    415:     
1.2       dwinter   416:     
1.3       casties   417:     def getDocinfo(self, mode, url):
                    418:         """returns docinfo depending on mode"""
                    419:         zLOG.LOG("documentViewer (getdocinfo)", zLOG.INFO,"mode: %s, url: %s"%(mode,url))
                    420:         # look for cached docinfo in session
1.20    ! dwinter   421:         # XXXX Sesion abgeschaltet
        !           422:         if self.REQUEST.SESSION.has_key('docinfo_XX'):
1.3       casties   423:             docinfo = self.REQUEST.SESSION['docinfo']
                    424:             # check if its still current
                    425:             if docinfo is not None and docinfo.get('mode') == mode and docinfo.get('url') == url:
                    426:                 zLOG.LOG("documentViewer (getdocinfo)", zLOG.INFO,"docinfo in session: %s"%docinfo)
                    427:                 return docinfo
                    428:         # new docinfo
                    429:         docinfo = {'mode': mode, 'url': url}
                    430:         if mode=="texttool": #index.meta with texttool information
                    431:             docinfo = self.getDocinfoFromTextTool(url, docinfo=docinfo)
                    432:         elif mode=="imagepath":
                    433:             docinfo = self.getDocinfoFromImagePath(url, docinfo=docinfo)
                    434:         else:
                    435:             zLOG.LOG("documentViewer (getdocinfo)", zLOG.ERROR,"unknown mode!")
1.10      casties   436:             raise ValueError("Unknown mode %s"%(mode))
                    437:                         
1.3       casties   438:         zLOG.LOG("documentViewer (getdocinfo)", zLOG.INFO,"docinfo: %s"%docinfo)
                    439:         self.REQUEST.SESSION['docinfo'] = docinfo
                    440:         return docinfo
1.2       dwinter   441:         
                    442:         
1.4       casties   443:     def getPageinfo(self, current, start=None, rows=None, cols=None, docinfo=None):
1.3       casties   444:         """returns pageinfo with the given parameters"""
                    445:         pageinfo = {}
1.4       casties   446:         current = getInt(current)
                    447:         pageinfo['current'] = current
                    448:         rows = int(rows or self.thumbrows)
                    449:         pageinfo['rows'] = rows
                    450:         cols = int(cols or self.thumbcols)
                    451:         pageinfo['cols'] = cols
                    452:         grpsize = cols * rows
                    453:         pageinfo['groupsize'] = grpsize
                    454:         start = getInt(start, default=(int(current / grpsize) * grpsize +1))
1.3       casties   455:         pageinfo['start'] = start
1.4       casties   456:         pageinfo['end'] = start + grpsize
                    457:         if docinfo is not None:
                    458:             np = int(docinfo['numPages'])
                    459:             pageinfo['end'] = min(pageinfo['end'], np)
                    460:             pageinfo['numgroups'] = int(np / grpsize)
                    461:             if np % grpsize > 0:
                    462:                 pageinfo['numgroups'] += 1
                    463:                 
1.3       casties   464:         return pageinfo
                    465:                 
1.1       dwinter   466:     def text(self,mode,url,pn):
                    467:         """give text"""
                    468:         if mode=="texttool": #index.meta with texttool information
                    469:             (viewerUrl,imagepath,textpath)=parseUrlTextTool(url)
                    470:         
1.9       casties   471:         #print textpath
1.1       dwinter   472:         try:
                    473:             dom = NonvalidatingReader.parseUri(textpath)
                    474:         except:
                    475:             return None
                    476:     
                    477:         list=[]
                    478:         nodes=dom.xpath("//pb")
                    479: 
                    480:         node=nodes[int(pn)-1]
                    481:         
                    482:         p=node
                    483:         
                    484:         while p.tagName!="p":
                    485:             p=p.parentNode
                    486:         
                    487:         
                    488:         endNode=nodes[int(pn)]
                    489:         
                    490:         
                    491:         e=endNode
                    492:         
                    493:         while e.tagName!="p":
                    494:             e=e.parentNode
                    495:         
                    496:         
                    497:         next=node.parentNode
                    498:         
                    499:         #sammle s
                    500:         while next and (next!=endNode.parentNode):
                    501:             list.append(next)    
                    502:             next=next.nextSibling    
                    503:         list.append(endNode.parentNode)
                    504:         
                    505:         if p==e:# beide im selben paragraphen
1.2       dwinter   506:             pass
                    507: #    else:
                    508: #            next=p
                    509: #            while next!=e:
                    510: #                print next,e
                    511: #                list.append(next)
                    512: #                next=next.nextSibling
                    513: #            
                    514: #        for x in list:
                    515: #            PrettyPrint(x)
                    516: #
                    517: #        return list
1.3       casties   518: #
                    519: 
                    520:     def findDigilibUrl(self):
                    521:         """try to get the digilib URL from zogilib"""
                    522:         url = self.imageViewerUrl[:-1] + "/getScalerUrl"
1.20    ! dwinter   523:         #print urlparse.urlparse(url)[0]
        !           524:         #print urlparse.urljoin(self.absolute_url(),url)
        !           525:         logging.info("finddigiliburl: %s"%urlparse.urlparse(url)[0])
        !           526:         logging.info("finddigiliburl: %s"%urlparse.urljoin(self.absolute_url(),url))
        !           527:         
1.3       casties   528:         try:
1.18      dwinter   529:             if urlparse.urlparse(url)[0]=='': #relative path
                    530:                 url=urlparse.urljoin(self.absolute_url()+"/",url)
                    531:                 
1.3       casties   532:             scaler = urlopen(url).read()
                    533:             return scaler.replace("/servlet/Scaler?", "")
                    534:         except:
                    535:             return None
                    536:     
1.18      dwinter   537:     def changeDocumentViewer(self,imageViewerUrl,textViewerUrl,title="",digilibBaseUrl=None,thumbrows=2,thumbcols=10,authgroups='mpiwg',RESPONSE=None):
1.3       casties   538:         """init document viewer"""
                    539:         self.title=title
                    540:         self.imageViewerUrl=imageViewerUrl
1.18      dwinter   541:         self.textViewerUrl=textViewerUrl
1.3       casties   542:         self.digilibBaseUrl = digilibBaseUrl
1.4       casties   543:         self.thumbrows = thumbrows
                    544:         self.thumbcols = thumbcols
1.8       casties   545:         self.authgroups = [s.strip().lower() for s in authgroups.split(',')]
1.3       casties   546:         if RESPONSE is not None:
                    547:             RESPONSE.redirect('manage_main')
1.1       dwinter   548:     
                    549:     
                    550:         
                    551:         
                    552: #    security.declareProtected('View management screens','renameImageForm')
                    553: 
                    554: def manage_AddDocumentViewerForm(self):
                    555:     """add the viewer form"""
1.3       casties   556:     pt=PageTemplateFile('zpt/addDocumentViewer', globals()).__of__(self)
1.1       dwinter   557:     return pt()
                    558:   
1.18      dwinter   559: def manage_AddDocumentViewer(self,id,imageViewerUrl="",textViewerUrl="",title="",RESPONSE=None):
1.1       dwinter   560:     """add the viewer"""
1.18      dwinter   561:     newObj=documentViewer(id,imageViewerUrl,title=title,textViewerUrl=textViewerUrl)
1.1       dwinter   562:     self._setObject(id,newObj)
                    563:     
                    564:     if RESPONSE is not None:
                    565:         RESPONSE.redirect('manage_main')
1.3       casties   566: 
                    567: 
                    568: ##
                    569: ## DocumentViewerTemplate class
                    570: ##
                    571: class DocumentViewerTemplate(ZopePageTemplate):
                    572:     """Template for document viewer"""
                    573:     meta_type="DocumentViewer Template"
                    574: 
                    575: 
                    576: def manage_addDocumentViewerTemplateForm(self):
                    577:     """Form for adding"""
                    578:     pt=PageTemplateFile('zpt/addDocumentViewerTemplate', globals()).__of__(self)
                    579:     return pt()
                    580: 
                    581: def manage_addDocumentViewerTemplate(self, id='viewer_main', title=None, text=None,
                    582:                            REQUEST=None, submit=None):
                    583:     "Add a Page Template with optional file content."
                    584: 
                    585:     self._setObject(id, DocumentViewerTemplate(id))
                    586:     ob = getattr(self, id)
                    587:     ob.pt_edit(open(os.path.join(package_home(globals()),'zpt/viewer_main.zpt')).read(),None)
                    588:     if title:
                    589:         ob.pt_setTitle(title)
                    590:     try:
                    591:         u = self.DestinationURL()
                    592:     except AttributeError:
                    593:         u = REQUEST['URL1']
                    594:         
                    595:     u = "%s/%s" % (u, urllib.quote(id))
                    596:     REQUEST.RESPONSE.redirect(u+'/manage_main')
                    597:     return ''
                    598: 
                    599: 
1.14      casties   600:     

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