Annotation of documentViewer/documentViewer.py, revision 1.169

1.18      dwinter     1: 
1.1       dwinter     2: from OFS.Folder import Folder
                      3: from Products.PageTemplates.ZopePageTemplate import ZopePageTemplate
1.22      dwinter     4: from Products.PageTemplates.PageTemplateFile import PageTemplateFile 
1.1       dwinter     5: from AccessControl import ClassSecurityInfo
1.8       casties     6: from AccessControl import getSecurityManager
1.1       dwinter     7: from Globals import package_home
1.119     abukhman    8: from Products.zogiLib.zogiLib import browserCheck
1.1       dwinter     9: 
1.70      casties    10: from Ft.Xml import EMPTY_NAMESPACE, Parse
1.73      casties    11: import Ft.Xml.Domlette
1.1       dwinter    12: import os.path
1.7       casties    13: import sys
1.1       dwinter    14: import urllib
1.70      casties    15: import urllib2
1.20      dwinter    16: import logging
1.28      casties    17: import math
1.18      dwinter    18: import urlparse 
1.70      casties    19: import cStringIO
1.99      dwinter    20: import re
1.149     abukhman   21: import string
1.117     abukhman   22: 
1.22      dwinter    23: def logger(txt,method,txt2):
                     24:     """logging"""
                     25:     logging.info(txt+ txt2)
                     26:     
                     27:     
1.4       casties    28: def getInt(number, default=0):
                     29:     """returns always an int (0 in case of problems)"""
                     30:     try:
                     31:         return int(number)
                     32:     except:
1.29      casties    33:         return int(default)
1.4       casties    34: 
1.1       dwinter    35: def getTextFromNode(nodename):
1.18      dwinter    36:     """get the cdata content of a node"""
1.8       casties    37:     if nodename is None:
                     38:         return ""
1.1       dwinter    39:     nodelist=nodename.childNodes
                     40:     rc = ""
                     41:     for node in nodelist:
                     42:         if node.nodeType == node.TEXT_NODE:
                     43:            rc = rc + node.data
                     44:     return rc
                     45: 
1.43      casties    46: def serializeNode(node, encoding='utf-8'):
                     47:     """returns a string containing node as XML"""
                     48:     buf = cStringIO.StringIO()
1.75      casties    49:     Ft.Xml.Domlette.Print(node, stream=buf, encoding=encoding)
1.43      casties    50:     s = buf.getvalue()
                     51:     buf.close()
                     52:     return s
                     53: 
1.148     abukhman   54: def browserCheck(self):
                     55:     """check the browsers request to find out the browser type"""
                     56:     bt = {}
                     57:     ua = self.REQUEST.get_header("HTTP_USER_AGENT")
                     58:     bt['ua'] = ua
                     59:     bt['isIE'] = False
                     60:     bt['isN4'] = False
1.165     abukhman   61:     bt['versFirefox']=""
                     62:     bt['versIE']=""
                     63:     bt['versSafariChrome']=""
                     64:     bt['versOpera']=""
                     65:     
1.148     abukhman   66:     if string.find(ua, 'MSIE') > -1:
                     67:         bt['isIE'] = True
                     68:     else:
                     69:         bt['isN4'] = (string.find(ua, 'Mozilla/4.') > -1)
1.165     abukhman   70:     # Safari oder Chrome identification    
                     71:     try:
                     72:         nav = ua[string.find(ua, '('):]
                     73:         nav1=ua[string.find(ua,')'):]
                     74:         nav2=nav1[string.find(nav1,'('):]
                     75:         nav3=nav2[string.find(nav2,')'):]
                     76:         ie = string.split(nav, "; ")[1]
                     77:         ie1 =string.split(nav1, " ")[2]
                     78:         ie2 =string.split(nav3, " ")[1]
                     79:         ie3 =string.split(nav3, " ")[2]
                     80:         if string.find(ie3, "Safari") >-1:
                     81:             bt['versSafariChrome']=string.split(ie2, "/")[1]
                     82:     except: pass
                     83:     # IE identification
1.148     abukhman   84:     try:
                     85:         nav = ua[string.find(ua, '('):]
                     86:         ie = string.split(nav, "; ")[1]
                     87:         if string.find(ie, "MSIE") > -1:
                     88:             bt['versIE'] = string.split(ie, " ")[1]
1.165     abukhman   89:     except:pass
                     90:     # Firefox identification
                     91:     try:
                     92:         nav = ua[string.find(ua, '('):]
                     93:         nav1=ua[string.find(ua,')'):]
                     94:         if string.find(ie1, "Firefox") >-1:
                     95:             nav5= string.split(ie1, "/")[1]
                     96:             logging.debug("FIREFOX: %s"%(nav5))
1.166     abukhman   97:             bt['versFirefox']=nav5[0:3]                   
1.165     abukhman   98:     except:pass
                     99:     #Opera identification
                    100:     try:
                    101:         if string.find(ua,"Opera") >-1:
                    102:             nav = ua[string.find(ua, '('):]
                    103:             nav1=nav[string.find(nav,')'):]
                    104:             bt['versOpera']=string.split(nav1,"/")[2]
                    105:     except:pass
1.148     abukhman  106:     
                    107:     bt['isMac'] = string.find(ua, 'Macintosh') > -1
                    108:     bt['isWin'] = string.find(ua, 'Windows') > -1
                    109:     bt['isIEWin'] = bt['isIE'] and bt['isWin']
                    110:     bt['isIEMac'] = bt['isIE'] and bt['isMac']
                    111:     bt['staticHTML'] = False
                    112: 
                    113:     return bt
1.118     abukhman  114: 
                    115:        
1.9       casties   116: def getParentDir(path):
                    117:     """returns pathname shortened by one"""
                    118:     return '/'.join(path.split('/')[0:-1])
                    119:         
                    120: 
1.70      casties   121: def getHttpData(url, data=None, num_tries=3, timeout=10):
                    122:     """returns result from url+data HTTP request"""
                    123:     # we do GET (by appending data to url)
                    124:     if isinstance(data, str) or isinstance(data, unicode):
                    125:         # if data is string then append
                    126:         url = "%s?%s"%(url,data)
                    127:     elif isinstance(data, dict) or isinstance(data, list) or isinstance(data, tuple):
                    128:         # urlencode
                    129:         url = "%s?%s"%(url,urllib.urlencode(data))
                    130:     
                    131:     response = None
                    132:     errmsg = None
                    133:     for cnt in range(num_tries):
                    134:         try:
1.95      abukhman  135:             logging.debug("getHttpData(#%s %ss) url=%s"%(cnt+1,timeout,url))
1.70      casties   136:             if sys.version_info < (2, 6):
                    137:                 # set timeout on socket -- ugly :-(
                    138:                 import socket
                    139:                 socket.setdefaulttimeout(float(timeout))
                    140:                 response = urllib2.urlopen(url)
                    141:             else:
                    142:                 response = urllib2.urlopen(url,timeout=float(timeout))
                    143:             # check result?
                    144:             break
                    145:         except urllib2.HTTPError, e:
