source: documentViewer/documentViewer.py @ 63:4a17b755bfc7

Last change on this file since 63:4a17b755bfc7 was 63:4a17b755bfc7, checked in by casties, 17 years ago

added more try/excepts to bib-meta reading code

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