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 |
---|
8 | import urllib |
---|
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 | |
---|
22 | def __init__(self,id,title="",serverUrl="http://mpdl-proto.mpiwg-berlin.mpg.de/mpdl/interface/", serverName=None, timeout=40): |
---|
23 | """constructor""" |
---|
24 | self.id=id |
---|
25 | self.title=title |
---|
26 | self.timeout = timeout |
---|
27 | if serverName is None: |
---|
28 | self.serverUrl = serverUrl |
---|
29 | else: |
---|
30 | self.serverUrl = "http://%s/mpdl/interface/"%serverName |
---|
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 | |
---|
41 | def getSearch(self, pn=1, pageinfo=None, docinfo=None, query=None, queryType=None, lemma=None): |
---|
42 | """get search list""" |
---|
43 | docpath = docinfo['textURLPath'] |
---|
44 | url = docinfo['url'] |
---|
45 | logging.debug("documentViewer (gettoc) docpath: %s"%(docpath)) |
---|
46 | logging.debug("documentViewer (gettoc) url: %s"%(url)) |
---|
47 | pagesize = pageinfo['queryPageSize'] |
---|
48 | pn = pageinfo['searchPN'] |
---|
49 | sn = pageinfo['sn'] |
---|
50 | highlightQuery = pageinfo['highlightQuery'] |
---|
51 | query =pageinfo['query'] |
---|
52 | queryType =pageinfo['queryType'] |
---|
53 | viewMode= pageinfo['viewMode'] |
---|
54 | tocMode = pageinfo['tocMode'] |
---|
55 | characterNormalization = pageinfo['characterNormalization'] |
---|
56 | tocPN = pageinfo['tocPN'] |
---|
57 | selfurl = self.absolute_url() |
---|
58 | |
---|
59 | data = self.getServerData("doc-query.xql","document=%s&mode=%s&queryType=%s&query=%s&queryResultPageSize=%s&queryResultPN=%s&sn=%s&viewMode=%s&highlightQuery=%s"%(docpath, 'text', queryType, urllib.quote(query), pagesize, pn, sn, viewMode,urllib.quote(highlightQuery))) |
---|
60 | #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) |
---|
61 | |
---|
62 | pagexml = data.replace('?document=%s'%str(docpath),'?url=%s'%url) |
---|
63 | pagedom = Parse(pagexml) |
---|
64 | if (queryType=="fulltext")or(queryType=="xpath")or(queryType=="xquery")or(queryType=="fulltextMorphLemma"): |
---|
65 | pagedivs = pagedom.xpath("//div[@class='queryResultPage']") |
---|
66 | if len(pagedivs)>0: |
---|
67 | pagenode=pagedivs[0] |
---|
68 | links=pagenode.xpath("//a") |
---|
69 | for l in links: |
---|
70 | hrefNode = l.getAttributeNodeNS(None, u"href") |
---|
71 | if hrefNode: |
---|
72 | href = hrefNode.nodeValue |
---|
73 | if href.startswith('page-fragment.xql'): |
---|
74 | selfurl = self.absolute_url() |
---|
75 | 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)) |
---|
76 | hrefNode.nodeValue = pagexml.replace('page-fragment.xql','%s'%selfurl) |
---|
77 | return serializeNode(pagenode) |
---|
78 | if (queryType=="fulltextMorph"): |
---|
79 | pagedivs = pagedom.xpath("//div[@class='queryResult']") |
---|
80 | if len(pagedivs)>0: |
---|
81 | pagenode=pagedivs[0] |
---|
82 | links=pagenode.xpath("//a") |
---|
83 | for l in links: |
---|
84 | hrefNode = l.getAttributeNodeNS(None, u"href") |
---|
85 | if hrefNode: |
---|
86 | href = hrefNode.nodeValue |
---|
87 | if href.startswith('page-fragment.xql'): |
---|
88 | selfurl = self.absolute_url() |
---|
89 | 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)) |
---|
90 | hrefNode.nodeValue = pagexml.replace('page-fragment.xql','%s'%selfurl) |
---|
91 | if href.startswith('../lt/lemma.xql'): |
---|
92 | hrefNode.nodeValue = href.replace('../lt/lemma.xql','%s/template/head_main_lemma_New'%(selfurl)) |
---|
93 | l.setAttributeNS(None, 'target', '_blank') |
---|
94 | l.setAttributeNS(None, 'onClick',"popupWin = window.open(this.href, 'contacts', 'location,width=500,height=600,top=180, left=400, scrollbars=1'); return false;") |
---|
95 | l.setAttributeNS(None, 'onClick', 'popupWin.focus();') |
---|
96 | pagedivs = pagedom.xpath("//div[@class='queryResultMorphExpansion']") |
---|
97 | return serializeNode(pagenode) |
---|
98 | if (queryType=="ftIndex")or(queryType=="ftIndexMorph"): |
---|
99 | pagedivs= pagedom.xpath("//div[@class='queryResultPage']") |
---|
100 | if len(pagedivs)>0: |
---|
101 | pagenode=pagedivs[0] |
---|
102 | links=pagenode.xpath("//a") |
---|
103 | for l in links: |
---|
104 | hrefNode = l.getAttributeNodeNS(None, u"href") |
---|
105 | if hrefNode: |
---|
106 | href = hrefNode.nodeValue |
---|
107 | hrefNode.nodeValue=href.replace('mode=text','mode=texttool&viewMode=%s&tocMode=%s&tocPN=%s&pn=%s'%(viewMode,tocMode,tocPN,pn)) |
---|
108 | if href.startswith('../lt/lex.xql'): |
---|
109 | hrefNode.nodeValue = href.replace('../lt/lex.xql','%s/template/head_main_voc'%selfurl) |
---|
110 | l.setAttributeNS(None, 'target', '_blank') |
---|
111 | l.setAttributeNS(None, 'onClick',"popupWin = window.open(this.href, 'contacts', 'location,width=500,height=600,top=180, left=400, scrollbars=1'); return false;") |
---|
112 | l.setAttributeNS(None, 'onClick', 'popupWin.focus();') |
---|
113 | if href.startswith('../lt/lemma.xql'): |
---|
114 | hrefNode.nodeValue = href.replace('../lt/lemma.xql','%s/template/head_main_lemma'%selfurl) |
---|
115 | l.setAttributeNS(None, 'target', '_blank') |
---|
116 | l.setAttributeNS(None, 'onClick',"popupWin = window.open(this.href, 'contacts', 'location,width=500,height=600,top=180, left=400, scrollbars=1'); return false;") |
---|
117 | l.setAttributeNS(None, 'onClick', 'popupWin.focus();') |
---|
118 | return serializeNode(pagenode) |
---|
119 | return "no text here" |
---|
120 | |
---|
121 | """def getNumPages(self, docinfo): |
---|
122 | ""get list of pages from fulltext and put in docinfo"" |
---|
123 | if 'numPages' in docinfo: |
---|
124 | # already there |
---|
125 | return docinfo |
---|
126 | xquery = '//pb' |
---|
127 | text = self.getServerData("xquery.xql","document=%s&xquery=%s"%(docinfo['textURLPath'],xquery)) |
---|
128 | docinfo['numPages'] = text.count("<pb ") |
---|
129 | return docinfo |
---|
130 | """ |
---|
131 | def getNumTextPages (self, docinfo): |
---|
132 | """get list of pages from fulltext (texts without images) and put in docinfo""" |
---|
133 | if 'numPages' in docinfo: |
---|
134 | # allredy there |
---|
135 | return docinfo |
---|
136 | xpath ='/count(//pb)' |
---|
137 | text=self.getServerData("xpath.xql", "document=%s&xpath=%s"%(docinfo['textURLPath'], xpath)) |
---|
138 | dom = Parse(text) |
---|
139 | result= dom.xpath("//result/resultPage") |
---|
140 | docinfo['numPages']=int(getTextFromNode(result[0])) |
---|
141 | return docinfo |
---|
142 | |
---|
143 | def getGisPlaces(self, docinfo=None, pageinfo=None): |
---|
144 | """ Show all Gis Places of whole Page""" |
---|
145 | xpath='//place' |
---|
146 | docpath = docinfo['textURLPath'] |
---|
147 | url = docinfo['url'] |
---|
148 | selfurl = self.absolute_url() |
---|
149 | pn = pageinfo['current'] |
---|
150 | hrefList=[] |
---|
151 | |
---|
152 | text=self.getServerData("xpath.xql", "document=%s&xpath=%s&pn=%s"%(docinfo['textURLPath'],xpath,pn)) |
---|
153 | dom = Parse(text) |
---|
154 | result = dom.xpath("//result/resultPage/place") |
---|
155 | for l in result: |
---|
156 | hrefNode= l.getAttributeNodeNS(None, u"id") |
---|
157 | href= hrefNode.nodeValue |
---|
158 | hrefList.append(href) |
---|
159 | hoho= hrefList.remove("''") |
---|
160 | logging.debug("getGisPlaces :%s"%(hoho)) |
---|
161 | |
---|
162 | |
---|
163 | return hrefList |
---|
164 | |
---|
165 | def getTextPage(self, mode="text", pn=1, docinfo=None, pageinfo=None, highlightQuery=None,sn=None, viewMode=None, tocMode=None, tocPN=None, characterNormalization=""): |
---|
166 | """returns single page from fulltext""" |
---|
167 | docpath = docinfo['textURLPath'] |
---|
168 | path = docinfo['textURLPath'] |
---|
169 | url = docinfo['url'] |
---|
170 | name = docinfo['name'] |
---|
171 | viewMode= pageinfo['viewMode'] |
---|
172 | tocMode = pageinfo['tocMode'] |
---|
173 | characterNormalization=pageinfo['characterNormalization'] |
---|
174 | tocPN = pageinfo['tocPN'] |
---|
175 | selfurl = self.absolute_url() |
---|
176 | if mode == "text_dict": |
---|
177 | textmode = "textPollux" |
---|
178 | else: |
---|
179 | textmode = mode |
---|
180 | #logging.debug("documentViewer (characterNormalization) characterNormalization: %s"%(characterNormalization)) |
---|
181 | textParam = "document=%s&mode=%s&pn=%s&characterNormalization=%s"%(docpath,textmode,pn,characterNormalization) |
---|
182 | if highlightQuery is not None: |
---|
183 | textParam +="&highlightQuery=%s&sn=%s"%(urllib.quote(highlightQuery),sn) |
---|
184 | |
---|
185 | pagexml = self.getServerData("page-fragment.xql",textParam) |
---|
186 | #pagexml=self.template.fulltextclient.eval("/mpdl/interface/page-fragment.xql", textParam, outputUnicode=False) |
---|
187 | |
---|
188 | pagedom = Parse(pagexml) |
---|
189 | # plain text mode |
---|
190 | if mode == "text": |
---|
191 | # first div contains text |
---|
192 | pagedivs = pagedom.xpath("/div") |
---|
193 | if len(pagedivs) > 0: |
---|
194 | pagenode = pagedivs[0] |
---|
195 | links = pagenode.xpath("//a") |
---|
196 | for l in links: |
---|
197 | hrefNode = l.getAttributeNodeNS(None, u"href") |
---|
198 | if hrefNode: |
---|
199 | href= hrefNode.nodeValue |
---|
200 | if href.startswith('#note-'): |
---|
201 | hrefNode.nodeValue = href.replace('#note-',"?url=%s&viewMode=%s&tocMode=%s&tocPN=%s&pn=%s#note-"%(url,viewMode,tocMode,tocPN,pn)) |
---|
202 | return serializeNode(pagenode) |
---|
203 | if mode == "xml": |
---|
204 | # first div contains text |
---|
205 | pagedivs = pagedom.xpath("/div") |
---|
206 | if len(pagedivs) > 0: |
---|
207 | pagenode = pagedivs[0] |
---|
208 | return serializeNode(pagenode) |
---|
209 | if mode == "gis": |
---|
210 | # first div contains text |
---|
211 | pagedivs = pagedom.xpath("/div") |
---|
212 | if len(pagedivs) > 0: |
---|
213 | pagenode = pagedivs[0] |
---|
214 | links =pagenode.xpath("//a") |
---|
215 | for l in links: |
---|
216 | hrefNode =l.getAttributeNodeNS(None, u"href") |
---|
217 | if hrefNode: |
---|
218 | href=hrefNode.nodeValue |
---|
219 | if href.startswith('http://chinagis.mpiwg-berlin.mpg.de'): |
---|
220 | hrefNode.nodeValue =href.replace('chinagis_REST/REST/db/chgis/mpdl','chinagis/REST/db/mpdl/%s'%name) |
---|
221 | l.setAttributeNS(None, 'target', '_blank') |
---|
222 | return serializeNode(pagenode) |
---|
223 | |
---|
224 | if mode == "pureXml": |
---|
225 | # first div contains text |
---|
226 | pagedivs = pagedom.xpath("/div") |
---|
227 | if len(pagedivs) > 0: |
---|
228 | pagenode = pagedivs[0] |
---|
229 | return serializeNode(pagenode) |
---|
230 | # text-with-links mode |
---|
231 | if mode == "text_dict": |
---|
232 | # first div contains text |
---|
233 | pagedivs = pagedom.xpath("/div") |
---|
234 | if len(pagedivs) > 0: |
---|
235 | pagenode = pagedivs[0] |
---|
236 | # check all a-tags |
---|
237 | links = pagenode.xpath("//a") |
---|
238 | for l in links: |
---|
239 | hrefNode = l.getAttributeNodeNS(None, u"href") |
---|
240 | if hrefNode: |
---|
241 | # is link with href |
---|
242 | href = hrefNode.nodeValue |
---|
243 | if href.startswith('lt/lex.xql'): |
---|
244 | # is pollux link |
---|
245 | selfurl = self.absolute_url() |
---|
246 | # change href |
---|
247 | hrefNode.nodeValue = href.replace('lt/lex.xql','%s/template/head_main_voc'%selfurl) |
---|
248 | # add target |
---|
249 | l.setAttributeNS(None, 'target', '_blank') |
---|
250 | l.setAttributeNS(None, 'onClick',"popupWin = window.open(this.href, 'contacts', 'location,width=500,height=600,top=180, left=700, scrollbars=1'); return false;") |
---|
251 | l.setAttributeNS(None, 'onClick', 'popupWin.focus();') |
---|
252 | if href.startswith('lt/lemma.xql'): |
---|
253 | selfurl = self.absolute_url() |
---|
254 | hrefNode.nodeValue = href.replace('lt/lemma.xql','%s/template/head_main_lemma'%selfurl) |
---|
255 | l.setAttributeNS(None, 'target', '_blank') |
---|
256 | l.setAttributeNS(None, 'onClick',"popupWin = window.open(this.href, 'contacts', 'location,width=500,height=600,top=180, left=700, scrollbars=1'); return false;") |
---|
257 | l.setAttributeNS(None, 'onClick', 'popupWin.focus();') |
---|
258 | if href.startswith('#note-'): |
---|
259 | hrefNode.nodeValue = href.replace('#note-',"?url=%s&viewMode=%s&tocMode=%s&tocPN=%s&pn=%s#note-"%(url,viewMode,tocMode,tocPN,pn)) |
---|
260 | return serializeNode(pagenode) |
---|
261 | return "no text here" |
---|
262 | |
---|
263 | def getTranslate(self, query=None, language=None): |
---|
264 | """translate into another languages""" |
---|
265 | data = self.getServerData("lt/lex.xql","document=&language="+str(language)+"&query="+urllib.quote(query)) |
---|
266 | #pagexml=self.template.fulltextclient.eval("/mpdl/interface/lt/lex.xql","document=&language="+str(language)+"&query="+url_quote(str(query))) |
---|
267 | return data |
---|
268 | |
---|
269 | def getLemma(self, lemma=None, language=None): |
---|
270 | """simular words lemma """ |
---|
271 | data = self.getServerData("lt/lemma.xql","document=&language="+str(language)+"&lemma="+urllib.quote(lemma)) |
---|
272 | #pagexml=self.template.fulltextclient.eval("/mpdl/interface/lt/lemma.xql","document=&language="+str(language)+"&lemma="+url_quote(str(lemma))) |
---|
273 | return data |
---|
274 | |
---|
275 | def getLemmaNew(self, query=None, language=None): |
---|
276 | """simular words lemma """ |
---|
277 | data = self.getServerData("lt/lemma.xql","document=&language="+str(language)+"&lemma="+urllib.quote(query)) |
---|
278 | #pagexml=self.template.fulltextclient.eval("/mpdl/interface/lt/lemma.xql","document=&language="+str(language)+"&lemma="+url_quote(str(query))) |
---|
279 | return data |
---|
280 | |
---|
281 | def getQuery (self, docinfo=None, pageinfo=None, query=None, queryType=None, pn=1): |
---|
282 | """number of""" |
---|
283 | docpath = docinfo['textURLPath'] |
---|
284 | pagesize = pageinfo['queryPageSize'] |
---|
285 | pn = pageinfo['searchPN'] |
---|
286 | query =pageinfo['query'] |
---|
287 | queryType =pageinfo['queryType'] |
---|
288 | tocSearch = 0 |
---|
289 | tocDiv = None |
---|
290 | |
---|
291 | 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)) |
---|
292 | #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) |
---|
293 | pagedom = Parse(pagexml) |
---|
294 | numdivs = pagedom.xpath("//div[@class='queryResultHits']") |
---|
295 | tocSearch = int(getTextFromNode(numdivs[0])) |
---|
296 | tc=int((tocSearch/10)+1) |
---|
297 | logging.debug("documentViewer (gettoc) tc: %s"%(tc)) |
---|
298 | return tc |
---|
299 | |
---|
300 | def getToc(self, mode="text", docinfo=None): |
---|
301 | """loads table of contents and stores in docinfo""" |
---|
302 | logging.debug("documentViewer (gettoc) mode: %s"%(mode)) |
---|
303 | if mode == "none": |
---|
304 | return docinfo |
---|
305 | if 'tocSize_%s'%mode in docinfo: |
---|
306 | # cached toc |
---|
307 | return docinfo |
---|
308 | |
---|
309 | docpath = docinfo['textURLPath'] |
---|
310 | # we need to set a result set size |
---|
311 | pagesize = 1000 |
---|
312 | pn = 1 |
---|
313 | if mode == "text": |
---|
314 | queryType = "toc" |
---|
315 | else: |
---|
316 | queryType = mode |
---|
317 | # number of entries in toc |
---|
318 | tocSize = 0 |
---|
319 | tocDiv = None |
---|
320 | |
---|
321 | pagexml = self.getServerData("doc-query.xql","document=%s&queryType=%s&queryResultPageSize=%s&queryResultPN=%s"%(docpath,queryType, pagesize, pn)) |
---|
322 | #pagexml=self.template.fulltextclient.eval("/mpdl/interface/doc-query.xql", "document=%s&queryType=%s&queryResultPageSize=%s&queryResultPN=%s"%(docpath,queryType,pagesize,pn), outputUnicode=False) |
---|
323 | # post-processing downloaded xml |
---|
324 | pagedom = Parse(pagexml) |
---|
325 | # get number of entries |
---|
326 | numdivs = pagedom.xpath("//div[@class='queryResultHits']") |
---|
327 | if len(numdivs) > 0: |
---|
328 | tocSize = int(getTextFromNode(numdivs[0])) |
---|
329 | docinfo['tocSize_%s'%mode] = tocSize |
---|
330 | return docinfo |
---|
331 | |
---|
332 | def getTocPage(self, mode="text", pn=1, pageinfo=None, docinfo=None): |
---|
333 | """returns single page from the table of contents""" |
---|
334 | # TODO: this should use the cached TOC |
---|
335 | if mode == "text": |
---|
336 | queryType = "toc" |
---|
337 | else: |
---|
338 | queryType = mode |
---|
339 | docpath = docinfo['textURLPath'] |
---|
340 | path = docinfo['textURLPath'] |
---|
341 | pagesize = pageinfo['tocPageSize'] |
---|
342 | pn = pageinfo['tocPN'] |
---|
343 | url = docinfo['url'] |
---|
344 | selfurl = self.absolute_url() |
---|
345 | viewMode= pageinfo['viewMode'] |
---|
346 | characterNormalization = pageinfo ['characterNormalization'] |
---|
347 | tocMode = pageinfo['tocMode'] |
---|
348 | tocPN = pageinfo['tocPN'] |
---|
349 | |
---|
350 | data = self.getServerData("doc-query.xql","document=%s&queryType=%s&queryResultPageSize=%s&queryResultPN=%s&characterNormalization=%s"%(docpath,queryType, pagesize, pn,characterNormalization)) |
---|
351 | page = data.replace('page-fragment.xql?document=%s'%str(path),'%s?url=%s&viewMode=%s&tocMode=%s&tocPN=%s'%(selfurl,url, viewMode, tocMode, tocPN)) |
---|
352 | text = page.replace('mode=image','mode=texttool') |
---|
353 | logging.debug("documentViewer (characterNormalization) characterNormalization: %s"%(characterNormalization)) |
---|
354 | #logging.debug("documentViewer (characterNormalization) text: %s"%(text)) |
---|
355 | return text |
---|
356 | |
---|
357 | def manage_changeMpdlXmlTextServer(self,title="",serverUrl="http://mpdl-proto.mpiwg-berlin.mpg.de/mpdl/interface/",timeout=40,RESPONSE=None): |
---|
358 | """change settings""" |
---|
359 | self.title=title |
---|
360 | self.timeout = timeout |
---|
361 | self.serverUrl = serverUrl |
---|
362 | if RESPONSE is not None: |
---|
363 | RESPONSE.redirect('manage_main') |
---|
364 | |
---|
365 | # management methods |
---|
366 | def manage_addMpdlXmlTextServerForm(self): |
---|
367 | """Form for adding""" |
---|
368 | pt = PageTemplateFile("zpt/manage_addMpdlXmlTextServer", globals()).__of__(self) |
---|
369 | return pt() |
---|
370 | |
---|
371 | def manage_addMpdlXmlTextServer(self,id,title="",serverUrl="http://mpdl-proto.mpiwg-berlin.mpg.de/mpdl/interface/",timeout=40,RESPONSE=None): |
---|
372 | """add zogiimage""" |
---|
373 | newObj = MpdlXmlTextServer(id,title,serverUrl,timeout) |
---|
374 | self.Destination()._setObject(id, newObj) |
---|
375 | if RESPONSE is not None: |
---|
376 | RESPONSE.redirect('manage_main') |
---|
377 | |
---|
378 | |
---|
379 | |
---|