1.95      abukhman  146:             logging.error("getHttpData: HTTP error(%s): %s"%(e.code,e))
1.70      casties   147:             errmsg = str(e)
                    148:             # stop trying
                    149:             break
                    150:         except urllib2.URLError, e:
1.95      abukhman  151:             logging.error("getHttpData: URLLIB error(%s): %s"%(e.reason,e))
1.70      casties   152:             errmsg = str(e)
                    153:             # stop trying
                    154:             #break
                    155: 
                    156:     if response is not None:
                    157:         data = response.read()
                    158:         response.close()
                    159:         return data
                    160:     
                    161:     raise IOError("ERROR fetching HTTP data from %s: %s"%(url,errmsg))
                    162:     #return None
1.1       dwinter   163: 
                    164: 
                    165: 
1.3       casties   166: ##
                    167: ## documentViewer class
                    168: ##
                    169: class documentViewer(Folder):
1.1       dwinter   170:     """document viewer"""
                    171:     meta_type="Document viewer"
                    172:     
                    173:     security=ClassSecurityInfo()
1.3       casties   174:     manage_options=Folder.manage_options+(
1.1       dwinter   175:         {'label':'main config','action':'changeDocumentViewerForm'},
                    176:         )
                    177: 
1.3       casties   178:     # templates and forms
                    179:     viewer_main = PageTemplateFile('zpt/viewer_main', globals())
1.44      casties   180:     toc_thumbs = PageTemplateFile('zpt/toc_thumbs', globals())
                    181:     toc_text = PageTemplateFile('zpt/toc_text', globals())
                    182:     toc_figures = PageTemplateFile('zpt/toc_figures', globals())
1.43      casties   183:     page_main_images = PageTemplateFile('zpt/page_main_images', globals())
1.161     abukhman  184:     page_main_double = PageTemplateFile('zpt/page_main_double', globals())
1.43      casties   185:     page_main_text = PageTemplateFile('zpt/page_main_text', globals())
1.44      casties   186:     page_main_text_dict = PageTemplateFile('zpt/page_main_text_dict', globals())
1.77      abukhman  187:     page_main_gis =PageTemplateFile ('zpt/page_main_gis', globals())
1.48      abukhman  188:     page_main_xml = PageTemplateFile('zpt/page_main_xml', globals())
1.157     abukhman  189:     page_main_pureXml = PageTemplateFile('zpt/page_main_pureXml', globals())
1.3       casties   190:     head_main = PageTemplateFile('zpt/head_main', globals())
                    191:     docuviewer_css = PageTemplateFile('css/docuviewer.css', globals())
1.26      casties   192:     info_xml = PageTemplateFile('zpt/info_xml', globals())
1.70      casties   193:     
                    194:     
1.32      dwinter   195:     thumbs_main_rss = PageTemplateFile('zpt/thumbs_main_rss', globals())
1.3       casties   196:     security.declareProtected('View management screens','changeDocumentViewerForm')    
                    197:     changeDocumentViewerForm = PageTemplateFile('zpt/changeDocumentViewer', globals())
                    198: 
1.1       dwinter   199:     
1.45      abukhman  200:     def __init__(self,id,imageScalerUrl=None,textServerName=None,title="",digilibBaseUrl=None,thumbcols=2,thumbrows=5,authgroups="mpiwg"):
1.1       dwinter   201:         """init document viewer"""
                    202:         self.id=id
                    203:         self.title=title
1.4       casties   204:         self.thumbcols = thumbcols
                    205:         self.thumbrows = thumbrows
1.8       casties   206:         # authgroups is list of authorized groups (delimited by ,)
                    207:         self.authgroups = [s.strip().lower() for s in authgroups.split(',')]
1.43      casties   208:         # create template folder so we can always use template.something
                    209:         
                    210:         templateFolder = Folder('template')
                    211:         #self['template'] = templateFolder # Zope-2.12 style
                    212:         self._setObject('template',templateFolder) # old style
                    213:         try:
1.70      casties   214:             import MpdlXmlTextServer
1.71      casties   215:             textServer = MpdlXmlTextServer.MpdlXmlTextServer(id='fulltextclient',serverName=textServerName)
1.43      casties   216:             #templateFolder['fulltextclient'] = xmlRpcClient
1.70      casties   217:             templateFolder._setObject('fulltextclient',textServer)
1.43      casties   218:         except Exception, e:
1.70      casties   219:             logging.error("Unable to create MpdlXmlTextServer for fulltextclient: "+str(e))
1.43      casties   220:         try:
                    221:             from Products.zogiLib.zogiLib import zogiLib
                    222:             zogilib = zogiLib(id="zogilib", title="zogilib for docuviewer", dlServerURL=imageScalerUrl, layout="book")
                    223:             #templateFolder['zogilib'] = zogilib
                    224:             templateFolder._setObject('zogilib',zogilib)
                    225:         except Exception, e:
                    226:             logging.error("Unable to create zogiLib for zogilib: "+str(e))
                    227:         
1.70      casties   228:         
                    229:     # proxy text server methods to fulltextclient
                    230:     def getTextPage(self, **args):
                    231:         """get page"""
                    232:         return self.template.fulltextclient.getTextPage(**args)
1.167     abukhman  233:     
1.70      casties   234:     def getQuery(self, **args):
1.163     abukhman  235:         """get query in search"""
1.70      casties   236:         return self.template.fulltextclient.getQuery(**args)
1.163     abukhman  237:      
1.70      casties   238:     def getSearch(self, **args):
                    239:         """get search"""
                    240:         return self.template.fulltextclient.getSearch(**args)
1.120     abukhman  241:     
                    242:     def getGisPlaces(self, **args):
1.121     abukhman  243:         """get gis places"""
1.120     abukhman  244:         return self.template.fulltextclient.getGisPlaces(**args)
1.121     abukhman  245:  
                    246:     def getAllGisPlaces(self, **args):
1.122     abukhman  247:         """get all gis places """
                    248:         return self.template.fulltextclient.getAllGisPlaces(**args)
1.163     abukhman  249:        
1.70      casties   250:     def getTranslate(self, **args):
                    251:         """get translate"""
                    252:         return self.template.fulltextclient.getTranslate(**args)
                    253: 
                    254:     def getLemma(self, **args):
                    255:         """get lemma"""
                    256:         return self.template.fulltextclient.getLemma(**args)
                    257: 
                    258:     def getToc(self, **args):
                    259:         """get toc"""
                    260:         return self.template.fulltextclient.getToc(**args)
                    261: 
                    262:     def getTocPage(self, **args):
                    263:         """get tocpage"""
                    264:         return self.template.fulltextclient.getTocPage(**args)
