Annotation of documentViewer/MpdlXmlTextServer.py, revision 1.194
1.2 casties 1:
2: from OFS.SimpleItem import SimpleItem
3: from Products.PageTemplates.PageTemplateFile import PageTemplateFile
4: from Ft.Xml import EMPTY_NAMESPACE, Parse
5:
6: import sys
7: import logging
1.5 casties 8: import urllib
1.2 casties 9: import documentViewer
10: from documentViewer import getTextFromNode, serializeNode
11:
12: class MpdlXmlTextServer(SimpleItem):
13: """TextServer implementation for MPDL-XML eXist server"""
14: meta_type="MPDL-XML TextServer"
15:
16: manage_options=(
17: {'label':'Config','action':'manage_changeMpdlXmlTextServerForm'},
18: )+SimpleItem.manage_options
19:
20: manage_changeMpdlXmlTextServerForm = PageTemplateFile("zpt/manage_changeMpdlXmlTextServer", globals())
21:
1.3 casties 22: def __init__(self,id,title="",serverUrl="http://mpdl-proto.mpiwg-berlin.mpg.de/mpdl/interface/", serverName=None, timeout=40):
1.2 casties 23: """constructor"""
24: self.id=id
25: self.title=title
26: self.timeout = timeout
1.3 casties 27: if serverName is None:
28: self.serverUrl = serverUrl
29: else:
30: self.serverUrl = "http://%s/mpdl/interface/"%serverName
1.2 casties 31:
32: def getHttpData(self, url, data=None):
33: """returns result from url+data HTTP request"""
34: return documentViewer.getHttpData(url,data,timeout=self.timeout)
35:
36: def getServerData(self, method, data=None):
37: """returns result from text server for method+data"""
38: url = self.serverUrl+method
39: return documentViewer.getHttpData(url,data,timeout=self.timeout)
40:
1.186 abukhman 41: def getSearch(self, pn=1, pageinfo=None, docinfo=None, query=None, queryType=None, lemma=None, characterNormalization=None):
1.2 casties 42: """get search list"""
43: docpath = docinfo['textURLPath']
44: url = docinfo['url']
45: pagesize = pageinfo['queryPageSize']
46: pn = pageinfo['searchPN']
47: sn = pageinfo['sn']
48: highlightQuery = pageinfo['highlightQuery']
1.34 abukhman 49: query =pageinfo['query']
1.2 casties 50: queryType =pageinfo['queryType']
51: viewMode= pageinfo['viewMode']
52: tocMode = pageinfo['tocMode']
1.24 abukhman 53: characterNormalization = pageinfo['characterNormalization']
1.2 casties 54: tocPN = pageinfo['tocPN']
55: selfurl = self.absolute_url()
56:
1.185 abukhman 57: data = self.getServerData("doc-query.xql","document=%s&mode=%s&queryType=%s&query=%s&queryResultPageSize=%s&queryResultPN=%s&sn=%s&viewMode=%s&characterNormalization=%s&highlightQuery=%s"%(docpath, 'text', queryType, urllib.quote(query), pagesize, pn, sn, viewMode,characterNormalization ,urllib.quote(highlightQuery)))
1.2 casties 58: #page=self.template.fulltextclient.eval("/mpdl/interface/doc-query.xql","document=%s&mode=%s&queryType=%s&query=%s&queryResultPageSize=%s&queryResultPN=%s&sn=%s&viewMode=%s&highlightQuery=%s"%(docpath, 'text', queryType, query, pagesize, pn, sn, viewMode,highlightQuery) ,outputUnicode=False)
59:
60: pagexml = data.replace('?document=%s'%str(docpath),'?url=%s'%url)
61: pagedom = Parse(pagexml)
62: if (queryType=="fulltext")or(queryType=="xpath")or(queryType=="xquery")or(queryType=="fulltextMorphLemma"):
63: pagedivs = pagedom.xpath("//div[@class='queryResultPage']")
64: if len(pagedivs)>0:
65: pagenode=pagedivs[0]
66: links=pagenode.xpath("//a")
67: for l in links:
68: hrefNode = l.getAttributeNodeNS(None, u"href")
69: if hrefNode:
70: href = hrefNode.nodeValue
71: if href.startswith('page-fragment.xql'):
72: selfurl = self.absolute_url()
1.30 abukhman 73: pagexml=href.replace('mode=text','mode=texttool&viewMode=%s&queryType=%s&query=%s&queryResultPageSize=%s&queryResultPN=%s&tocMode=%s&searchPN=%s&tocPN=%s'%(viewMode,queryType,urllib.quote(query),pagesize,pn,tocMode,pn,tocPN))
1.2 casties 74: hrefNode.nodeValue = pagexml.replace('page-fragment.xql','%s'%selfurl)
75: return serializeNode(pagenode)
76: if (queryType=="fulltextMorph"):
77: pagedivs = pagedom.xpath("//div[@class='queryResult']")
78: if len(pagedivs)>0:
79: pagenode=pagedivs[0]
80: links=pagenode.xpath("//a")
81: for l in links:
82: hrefNode = l.getAttributeNodeNS(None, u"href")
83: if hrefNode:
84: href = hrefNode.nodeValue
85: if href.startswith('page-fragment.xql'):
86: selfurl = self.absolute_url()
1.30 abukhman 87: pagexml=href.replace('mode=text','mode=texttool&viewMode=%s&queryType=%s&query=%s&queryResultPageSize=%s&queryResultPN=%s&tocMode=%s&searchPN=%s&tocPN=%s'%(viewMode,queryType,urllib.quote(query),pagesize,pn,tocMode,pn,tocPN))
1.2 casties 88: hrefNode.nodeValue = pagexml.replace('page-fragment.xql','%s'%selfurl)
89: if href.startswith('../lt/lemma.xql'):
90: hrefNode.nodeValue = href.replace('../lt/lemma.xql','%s/template/head_main_lemma_New'%(selfurl))
91: l.setAttributeNS(None, 'target', '_blank')
92: l.setAttributeNS(None, 'onClick',"popupWin = window.open(this.href, 'contacts', 'location,width=500,height=600,top=180, left=400, scrollbars=1'); return false;")
1.6 abukhman 93: l.setAttributeNS(None, 'onClick', 'popupWin.focus();')
1.2 casties 94: pagedivs = pagedom.xpath("//div[@class='queryResultMorphExpansion']")
95: return serializeNode(pagenode)
96: if (queryType=="ftIndex")or(queryType=="ftIndexMorph"):
97: pagedivs= pagedom.xpath("//div[@class='queryResultPage']")
98: if len(pagedivs)>0:
99: pagenode=pagedivs[0]
100: links=pagenode.xpath("//a")
101: for l in links:
102: hrefNode = l.getAttributeNodeNS(None, u"href")
103: if hrefNode:
104: href = hrefNode.nodeValue
1.18 abukhman 105: hrefNode.nodeValue=href.replace('mode=text','mode=texttool&viewMode=%s&tocMode=%s&tocPN=%s&pn=%s'%(viewMode,tocMode,tocPN,pn))
1.2 casties 106: if href.startswith('../lt/lex.xql'):
107: hrefNode.nodeValue = href.replace('../lt/lex.xql','%s/template/head_main_voc'%selfurl)
108: l.setAttributeNS(None, 'target', '_blank')
109: l.setAttributeNS(None, 'onClick',"popupWin = window.open(this.href, 'contacts', 'location,width=500,height=600,top=180, left=400, scrollbars=1'); return false;")
1.6 abukhman 110: l.setAttributeNS(None, 'onClick', 'popupWin.focus();')
1.2 casties 111: if href.startswith('../lt/lemma.xql'):
112: hrefNode.nodeValue = href.replace('../lt/lemma.xql','%s/template/head_main_lemma'%selfurl)
113: l.setAttributeNS(None, 'target', '_blank')
114: l.setAttributeNS(None, 'onClick',"popupWin = window.open(this.href, 'contacts', 'location,width=500,height=600,top=180, left=400, scrollbars=1'); return false;")
1.6 abukhman 115: l.setAttributeNS(None, 'onClick', 'popupWin.focus();')
1.2 casties 116: return serializeNode(pagenode)
117: return "no text here"
118:
1.58 abukhman 119: """def getNumPages(self, docinfo):
120: ""get list of pages from fulltext and put in docinfo""
1.2 casties 121: if 'numPages' in docinfo:
122: # already there
1.43 abukhman 123: return docinfo
1.2 casties 124: xquery = '//pb'
125: text = self.getServerData("xquery.xql","document=%s&xquery=%s"%(docinfo['textURLPath'],xquery))
126: docinfo['numPages'] = text.count("<pb ")
127: return docinfo
1.58 abukhman 128: """
1.43 abukhman 129: def getNumTextPages (self, docinfo):
130: """get list of pages from fulltext (texts without images) and put in docinfo"""
1.56 abukhman 131: if 'numPages' in docinfo:
1.43 abukhman 132: # allredy there
1.56 abukhman 133: return docinfo
134: xpath ='/count(//pb)'
135: text=self.getServerData("xpath.xql", "document=%s&xpath=%s"%(docinfo['textURLPath'], xpath))
136: dom = Parse(text)
137: result= dom.xpath("//result/resultPage")
138: docinfo['numPages']=int(getTextFromNode(result[0]))
1.43 abukhman 139: return docinfo
1.58 abukhman 140:
1.89 abukhman 141: def getGisPlaces(self, docinfo=None, pageinfo=None):
1.58 abukhman 142: """ Show all Gis Places of whole Page"""
1.100 abukhman 143: xpath='//place'
1.89 abukhman 144: docpath = docinfo['textURLPath']
145: url = docinfo['url']
146: selfurl = self.absolute_url()
1.93 abukhman 147: pn = pageinfo['current']
1.127 abukhman 148: hrefList=[]
1.142 abukhman 149: myList= ""
1.100 abukhman 150: text=self.getServerData("xpath.xql", "document=%s&xpath=%s&pn=%s"%(docinfo['textURLPath'],xpath,pn))
151: dom = Parse(text)
1.101 abukhman 152: result = dom.xpath("//result/resultPage/place")
1.72 abukhman 153: for l in result:
1.86 abukhman 154: hrefNode= l.getAttributeNodeNS(None, u"id")
1.108 abukhman 155: href= hrefNode.nodeValue
1.128 abukhman 156: hrefList.append(href)
1.145 abukhman 157: myList = ",".join(hrefList)
158: logging.debug("getGisPlaces :%s"%(myList))
1.143 abukhman 159: return myList
160:
161: def getAllGisPlaces (self, docinfo=None, pageinfo=None):
162: """Show all Gis Places of whole Book """
163: xpath ='//echo:place'
164: docpath =docinfo['textURLPath']
165: url = docinfo['url']
166: selfurl =self.absolute_url()
167: pn =pageinfo['current']
168: hrefList=[]
169: myList=""
170: text=self.getServerData("xpath.xql", "document=%s&xpath=%s"%(docinfo['textURLPath'],xpath))
171: dom =Parse(text)
172: result = dom.xpath("//result/resultPage/place")
173: for l in result:
174: hrefNode = l.getAttributeNodeNS(None, u"id")
175: href= hrefNode.nodeValue
176: hrefList.append(href)
1.136 abukhman 177: myList = ",".join(hrefList)
1.145 abukhman 178: logging.debug("getALLGisPlaces :%s"%(myList))
179: return myList
180:
1.183 abukhman 181: def getOrigPages (self, docinfo=None, pageinfo=None):
1.146 abukhman 182: """Show original page """
1.183 abukhman 183: docpath = docinfo['textURLPath']
1.181 abukhman 184: #url = docinfo['url']
1.146 abukhman 185: selfurl = self.absolute_url()
1.174 abukhman 186: pn =pageinfo['current']
1.161 abukhman 187:
1.174 abukhman 188: viewMode= pageinfo['viewMode']
189: text = self.getServerData("page-fragment.xql","document=%s&mode=%s&pn=%s"%(docinfo['textURLPath'], 'text', pn))
1.146 abukhman 190: dom =Parse(text)
191: pagedivs = dom.xpath("//div[@class='pageNumberOrig']")
1.184 abukhman 192: logging.debug("YYYYYYpagedivs :%s"%(pagedivs))
1.160 abukhman 193: if len(pagedivs)>0:
1.183 abukhman 194: originalPage= getTextFromNode(pagedivs[0])
1.181 abukhman 195: #return docinfo['originalPage']
1.179 abukhman 196: return originalPage
1.183 abukhman 197:
1.184 abukhman 198:
1.194 ! abukhman 199: def getTextPage(self, mode="text", pn=1, docinfo=None, pageinfo=None, viewMode=None, tocMode=None, tocPN=None, characterNormalization=""):
1.2 casties 200: """returns single page from fulltext"""
201: docpath = docinfo['textURLPath']
202: path = docinfo['textURLPath']
203: url = docinfo['url']
1.73 abukhman 204: name = docinfo['name']
1.2 casties 205: viewMode= pageinfo['viewMode']
1.187 abukhman 206: highlightQuery = pageinfo['highlightQuery']
1.2 casties 207: tocMode = pageinfo['tocMode']
1.193 abukhman 208: sn =pageinfo['sn']
1.20 abukhman 209: characterNormalization=pageinfo['characterNormalization']
1.2 casties 210: tocPN = pageinfo['tocPN']
211: selfurl = self.absolute_url()
212: if mode == "text_dict":
213: textmode = "textPollux"
214: else:
215: textmode = mode
1.194 ! abukhman 216: logging.debug("documentViewer highlightQuery: %s"%(highlightQuery))
1.193 abukhman 217: textParam = "document=%s&mode=%s&pn=%s&characterNormalization=%s"%(docpath,textmode,pn,characterNormalization)
1.190 abukhman 218: if highlightQuery is not None:
1.193 abukhman 219: textParam +="&highlightQuery=%s&sn=%s"%(urllib.quote(highlightQuery),sn)
220: #textParam = "document=%s&mode=%s&pn=%s&characterNormalization=%s&highlightQuery=%s&sn=%s"%(docpath,textmode,pn,characterNormalization, highlightQuery, sn)
1.190 abukhman 221: logging.debug("documentViewer highlightQuery: %s"%(highlightQuery))
1.38 abukhman 222: pagexml = self.getServerData("page-fragment.xql",textParam)
1.2 casties 223: #pagexml=self.template.fulltextclient.eval("/mpdl/interface/page-fragment.xql", textParam, outputUnicode=False)
224:
1.39 abukhman 225: pagedom = Parse(pagexml)
1.2 casties 226: # plain text mode
227: if mode == "text":
228: # first div contains text
229: pagedivs = pagedom.xpath("/div")
230: if len(pagedivs) > 0:
231: pagenode = pagedivs[0]
232: links = pagenode.xpath("//a")
233: for l in links:
234: hrefNode = l.getAttributeNodeNS(None, u"href")
235: if hrefNode:
236: href= hrefNode.nodeValue
237: if href.startswith('#note-'):
1.27 abukhman 238: hrefNode.nodeValue = href.replace('#note-',"?url=%s&viewMode=%s&tocMode=%s&tocPN=%s&pn=%s#note-"%(url,viewMode,tocMode,tocPN,pn))
1.2 casties 239: return serializeNode(pagenode)
240: if mode == "xml":
241: # first div contains text
242: pagedivs = pagedom.xpath("/div")
243: if len(pagedivs) > 0:
244: pagenode = pagedivs[0]
245: return serializeNode(pagenode)
1.7 abukhman 246: if mode == "gis":
247: # first div contains text
248: pagedivs = pagedom.xpath("/div")
249: if len(pagedivs) > 0:
250: pagenode = pagedivs[0]
1.28 abukhman 251: links =pagenode.xpath("//a")
252: for l in links:
253: hrefNode =l.getAttributeNodeNS(None, u"href")
254: if hrefNode:
255: href=hrefNode.nodeValue
256: if href.startswith('http://chinagis.mpiwg-berlin.mpg.de'):
1.75 abukhman 257: hrefNode.nodeValue =href.replace('chinagis_REST/REST/db/chgis/mpdl','chinagis/REST/db/mpdl/%s'%name)
1.62 abukhman 258: l.setAttributeNS(None, 'target', '_blank')
1.61 abukhman 259: return serializeNode(pagenode)
1.7 abukhman 260:
1.2 casties 261: if mode == "pureXml":
262: # first div contains text
263: pagedivs = pagedom.xpath("/div")
264: if len(pagedivs) > 0:
265: pagenode = pagedivs[0]
266: return serializeNode(pagenode)
267: # text-with-links mode
268: if mode == "text_dict":
269: # first div contains text
270: pagedivs = pagedom.xpath("/div")
271: if len(pagedivs) > 0:
272: pagenode = pagedivs[0]
273: # check all a-tags
274: links = pagenode.xpath("//a")
275: for l in links:
276: hrefNode = l.getAttributeNodeNS(None, u"href")
277: if hrefNode:
278: # is link with href
279: href = hrefNode.nodeValue
280: if href.startswith('lt/lex.xql'):
281: # is pollux link
282: selfurl = self.absolute_url()
283: # change href
284: hrefNode.nodeValue = href.replace('lt/lex.xql','%s/template/head_main_voc'%selfurl)
285: # add target
286: l.setAttributeNS(None, 'target', '_blank')
287: l.setAttributeNS(None, 'onClick',"popupWin = window.open(this.href, 'contacts', 'location,width=500,height=600,top=180, left=700, scrollbars=1'); return false;")
1.6 abukhman 288: l.setAttributeNS(None, 'onClick', 'popupWin.focus();')
1.2 casties 289: if href.startswith('lt/lemma.xql'):
290: selfurl = self.absolute_url()
291: hrefNode.nodeValue = href.replace('lt/lemma.xql','%s/template/head_main_lemma'%selfurl)
292: l.setAttributeNS(None, 'target', '_blank')
293: l.setAttributeNS(None, 'onClick',"popupWin = window.open(this.href, 'contacts', 'location,width=500,height=600,top=180, left=700, scrollbars=1'); return false;")
1.6 abukhman 294: l.setAttributeNS(None, 'onClick', 'popupWin.focus();')
1.2 casties 295: if href.startswith('#note-'):
1.19 abukhman 296: hrefNode.nodeValue = href.replace('#note-',"?url=%s&viewMode=%s&tocMode=%s&tocPN=%s&pn=%s#note-"%(url,viewMode,tocMode,tocPN,pn))
1.2 casties 297: return serializeNode(pagenode)
298: return "no text here"
299:
300: def getTranslate(self, query=None, language=None):
301: """translate into another languages"""
1.5 casties 302: data = self.getServerData("lt/lex.xql","document=&language="+str(language)+"&query="+urllib.quote(query))
1.2 casties 303: #pagexml=self.template.fulltextclient.eval("/mpdl/interface/lt/lex.xql","document=&language="+str(language)+"&query="+url_quote(str(query)))
304: return data
305:
306: def getLemma(self, lemma=None, language=None):
307: """simular words lemma """
1.5 casties 308: data = self.getServerData("lt/lemma.xql","document=&language="+str(language)+"&lemma="+urllib.quote(lemma))
1.2 casties 309: #pagexml=self.template.fulltextclient.eval("/mpdl/interface/lt/lemma.xql","document=&language="+str(language)+"&lemma="+url_quote(str(lemma)))
310: return data
311:
312: def getLemmaNew(self, query=None, language=None):
313: """simular words lemma """
1.5 casties 314: data = self.getServerData("lt/lemma.xql","document=&language="+str(language)+"&lemma="+urllib.quote(query))
1.2 casties 315: #pagexml=self.template.fulltextclient.eval("/mpdl/interface/lt/lemma.xql","document=&language="+str(language)+"&lemma="+url_quote(str(query)))
316: return data
1.28 abukhman 317:
1.2 casties 318: def getQuery (self, docinfo=None, pageinfo=None, query=None, queryType=None, pn=1):
319: """number of"""
320: docpath = docinfo['textURLPath']
321: pagesize = pageinfo['queryPageSize']
322: pn = pageinfo['searchPN']
1.34 abukhman 323: query =pageinfo['query']
1.2 casties 324: queryType =pageinfo['queryType']
325: tocSearch = 0
326: tocDiv = None
327:
1.32 abukhman 328: pagexml = self.getServerData("doc-query.xql","document=%s&mode=%s&queryType=%s&query=%s&queryResultPageSize=%s&queryResultPN=%s"%(docpath, 'text', queryType, urllib.quote(query), pagesize, pn))
1.2 casties 329: #pagexml=self.template.fulltextclient.eval("/mpdl/interface/doc-query.xql","document=%s&mode=%s&queryType=%s&query=%s&queryResultPageSize=%s&queryResultPN=%s"%(docpath, 'text', queryType, query, pagesize, pn) ,outputUnicode=False)
330: pagedom = Parse(pagexml)
331: numdivs = pagedom.xpath("//div[@class='queryResultHits']")
332: tocSearch = int(getTextFromNode(numdivs[0]))
333: tc=int((tocSearch/10)+1)
1.23 abukhman 334: logging.debug("documentViewer (gettoc) tc: %s"%(tc))
1.2 casties 335: return tc
336:
337: def getToc(self, mode="text", docinfo=None):
338: """loads table of contents and stores in docinfo"""
1.23 abukhman 339: logging.debug("documentViewer (gettoc) mode: %s"%(mode))
1.2 casties 340: if mode == "none":
341: return docinfo
342: if 'tocSize_%s'%mode in docinfo:
343: # cached toc
344: return docinfo
345:
346: docpath = docinfo['textURLPath']
347: # we need to set a result set size
348: pagesize = 1000
349: pn = 1
350: if mode == "text":
351: queryType = "toc"
352: else:
353: queryType = mode
354: # number of entries in toc
355: tocSize = 0
356: tocDiv = None
357:
358: pagexml = self.getServerData("doc-query.xql","document=%s&queryType=%s&queryResultPageSize=%s&queryResultPN=%s"%(docpath,queryType, pagesize, pn))
359: #pagexml=self.template.fulltextclient.eval("/mpdl/interface/doc-query.xql", "document=%s&queryType=%s&queryResultPageSize=%s&queryResultPN=%s"%(docpath,queryType,pagesize,pn), outputUnicode=False)
360: # post-processing downloaded xml
361: pagedom = Parse(pagexml)
362: # get number of entries
363: numdivs = pagedom.xpath("//div[@class='queryResultHits']")
364: if len(numdivs) > 0:
365: tocSize = int(getTextFromNode(numdivs[0]))
366: docinfo['tocSize_%s'%mode] = tocSize
367: return docinfo
368:
369: def getTocPage(self, mode="text", pn=1, pageinfo=None, docinfo=None):
370: """returns single page from the table of contents"""
371: # TODO: this should use the cached TOC
372: if mode == "text":
373: queryType = "toc"
374: else:
375: queryType = mode
376: docpath = docinfo['textURLPath']
377: path = docinfo['textURLPath']
378: pagesize = pageinfo['tocPageSize']
379: pn = pageinfo['tocPN']
380: url = docinfo['url']
381: selfurl = self.absolute_url()
382: viewMode= pageinfo['viewMode']
1.26 abukhman 383: characterNormalization = pageinfo ['characterNormalization']
1.2 casties 384: tocMode = pageinfo['tocMode']
385: tocPN = pageinfo['tocPN']
386:
1.23 abukhman 387: data = self.getServerData("doc-query.xql","document=%s&queryType=%s&queryResultPageSize=%s&queryResultPN=%s&characterNormalization=%s"%(docpath,queryType, pagesize, pn,characterNormalization))
388: page = data.replace('page-fragment.xql?document=%s'%str(path),'%s?url=%s&viewMode=%s&tocMode=%s&tocPN=%s'%(selfurl,url, viewMode, tocMode, tocPN))
1.2 casties 389: text = page.replace('mode=image','mode=texttool')
1.21 abukhman 390: logging.debug("documentViewer (characterNormalization) characterNormalization: %s"%(characterNormalization))
1.19 abukhman 391: #logging.debug("documentViewer (characterNormalization) text: %s"%(text))
1.2 casties 392: return text
393:
394: def manage_changeMpdlXmlTextServer(self,title="",serverUrl="http://mpdl-proto.mpiwg-berlin.mpg.de/mpdl/interface/",timeout=40,RESPONSE=None):
395: """change settings"""
396: self.title=title
397: self.timeout = timeout
398: self.serverUrl = serverUrl
399: if RESPONSE is not None:
400: RESPONSE.redirect('manage_main')
401:
402: # management methods
403: def manage_addMpdlXmlTextServerForm(self):
404: """Form for adding"""
405: pt = PageTemplateFile("zpt/manage_addMpdlXmlTextServer", globals()).__of__(self)
406: return pt()
407:
408: def manage_addMpdlXmlTextServer(self,id,title="",serverUrl="http://mpdl-proto.mpiwg-berlin.mpg.de/mpdl/interface/",timeout=40,RESPONSE=None):
409: """add zogiimage"""
410: newObj = MpdlXmlTextServer(id,title,serverUrl,timeout)
411: self.Destination()._setObject(id, newObj)
412: if RESPONSE is not None:
413: RESPONSE.redirect('manage_main')
414:
415:
1.4 casties 416:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>