1.3       casties   265: 
1.70      casties   266:     
1.32      dwinter   267:     security.declareProtected('View','thumbs_rss')
                    268:     def thumbs_rss(self,mode,url,viewMode="auto",start=None,pn=1):
                    269:         '''
                    270:         view it
                    271:         @param mode: defines how to access the document behind url 
                    272:         @param url: url which contains display information
                    273:         @param viewMode: if images display images, if text display text, default is images (text,images or auto)
                    274:         
                    275:         '''
1.95      abukhman  276:         logging.debug("HHHHHHHHHHHHHH:load the rss")
                    277:         logger("documentViewer (index)", logging.INFO, "mode: %s url:%s start:%s pn:%s"%(mode,url,start,pn))
1.32      dwinter   278:         
                    279:         if not hasattr(self, 'template'):
                    280:             # create template folder if it doesn't exist
                    281:             self.manage_addFolder('template')
                    282:             
                    283:         if not self.digilibBaseUrl:
                    284:             self.digilibBaseUrl = self.findDigilibUrl() or "http://nausikaa.mpiwg-berlin.mpg.de/digitallibrary"
                    285:             
                    286:         docinfo = self.getDocinfo(mode=mode,url=url)
1.132     abukhman  287:         #pageinfo = self.getPageinfo(start=start,current=pn,docinfo=docinfo)
1.138     abukhman  288:         pageinfo = self.getPageinfo(start=start,current=pn, docinfo=docinfo)
1.126     abukhman  289:         ''' ZDES '''
1.32      dwinter   290:         pt = getattr(self.template, 'thumbs_main_rss')
                    291:         
                    292:         if viewMode=="auto": # automodus gewaehlt
1.159     casties   293:             if docinfo.has_key("textURL") or docinfo.get('textURLPath',None): #texturl gesetzt und textViewer konfiguriert
1.32      dwinter   294:                 viewMode="text"
                    295:             else:
                    296:                 viewMode="images"
                    297:                
                    298:         return pt(docinfo=docinfo,pageinfo=pageinfo,viewMode=viewMode)
                    299:   
1.3       casties   300:     security.declareProtected('View','index_html')
1.158     casties   301:     def index_html(self,url,mode="texttool",viewMode="auto",tocMode="thumbs",start=None,pn=1,mk=None):
1.3       casties   302:         '''
                    303:         view it
1.26      casties   304:         @param mode: defines how to access the document behind url 
1.3       casties   305:         @param url: url which contains display information
1.44      casties   306:         @param viewMode: if images display images, if text display text, default is auto (text,images or auto)
1.48      abukhman  307:         @param tocMode: type of 'table of contents' for navigation (thumbs, text, figures, none)
1.78      abukhman  308:         @param characterNormalization type of text display (reg, norm, none)
1.49      abukhman  309:         @param querySearch: type of different search modes (fulltext, fulltextMorph, xpath, xquery, ftIndex, ftIndexMorph, fulltextMorphLemma)
1.3       casties   310:         '''
                    311:         
1.138     abukhman  312:         logging.debug("documentViewer (index) mode: %s url:%s start:%s pn:%s"%(mode,url,start,pn))
1.1       dwinter   313:         
1.3       casties   314:         if not hasattr(self, 'template'):
1.43      casties   315:             # this won't work
                    316:             logging.error("template folder missing!")
                    317:             return "ERROR: template folder missing!"
1.3       casties   318:             
1.43      casties   319:         if not getattr(self, 'digilibBaseUrl', None):
1.71      casties   320:             self.digilibBaseUrl = self.findDigilibUrl() or "http://digilib.mpiwg-berlin.mpg.de/digitallibrary"
1.3       casties   321:             
1.4       casties   322:         docinfo = self.getDocinfo(mode=mode,url=url)
1.47      abukhman  323:         
1.44      casties   324:         if tocMode != "thumbs":
                    325:             # get table of contents
                    326:             docinfo = self.getToc(mode=tocMode, docinfo=docinfo)
1.47      abukhman  327:             
1.21      dwinter   328:         if viewMode=="auto": # automodus gewaehlt
1.159     casties   329:             if docinfo.has_key('textURL') or docinfo.get('textURLPath',None): #texturl gesetzt und textViewer konfiguriert
1.68      casties   330:                 viewMode="text_dict"
1.21      dwinter   331:             else:
                    332:                 viewMode="images"
1.44      casties   333:                 
1.138     abukhman  334:         pageinfo = self.getPageinfo(start=start,current=pn, docinfo=docinfo,viewMode=viewMode,tocMode=tocMode)
1.68      casties   335:         
1.163     abukhman  336:         if (docinfo.get('textURLPath',None)):
                    337:             page = self.getTextPage(docinfo=docinfo, pageinfo=pageinfo)
                    338:             pageinfo['textPage'] = page
1.167     abukhman  339:         tt = getattr(self, 'template')   
                    340:         pt = getattr(tt, 'viewer_main')               
1.37      dwinter   341:         return pt(docinfo=docinfo,pageinfo=pageinfo,viewMode=viewMode,mk=self.generateMarks(mk))
1.1       dwinter   342:   
1.36      dwinter   343:     def generateMarks(self,mk):
                    344:         ret=""
1.44      casties   345:         if mk is None:
                    346:             return ""
1.73      casties   347:         if not isinstance(mk, list):
1.71      casties   348:             mk=[mk]
1.36      dwinter   349:         for m in mk:
1.37      dwinter   350:             ret+="mk=%s"%m
1.36      dwinter   351:         return ret
1.149     abukhman  352:     
                    353:     
1.148     abukhman  354:     def getBrowser(self):
                    355:         """getBrowser the version of browser """
1.162     casties   356:         bt = browserCheck(self)
1.164     abukhman  357:         logging.debug("BROWSER VERSION: %s"%(bt))
1.162     casties   358:         return bt
1.148     abukhman  359:         
1.43      casties   360:     def findDigilibUrl(self):
                    361:         """try to get the digilib URL from zogilib"""
                    362:         url = self.template.zogilib.getDLBaseUrl()
                    363:         return url
1.67      casties   364: 
                    365:     def getDocumentViewerURL(self):
                    366:         """returns the URL of this instance"""
                    367:         return self.absolute_url()
1.43      casties   368:     
                    369:     def getStyle(self, idx, selected, style=""):
                    370:         """returns a string with the given style and append 'sel' if path == selected."""
                    371:         #logger("documentViewer (getstyle)", logging.INFO, "idx: %s selected: %s style: %s"%(idx,selected,style))
                    372:         if idx == selected:
                    373:             return style + 'sel'
                    374:         else:
                    375:             return style
1.36      dwinter   376:     
1.162     casties   377:     def getLink(self, param=None, val=None, params=None, baseUrl=None, paramSep='&'):
                    378:         """returns URL to documentviewer with parameter param set to val or from dict params"""
                    379:         # copy existing request params
                    380:         urlParams=self.REQUEST.form.copy()
                    381:         # change single param
1.4       casties   382:         if param is not None:
1.7       casties   383:             if val is None:
1.162     casties   384:                 if urlParams.has_key(param):
                    385:                     del urlParams[param]
1.4       casties   386:             else:
1.162     casties   387:                 urlParams[param] = str(val)
1.43      casties   388:                 
1.162     casties   389:         # change more params
                    390:         if params is not None:
                    391:             for k in params.keys():
                    392:                 v = params[k]
                    393:                 if v is None:
                    394:                     # val=None removes param
                    395:                     if urlParams.has_key(k):
                    396:                         del urlParams[k]
                    397:                         
                    398:                 else:
                    399:                     urlParams[k] = v
                    400: 
                    401:         # FIXME: does this belong here?
                    402:         if urlParams.get("mode", None) == "filepath": #wenn beim erst Aufruf filepath gesetzt wurde aendere das nun zu imagepath
                    403:                 urlParams["mode"] = "imagepath"
                    404:                 urlParams["url"] = getParentDir(urlParams["url"])
1.7       casties   405:                 
1.162     casties   406:         # quote values and assemble into query string (not escaping '/')
                    407:         ps = paramSep.join(["%s=%s"%(k,urllib.quote_plus(v,'/')) for (k, v) in urlParams.items()])
                    408:         #ps = urllib.urlencode(urlParams)
                    409:         if baseUrl is None:
                    410:             baseUrl = self.REQUEST['URL1']
                    411:             
                    412:         url = "%s?%s"%(baseUrl, ps)
1.4       casties   413:         return url
                    414: 
1.162     casties   415: 
                    416:     def getLinkAmp(self, param=None, val=None, params=None, baseUrl=None):
1.32      dwinter   417:         """link to documentviewer with parameter param set to val"""
1.162     casties   418:         return self.getLink(param, val, params, baseUrl, '&amp;')
1.40      casties   419:     
1.26      casties   420:     def getInfo_xml(self,url,mode):
                    421:         """returns info about the document as XML"""
                    422: 
                    423:         if not self.digilibBaseUrl:
                    424:             self.digilibBaseUrl = self.findDigilibUrl() or "http://nausikaa.mpiwg-berlin.mpg.de/digitallibrary"
                    425:         
                    426:         docinfo = self.getDocinfo(mode=mode,url=url)
                    427:         pt = getattr(self.template, 'info_xml')
                    428:         return pt(docinfo=docinfo)
                    429: 
1.153     casties   430:     def getOptionToggle(self, newState=None, optionName='text_options_open', initialState=True):
                    431:         """returns new option state"""
1.155     casties   432:         if not self.REQUEST.SESSION.has_key(optionName):
1.153     casties   433:             # not in session -- initial
                    434:             opt = {'lastState': newState, 'state': initialState}
                    435:         else:
1.155     casties   436:             opt = self.REQUEST.SESSION.get(optionName)
1.153     casties   437:             if opt['lastState'] != newState:
                    438:                 # state in session has changed -- toggle
                    439:                 opt['state'] = not opt['state']
                    440:                 opt['lastState'] = newState
                    441:         
                    442:         self.REQUEST.SESSION[optionName] = opt
                    443:         return opt['state']
1.4       casties   444:     
1.9       casties   445:     def isAccessible(self, docinfo):
1.8       casties   446:         """returns if access to the resource is granted"""
                    447:         access = docinfo.get('accessType', None)
1.95      abukhman  448:         logging.debug("documentViewer (accessOK) access type %s"%access)
1.17      casties   449:         if access is not None and access == 'free':
1.95      abukhman  450:             logging.debug("documentViewer (accessOK) access is free")
1.8       casties   451:             return True
1.17      casties   452:         elif access is None or access in self.authgroups:
1.9       casties   453:             # only local access -- only logged in users
                    454:             user = getSecurityManager().getUser()
1.95      abukhman  455:             logging.debug("documentViewer (accessOK) user=%s ip=%s"%(user,self.REQUEST.getClientAddr()))
1.9       casties   456:             if user is not None:
                    457:                 #print "user: ", user
                    458:                 return (user.getUserName() != "Anonymous User")
                    459:             else:
                    460:                 return False
1.8       casties   461:         
1.95      abukhman  462:         logging.error("documentViewer (accessOK) unknown access type %s"%access)
1.8       casties   463:         return False
1.9       casties   464:     
1.8       casties   465:                 
1.35      dwinter   466:     def getDirinfoFromDigilib(self,path,docinfo=None,cut=0):
1.6       casties   467:         """gibt param von dlInfo aus"""
1.7       casties   468:         if docinfo is None:
                    469:             docinfo = {}
1.35      dwinter   470:         
                    471:         for x in range(cut):
1.38      dwinter   472:                
1.35      dwinter   473:                 path=getParentDir(path)
1.38      dwinter   474:        
1.13      casties   475:         infoUrl=self.digilibBaseUrl+"/dirInfo-xml.jsp?mo=dir&fn="+path
1.6       casties   476:     
1.95      abukhman  477:         logging.debug("documentViewer (getparamfromdigilib) dirInfo from %s"%(infoUrl))
1.6       casties   478:         
1.70      casties   479:         txt = getHttpData(infoUrl)
                    480:         if txt is None:
1.13      casties   481:             raise IOError("Unable to get dir-info from %s"%(infoUrl))
1.70      casties   482: 
                    483:         dom = Parse(txt)
1.10      casties   484:         sizes=dom.xpath("//dir/size")
1.95      abukhman  485:         logging.debug("documentViewer (getparamfromdigilib) dirInfo:size"%sizes)
1.6       casties   486:         
1.10      casties   487:         if sizes:
                    488:             docinfo['numPages'] = int(getTextFromNode(sizes[0]))
1.7       casties   489:         else:
                    490:             docinfo['numPages'] = 0
1.43      casties   491:             
                    492:         # TODO: produce and keep list of image names and numbers
1.7       casties   493:                         
                    494:         return docinfo
1.8       casties   495:     
1.99      dwinter   496:     def getIndexMetaPath(self,url):
                    497:         """gib nur den Pfad zurueck"""
                    498:         regexp = re.compile(r".*(experimental|permanent)/(.*)")
                    499:         regpath = regexp.match(url)
                    500:         if (regpath==None):
                    501:             return ""
1.110     abukhman  502:         logging.debug("(getDomFromIndexMeta): URLXAXA: %s"%regpath.group(2))            
1.99      dwinter   503:         return ("/mpiwg/online/"+regpath.group(1)+"/"+regpath.group(2))
                    504:      
1.111     abukhman  505:     
                    506:     
1.99      dwinter   507:     def getIndexMetaUrl(self,url):
                    508:         """returns utr  of index.meta document at url"""
                    509:       
1.12      casties   510:         metaUrl = None
1.9       casties   511:         if url.startswith("http://"):
                    512:             # real URL
1.12      casties   513:             metaUrl = url
1.9       casties   514:         else:
                    515:             # online path
                    516:             server=self.digilibBaseUrl+"/servlet/Texter?fn="
1.13      casties   517:             metaUrl=server+url.replace("/mpiwg/online","")
1.9       casties   518:             if not metaUrl.endswith("index.meta"):
                    519:                 metaUrl += "/index.meta"
1.99      dwinter   520:         
                    521:         return metaUrl
                    522:     
                    523:     def getDomFromIndexMeta(self, url):
                    524:         """get dom from index meta"""
                    525:         dom = None
                    526:         metaUrl = self.getIndexMetaUrl(url)
1.12      casties   527:                 
1.99      dwinter   528:         logging.debug("(getDomFromIndexMeta): METAURL: %s"%metaUrl)
1.70      casties   529:         txt=getHttpData(metaUrl)
                    530:         if txt is None:
1.12      casties   531:             raise IOError("Unable to read index meta from %s"%(url))
1.70      casties   532:         
                    533:         dom = Parse(txt)
1.9       casties   534:         return dom
1.20      dwinter   535:     
                    536:     def getPresentationInfoXML(self, url):
                    537:         """returns dom of info.xml document at url"""
                    538:         dom = None
                    539:         metaUrl = None
                    540:         if url.startswith("http://"):
                    541:             # real URL
                    542:             metaUrl = url
                    543:         else:
                    544:             # online path
                    545:             server=self.digilibBaseUrl+"/servlet/Texter?fn="
                    546:             metaUrl=server+url.replace("/mpiwg/online","")
                    547:         
1.70      casties   548:         txt=getHttpData(metaUrl)
                    549:         if txt is None:
1.20      dwinter   550:             raise IOError("Unable to read infoXMLfrom %s"%(url))
1.70      casties   551:             
                    552:         dom = Parse(txt)
1.20      dwinter   553:         return dom
1.9       casties   554:                         
                    555:         
1.33      dwinter   556:     def getAuthinfoFromIndexMeta(self,path,docinfo=None,dom=None,cut=0):
1.9       casties   557:         """gets authorization info from the index.meta file at path or given by dom"""
1.95      abukhman  558:         logging.debug("documentViewer (getauthinfofromindexmeta) path: %s"%(path))
1.8       casties   559:         
                    560:         access = None
                    561:         
                    562:         if docinfo is None:
                    563:             docinfo = {}
                    564:             
                    565:         if dom is None:
1.38      dwinter   566:             for x in range(cut):
1.33      dwinter   567:                 path=getParentDir(path)
1.99      dwinter   568:             dom = self.getDomFromIndexMeta(path)
1.18      dwinter   569:        
1.8       casties   570:         acctype = dom.xpath("//access-conditions/access/@type")
                    571:         if acctype and (len(acctype)>0):
                    572:             access=acctype[0].value
1.9       casties   573:             if access in ['group', 'institution']:
1.8       casties   574:                 access = getTextFromNode(dom.xpath("//access-conditions/access/name")[0]).lower()
                    575:             
                    576:         docinfo['accessType'] = access
                    577:         return docinfo
1.6       casties   578:     
1.8       casties   579:         
1.33      dwinter   580:     def getBibinfoFromIndexMeta(self,path,docinfo=None,dom=None,cut=0):
1.9       casties   581:         """gets bibliographical info from the index.meta file at path or given by dom"""
1.95      abukhman  582:         logging.debug("documentViewer (getbibinfofromindexmeta) path: %s"%(path))
1.2       dwinter   583:         
1.3       casties   584:         if docinfo is None:
                    585:             docinfo = {}
1.38      dwinter   586:         
1.3       casties   587:         if dom is None:
1.38      dwinter   588:             for x in range(cut):
1.33      dwinter   589:                 path=getParentDir(path)
1.99      dwinter   590:             dom = self.getDomFromIndexMeta(path)
                    591:         
                    592:         docinfo['indexMetaPath']=self.getIndexMetaPath(path);
1.39      dwinter   593:         
1.95      abukhman  594:         logging.debug("documentViewer (getbibinfofromindexmeta cutted) path: %s"%(path))
1.27      casties   595:         # put in all raw bib fields as dict "bib"
                    596:         bib = dom.xpath("//bib/*")
                    597:         if bib and len(bib)>0:
                    598:             bibinfo = {}
                    599:             for e in bib:
                    600:                 bibinfo[e.localName] = getTextFromNode(e)
                    601:             docinfo['bib'] = bibinfo
                    602:         
                    603:         # extract some fields (author, title, year) according to their mapping
1.4       casties   604:         metaData=self.metadata.main.meta.bib
                    605:         bibtype=dom.xpath("//bib/@type")
                    606:         if bibtype and (len(bibtype)>0):
                    607:             bibtype=bibtype[0].value
1.2       dwinter   608:         else:
1.4       casties   609:             bibtype="generic"
1.27      casties   610:             
1.4       casties   611:         bibtype=bibtype.replace("-"," ") # wrong typesiin index meta "-" instead of " " (not wrong! ROC)
1.27      casties   612:         docinfo['bib_type'] = bibtype
1.4       casties   613:         bibmap=metaData.generateMappingForType(bibtype)
1.99      dwinter   614:         logging.debug("documentViewer (getbibinfofromindexmeta) bibmap:"+repr(bibmap))
                    615:         logging.debug("documentViewer (getbibinfofromindexmeta) bibtype:"+repr(bibtype))
1.8       casties   616:         # if there is no mapping bibmap is empty (mapping sometimes has empty fields)
1.7       casties   617:         if len(bibmap) > 0 and len(bibmap['author'][0]) > 0:
1.30      casties   618:             try:
                    619:                 docinfo['author']=getTextFromNode(dom.xpath("//bib/%s"%bibmap['author'][0])[0])
                    620:             except: pass
                    621:             try:
                    622:                 docinfo['title']=getTextFromNode(dom.xpath("//bib/%s"%bibmap['title'][0])[0])
                    623:             except: pass
                    624:             try:
                    625:                 docinfo['year']=getTextFromNode(dom.xpath("//bib/%s"%bibmap['year'][0])[0])
                    626:             except: pass
1.95      abukhman  627:             logging.debug("documentViewer (getbibinfofromindexmeta) using mapping for %s"%bibtype)
1.22      dwinter   628:             try:
                    629:                 docinfo['lang']=getTextFromNode(dom.xpath("//bib/lang")[0])
                    630:             except:
                    631:                 docinfo['lang']=''
1.167     abukhman  632:             try:
                    633:                 docinfo['city']=getTextFromNode(dom.xpath("//bib/city")[0])
                    634:             except:
                    635:                 docinfo['city']=''
                    636:             try:
                    637:                 docinfo['number_of_pages']=getTextFromNode(dom.xpath("//bib/number_of_pages")[0])
                    638:             except:
                    639:                 docinfo['number_of_pages']=''
                    640:             try:
                    641:                 docinfo['series_volume']=getTextFromNode(dom.xpath("//bib/series_volume")[0])
                    642:             except:
                    643:                 docinfo['series_volume']=''
                    644:             try:
                    645:                 docinfo['number_of_volumes']=getTextFromNode(dom.xpath("//bib/number_of_volumes")[0])
                    646:             except:
                    647:                 docinfo['number_of_volumes']=''
                    648:             try:
                    649:                 docinfo['translator']=getTextFromNode(dom.xpath("//bib/translator")[0])
                    650:             except:
                    651:                 docinfo['translator']=''
                    652:             try:
                    653:                 docinfo['edition']=getTextFromNode(dom.xpath("//bib/edition")[0])
                    654:             except:
                    655:                 docinfo['edition']=''
                    656:             try:
                    657:                 docinfo['series_author']=getTextFromNode(dom.xpath("//bib/series_author")[0])
                    658:             except:
                    659:                 docinfo['series_author']=''
                    660:             try:
                    661:                 docinfo['publisher']=getTextFromNode(dom.xpath("//bib/publisher")[0])
                    662:             except:
                    663:                 docinfo['publisher']=''
                    664:             try:
                    665:                 docinfo['series_title']=getTextFromNode(dom.xpath("//bib/series_title")[0])
                    666:             except:
                    667:                 docinfo['series_title']=''
                    668:             try:
                    669:                 docinfo['isbn_issn']=getTextFromNode(dom.xpath("//bib/isbn_issn")[0])
                    670:             except:
                    671:                 docinfo['isbn_issn']=''           
1.3       casties   672:         return docinfo
1.42      abukhman  673:     
1.104     abukhman  674:      
                    675:     def getNameFromIndexMeta(self,path,docinfo=None,dom=None,cut=0):
                    676:         """gets name info from the index.meta file at path or given by dom"""
                    677:         if docinfo is None:
                    678:             docinfo = {}
                    679:         
                    680:         if dom is None:
                    681:             for x in range(cut):
                    682:                 path=getParentDir(path)
                    683:             dom = self.getDomFromIndexMeta(path)
1.125     abukhman  684: 
1.115     abukhman  685:         docinfo['name']=getTextFromNode(dom.xpath("/resource/name")[0])
1.116     abukhman  686:         logging.debug("documentViewer docinfo[name] %s"%docinfo['name'])
1.104     abukhman  687:         return docinfo
1.42      abukhman  688:     
1.43      casties   689:     def getDocinfoFromTextTool(self, url, dom=None, docinfo=None):
                    690:         """parse texttool tag in index meta"""
1.95      abukhman  691:         logging.debug("documentViewer (getdocinfofromtexttool) url: %s" % (url))
1.43      casties   692:         if docinfo is None:
                    693:            docinfo = {}
                    694:         if docinfo.get('lang', None) is None:
                    695:             docinfo['lang'] = '' # default keine Sprache gesetzt
                    696:         if dom is None:
1.99      dwinter   697:             dom = self.getDomFromIndexMeta(url)
1.43      casties   698:         
                    699:         archivePath = None
                    700:         archiveName = None
                    701:     
                    702:         archiveNames = dom.xpath("//resource/name")
                    703:         if archiveNames and (len(archiveNames) > 0):
                    704:             archiveName = getTextFromNode(archiveNames[0])
                    705:         else:
1.70      casties   706:             logging.warning("documentViewer (getdocinfofromtexttool) resource/name missing in: %s" % (url))
1.43      casties   707:         
                    708:         archivePaths = dom.xpath("//resource/archive-path")
                    709:         if archivePaths and (len(archivePaths) > 0):
                    710:             archivePath = getTextFromNode(archivePaths[0])
                    711:             # clean up archive path
                    712:             if archivePath[0] != '/':
                    713:                 archivePath = '/' + archivePath
                    714:             if archiveName and (not archivePath.endswith(archiveName)):
                    715:                 archivePath += "/" + archiveName
                    716:         else:
                    717:             # try to get archive-path from url
1.95      abukhman  718:             logging.warning("documentViewer (getdocinfofromtexttool) resource/archive-path missing in: %s" % (url))
1.43      casties   719:             if (not url.startswith('http')):
                    720:                 archivePath = url.replace('index.meta', '')
                    721:                 
                    722:         if archivePath is None:
                    723:             # we balk without archive-path
                    724:             raise IOError("Missing archive-path (for text-tool) in %s" % (url))
                    725:         
                    726:         imageDirs = dom.xpath("//texttool/image")
                    727:         if imageDirs and (len(imageDirs) > 0):
                    728:             imageDir = getTextFromNode(imageDirs[0])
                    729:             
                    730:         else:
                    731:             # we balk with no image tag / not necessary anymore because textmode is now standard
                    732:             #raise IOError("No text-tool info in %s"%(url))
                    733:             imageDir = ""
                    734:             #xquery="//pb"  
                    735:             docinfo['imagePath'] = "" # keine Bilder
                    736:             docinfo['imageURL'] = ""
                    737:             
                    738:         if imageDir and archivePath:
                    739:             #print "image: ", imageDir, " archivepath: ", archivePath
                    740:             imageDir = os.path.join(archivePath, imageDir)
                    741:             imageDir = imageDir.replace("/mpiwg/online", '')
                    742:             docinfo = self.getDirinfoFromDigilib(imageDir, docinfo=docinfo)
                    743:             docinfo['imagePath'] = imageDir
                    744:             
                    745:             docinfo['imageURL'] = self.digilibBaseUrl + "/servlet/Scaler?fn=" + imageDir
                    746:             
                    747:         viewerUrls = dom.xpath("//texttool/digiliburlprefix")
                    748:         if viewerUrls and (len(viewerUrls) > 0):
                    749:             viewerUrl = getTextFromNode(viewerUrls[0])
                    750:             docinfo['viewerURL'] = viewerUrl
1.70      casties   751:         
                    752:         # old style text URL
1.43      casties   753:         textUrls = dom.xpath("//texttool/text")
                    754:         if textUrls and (len(textUrls) > 0):
                    755:             textUrl = getTextFromNode(textUrls[0])
                    756:             if urlparse.urlparse(textUrl)[0] == "": #keine url
                    757:                 textUrl = os.path.join(archivePath, textUrl) 
                    758:             # fix URLs starting with /mpiwg/online
                    759:             if textUrl.startswith("/mpiwg/online"):
                    760:                 textUrl = textUrl.replace("/mpiwg/online", '', 1)
                    761:             
                    762:             docinfo['textURL'] = textUrl
                    763:     
1.70      casties   764:         # new style text-url-path
1.43      casties   765:         textUrls = dom.xpath("//texttool/text-url-path")
                    766:         if textUrls and (len(textUrls) > 0):
                    767:             textUrl = getTextFromNode(textUrls[0])
1.51      casties   768:             docinfo['textURLPath'] = textUrl
1.169   ! abukhman  769:             textUrlkurz = string.split(textUrl, ".")[0]
        !           770:             docinfo['textURLPathkurz'] = textUrlkurz
1.163     abukhman  771:             #if not docinfo['imagePath']:
1.51      casties   772:                 # text-only, no page images
1.163     abukhman  773:                 #docinfo = self.getNumTextPages(docinfo)
                    774:                   
1.43      casties   775:          
                    776:         presentationUrls = dom.xpath("//texttool/presentation")
                    777:         docinfo = self.getBibinfoFromIndexMeta(url, docinfo=docinfo, dom=dom)   # get info von bib tag
1.114     abukhman  778:         docinfo = self.getNameFromIndexMeta(url, docinfo=docinfo, dom=dom)
1.147     abukhman  779:         
1.43      casties   780:         
                    781:         if presentationUrls and (len(presentationUrls) > 0): # ueberschreibe diese durch presentation informationen 
                    782:              # presentation url ergiebt sich ersetzen von index.meta in der url der fuer die Metadaten
                    783:              # durch den relativen Pfad auf die presentation infos
                    784:             presentationPath = getTextFromNode(presentationUrls[0])
                    785:             if url.endswith("index.meta"): 
                    786:                 presentationUrl = url.replace('index.meta', presentationPath)
                    787:             else:
                    788:                 presentationUrl = url + "/" + presentationPath
1.51      casties   789:                 
1.43      casties   790:             docinfo = self.getBibinfoFromTextToolPresentation(presentationUrl, docinfo=docinfo, dom=dom)
                    791:     
                    792:         docinfo = self.getAuthinfoFromIndexMeta(url, docinfo=docinfo, dom=dom)   # get access info
1.3       casties   793:         
1.43      casties   794:         return docinfo
1.3       casties   795:    
1.20      dwinter   796:    
                    797:     def getBibinfoFromTextToolPresentation(self,url,docinfo=None,dom=None):
                    798:         """gets the bibliographical information from the preseantion entry in texttools
                    799:         """
                    800:         dom=self.getPresentationInfoXML(url)
1.29      casties   801:         try:
                    802:             docinfo['author']=getTextFromNode(dom.xpath("//author")[0])
                    803:         except:
                    804:             pass
                    805:         try:
                    806:             docinfo['title']=getTextFromNode(dom.xpath("//title")[0])
                    807:         except:
                    808:             pass
                    809:         try:
                    810:             docinfo['year']=getTextFromNode(dom.xpath("//date")[0])
                    811:         except:
                    812:             pass
1.20      dwinter   813:         return docinfo
                    814:     
1.33      dwinter   815:     def getDocinfoFromImagePath(self,path,docinfo=None,cut=0):
1.3       casties   816:         """path ist the path to the images it assumes that the index.meta file is one level higher."""
1.95      abukhman  817:         logging.debug("documentViewer (getdocinfofromimagepath) path: %s"%(path))
1.3       casties   818:         if docinfo is None:
                    819:             docinfo = {}
1.6       casties   820:         path=path.replace("/mpiwg/online","")
1.3       casties   821:         docinfo['imagePath'] = path
1.35      dwinter   822:         docinfo=self.getDirinfoFromDigilib(path,docinfo=docinfo,cut=cut)
1.38      dwinter   823:         
1.39      dwinter   824:         pathorig=path
1.38      dwinter   825:         for x in range(cut):       
                    826:                 path=getParentDir(path)
1.95      abukhman  827:         logging.debug("documentViewer (getdocinfofromimagepath) PATH:"+path)
1.7       casties   828:         imageUrl=self.digilibBaseUrl+"/servlet/Scaler?fn="+path
1.3       casties   829:         docinfo['imageURL'] = imageUrl
                    830:         
1.39      dwinter   831:         #path ist the path to the images it assumes that the index.meta file is one level higher.
                    832:         docinfo = self.getBibinfoFromIndexMeta(pathorig,docinfo=docinfo,cut=cut+1)
                    833:         docinfo = self.getAuthinfoFromIndexMeta(pathorig,docinfo=docinfo,cut=cut+1)
1.3       casties   834:         return docinfo
                    835:     
1.2       dwinter   836:     
1.3       casties   837:     def getDocinfo(self, mode, url):
                    838:         """returns docinfo depending on mode"""
1.95      abukhman  839:         logging.debug("documentViewer (getdocinfo) mode: %s, url: %s"%(mode,url))
1.3       casties   840:         # look for cached docinfo in session
1.21      dwinter   841:         if self.REQUEST.SESSION.has_key('docinfo'):
1.3       casties   842:             docinfo = self.REQUEST.SESSION['docinfo']
                    843:             # check if its still current
                    844:             if docinfo is not None and docinfo.get('mode') == mode and docinfo.get('url') == url:
1.95      abukhman  845:                 logging.debug("documentViewer (getdocinfo) docinfo in session: %s"%docinfo)
1.3       casties   846:                 return docinfo
                    847:         # new docinfo
                    848:         docinfo = {'mode': mode, 'url': url}
                    849:         if mode=="texttool": #index.meta with texttool information
                    850:             docinfo = self.getDocinfoFromTextTool(url, docinfo=docinfo)
                    851:         elif mode=="imagepath":
                    852:             docinfo = self.getDocinfoFromImagePath(url, docinfo=docinfo)
1.33      dwinter   853:         elif mode=="filepath":
1.37      dwinter   854:             docinfo = self.getDocinfoFromImagePath(url, docinfo=docinfo,cut=1)
1.3       casties   855:         else:
1.95      abukhman  856:             logging.error("documentViewer (getdocinfo) unknown mode: %s!"%mode)
1.44      casties   857:             raise ValueError("Unknown mode %s! Has to be one of 'texttool','imagepath','filepath'."%(mode))
1.159     casties   858:                 
                    859:         # FIXME: fake texturlpath 
                    860:         if not docinfo.has_key('textURLPath'):
                    861:             docinfo['textURLPath'] = None
                    862:         
1.95      abukhman  863:         logging.debug("documentViewer (getdocinfo) docinfo: %s"%docinfo)
1.142     abukhman  864:         #logging.debug("documentViewer (getdocinfo) docinfo: %s"%)
1.3       casties   865:         self.REQUEST.SESSION['docinfo'] = docinfo
                    866:         return docinfo
1.69      abukhman  867:                
1.158     casties   868:     def getPageinfo(self, current, start=None, rows=None, cols=None, docinfo=None, viewMode=None, tocMode=None):
1.3       casties   869:         """returns pageinfo with the given parameters"""
                    870:         pageinfo = {}
1.4       casties   871:         current = getInt(current)
1.132     abukhman  872:     
1.4       casties   873:         pageinfo['current'] = current
                    874:         rows = int(rows or self.thumbrows)
                    875:         pageinfo['rows'] = rows
                    876:         cols = int(cols or self.thumbcols)
                    877:         pageinfo['cols'] = cols
                    878:         grpsize = cols * rows
                    879:         pageinfo['groupsize'] = grpsize
1.28      casties   880:         start = getInt(start, default=(math.ceil(float(current)/float(grpsize))*grpsize-(grpsize-1)))
                    881:         # int(current / grpsize) * grpsize +1))
1.3       casties   882:         pageinfo['start'] = start
1.4       casties   883:         pageinfo['end'] = start + grpsize
1.44      casties   884:         if (docinfo is not None) and ('numPages' in docinfo):
1.4       casties   885:             np = int(docinfo['numPages'])
                    886:             pageinfo['end'] = min(pageinfo['end'], np)
                    887:             pageinfo['numgroups'] = int(np / grpsize)
                    888:             if np % grpsize > 0:
1.69      abukhman  889:                 pageinfo['numgroups'] += 1        
1.44      casties   890:         pageinfo['viewMode'] = viewMode
                    891:         pageinfo['tocMode'] = tocMode
1.161     abukhman  892:         pageinfo['characterNormalization'] = self.REQUEST.get('characterNormalization','reg')
1.156     abukhman  893:         pageinfo['optionToggle'] = self.REQUEST.get('optionToggle','')
                    894:         pageinfo['query'] = self.REQUEST.get('query','') 
1.146     abukhman  895:         pageinfo['queryType'] = self.REQUEST.get('queryType','')
1.45      abukhman  896:         pageinfo['querySearch'] =self.REQUEST.get('querySearch', 'fulltext')
1.48      abukhman  897:         pageinfo['textPN'] = self.REQUEST.get('textPN','1')
1.146     abukhman  898:         pageinfo['highlightQuery'] = self.REQUEST.get('highlightQuery','')
1.45      abukhman  899:         pageinfo['tocPageSize'] = self.REQUEST.get('tocPageSize', '30')
1.54      abukhman  900:         pageinfo['queryPageSize'] =self.REQUEST.get('queryPageSize', '10')
1.44      casties   901:         pageinfo['tocPN'] = self.REQUEST.get('tocPN', '1')
1.163     abukhman  902:         
1.48      abukhman  903:         toc = int (pageinfo['tocPN'])
                    904:         pageinfo['textPages'] =int (toc)
1.90      abukhman  905:         
1.142     abukhman  906:         
1.123     abukhman  907:         
1.48      abukhman  908:         if 'tocSize_%s'%tocMode in docinfo:
                    909:             tocSize = int(docinfo['tocSize_%s'%tocMode])
                    910:             tocPageSize = int(pageinfo['tocPageSize'])
1.69      abukhman  911:             # cached toc           
1.48      abukhman  912:             if tocSize%tocPageSize>0:
                    913:                 tocPages=tocSize/tocPageSize+1
                    914:             else:
                    915:                 tocPages=tocSize/tocPageSize
1.69      abukhman  916:             pageinfo['tocPN'] = min (tocPages,toc)                    
1.45      abukhman  917:         pageinfo['searchPN'] =self.REQUEST.get('searchPN','1')
1.59      abukhman  918:         pageinfo['sn'] =self.REQUEST.get('sn','')
1.3       casties   919:         return pageinfo
                    920:     
1.69      abukhman  921: def changeDocumentViewer(self,title="",digilibBaseUrl=None,thumbrows=2,thumbcols=5,authgroups='mpiwg',RESPONSE=None):
1.3       casties   922:         """init document viewer"""
                    923:         self.title=title
                    924:         self.digilibBaseUrl = digilibBaseUrl
1.4       casties   925:         self.thumbrows = thumbrows
                    926:         self.thumbcols = thumbcols
1.8       casties   927:         self.authgroups = [s.strip().lower() for s in authgroups.split(',')]
1.3       casties   928:         if RESPONSE is not None:
                    929:             RESPONSE.redirect('manage_main')
1.1       dwinter   930:         
                    931: def manage_AddDocumentViewerForm(self):
                    932:     """add the viewer form"""
1.3       casties   933:     pt=PageTemplateFile('zpt/addDocumentViewer', globals()).__of__(self)
1.1       dwinter   934:     return pt()
                    935:   
1.43      casties   936: def manage_AddDocumentViewer(self,id,imageScalerUrl="",textServerName="",title="",RESPONSE=None):
1.1       dwinter   937:     """add the viewer"""
1.43      casties   938:     newObj=documentViewer(id,imageScalerUrl=imageScalerUrl,title=title,textServerName=textServerName)
1.1       dwinter   939:     self._setObject(id,newObj)
                    940:     
                    941:     if RESPONSE is not None:
                    942:         RESPONSE.redirect('manage_main')
1.3       casties   943: 
                    944: ## DocumentViewerTemplate class
                    945: class DocumentViewerTemplate(ZopePageTemplate):
                    946:     """Template for document viewer"""
                    947:     meta_type="DocumentViewer Template"
                    948: 
                    949: 
                    950: def manage_addDocumentViewerTemplateForm(self):
                    951:     """Form for adding"""
                    952:     pt=PageTemplateFile('zpt/addDocumentViewerTemplate', globals()).__of__(self)
                    953:     return pt()
                    954: 
                    955: def manage_addDocumentViewerTemplate(self, id='viewer_main', title=None, text=None,
                    956:                            REQUEST=None, submit=None):
                    957:     "Add a Page Template with optional file content."
                    958: 
                    959:     self._setObject(id, DocumentViewerTemplate(id))
                    960:     ob = getattr(self, id)
1.23      dwinter   961:     txt=file(os.path.join(package_home(globals()),'zpt/viewer_main.zpt'),'r').read()
1.95      abukhman  962:     logging.info("txt %s:"%txt)
1.23      dwinter   963:     ob.pt_edit(txt,"text/html")
1.3       casties   964:     if title:
                    965:         ob.pt_setTitle(title)
                    966:     try:
                    967:         u = self.DestinationURL()
                    968:     except AttributeError:
                    969:         u = REQUEST['URL1']
                    970:         
                    971:     u = "%s/%s" % (u, urllib.quote(id))
                    972:     REQUEST.RESPONSE.redirect(u+'/manage_main')
                    973:     return ''
                    974: 
                    975: 
1.14      casties   976:     

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