Mercurial > hg > documentViewer
annotate documentViewer.py @ 330:c81509acead9
*** empty log message ***
| author | abukhman |
|---|---|
| date | Mon, 18 Oct 2010 11:32:22 +0200 |
| parents | 1c4e63d22283 |
| children | 6cde7f02786e |
| rev | line source |
|---|---|
| 46 | 1 |
| 0 | 2 from OFS.Folder import Folder |
| 3 from Products.PageTemplates.ZopePageTemplate import ZopePageTemplate | |
| 52 | 4 from Products.PageTemplates.PageTemplateFile import PageTemplateFile |
| 0 | 5 from AccessControl import ClassSecurityInfo |
| 32 | 6 from AccessControl import getSecurityManager |
| 0 | 7 from Globals import package_home |
| 235 | 8 from Products.zogiLib.zogiLib import browserCheck |
| 0 | 9 |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
10 from Ft.Xml import EMPTY_NAMESPACE, Parse |
| 134 | 11 import Ft.Xml.Domlette |
| 0 | 12 import os.path |
| 31 | 13 import sys |
| 0 | 14 import urllib |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
15 import urllib2 |
|
50
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
16 import logging |
| 61 | 17 import math |
| 46 | 18 import urlparse |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
19 import cStringIO |
| 174 | 20 import re |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
21 |
| 231 | 22 |
| 52 | 23 def logger(txt,method,txt2): |
| 24 """logging""" | |
| 25 logging.info(txt+ txt2) | |
| 26 | |
| 27 | |
| 25 | 28 def getInt(number, default=0): |
| 29 """returns always an int (0 in case of problems)""" | |
| 30 try: | |
| 31 return int(number) | |
| 32 except: | |
| 62 | 33 return int(default) |
| 25 | 34 |
| 0 | 35 def getTextFromNode(nodename): |
| 46 | 36 """get the cdata content of a node""" |
| 32 | 37 if nodename is None: |
| 38 return "" | |
| 0 | 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 | |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
46 def serializeNode(node, encoding='utf-8'): |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
47 """returns a string containing node as XML""" |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
48 buf = cStringIO.StringIO() |
| 136 | 49 Ft.Xml.Domlette.Print(node, stream=buf, encoding=encoding) |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
50 s = buf.getvalue() |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
51 buf.close() |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
52 return s |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
53 |
| 234 | 54 def getBrowserType(self): |
| 55 """get browser type object""" | |
| 56 if self.REQUEST.SESSION.has_key('browserType'): | |
| 57 return self.REQUEST.SESSION['browserType'] | |
| 58 else: | |
| 59 bt = browserCheck(self) | |
| 60 self.REQUEST.SESSION.set('browserType', bt) | |
| 61 logging.debug("documentViewer (BROWSER TYPE) bt %s"%bt) | |
| 62 return bt | |
| 63 | |
| 64 | |
| 35 | 65 def getParentDir(path): |
| 66 """returns pathname shortened by one""" | |
| 67 return '/'.join(path.split('/')[0:-1]) | |
| 68 | |
| 69 | |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
70 def getHttpData(url, data=None, num_tries=3, timeout=10): |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
71 """returns result from url+data HTTP request""" |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
72 # we do GET (by appending data to url) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
73 if isinstance(data, str) or isinstance(data, unicode): |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
74 # if data is string then append |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
75 url = "%s?%s"%(url,data) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
76 elif isinstance(data, dict) or isinstance(data, list) or isinstance(data, tuple): |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
77 # urlencode |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
78 url = "%s?%s"%(url,urllib.urlencode(data)) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
79 |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
80 response = None |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
81 errmsg = None |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
82 for cnt in range(num_tries): |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
83 try: |
| 167 | 84 logging.debug("getHttpData(#%s %ss) url=%s"%(cnt+1,timeout,url)) |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
85 if sys.version_info < (2, 6): |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
86 # set timeout on socket -- ugly :-( |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
87 import socket |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
88 socket.setdefaulttimeout(float(timeout)) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
89 response = urllib2.urlopen(url) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
90 else: |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
91 response = urllib2.urlopen(url,timeout=float(timeout)) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
92 # check result? |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
93 break |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
94 except urllib2.HTTPError, e: |
| 167 | 95 logging.error("getHttpData: HTTP error(%s): %s"%(e.code,e)) |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
96 errmsg = str(e) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
97 # stop trying |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
98 break |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
99 except urllib2.URLError, e: |
| 167 | 100 logging.error("getHttpData: URLLIB error(%s): %s"%(e.reason,e)) |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
101 errmsg = str(e) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
102 # stop trying |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
103 #break |
| 0 | 104 |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
105 if response is not None: |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
106 data = response.read() |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
107 response.close() |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
108 return data |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
109 |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
110 raise IOError("ERROR fetching HTTP data from %s: %s"%(url,errmsg)) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
111 #return None |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
112 |
| 0 | 113 |
| 114 | |
| 22 | 115 ## |
| 116 ## documentViewer class | |
| 117 ## | |
| 118 class documentViewer(Folder): | |
| 0 | 119 """document viewer""" |
| 120 meta_type="Document viewer" | |
| 121 | |
| 122 security=ClassSecurityInfo() | |
| 22 | 123 manage_options=Folder.manage_options+( |
| 0 | 124 {'label':'main config','action':'changeDocumentViewerForm'}, |
| 125 ) | |
| 126 | |
| 22 | 127 # templates and forms |
| 128 viewer_main = PageTemplateFile('zpt/viewer_main', globals()) | |
|
90
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
129 toc_thumbs = PageTemplateFile('zpt/toc_thumbs', globals()) |
|
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
130 toc_text = PageTemplateFile('zpt/toc_text', globals()) |
|
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
131 toc_figures = PageTemplateFile('zpt/toc_figures', globals()) |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
132 page_main_images = PageTemplateFile('zpt/page_main_images', globals()) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
133 page_main_text = PageTemplateFile('zpt/page_main_text', globals()) |
|
90
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
134 page_main_text_dict = PageTemplateFile('zpt/page_main_text_dict', globals()) |
| 140 | 135 page_main_gis =PageTemplateFile ('zpt/page_main_gis', globals()) |
| 99 | 136 page_main_xml = PageTemplateFile('zpt/page_main_xml', globals()) |
| 22 | 137 head_main = PageTemplateFile('zpt/head_main', globals()) |
| 138 docuviewer_css = PageTemplateFile('css/docuviewer.css', globals()) | |
| 57 | 139 info_xml = PageTemplateFile('zpt/info_xml', globals()) |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
140 |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
141 |
| 68 | 142 thumbs_main_rss = PageTemplateFile('zpt/thumbs_main_rss', globals()) |
| 22 | 143 security.declareProtected('View management screens','changeDocumentViewerForm') |
| 144 changeDocumentViewerForm = PageTemplateFile('zpt/changeDocumentViewer', globals()) | |
| 145 | |
| 0 | 146 |
| 95 | 147 def __init__(self,id,imageScalerUrl=None,textServerName=None,title="",digilibBaseUrl=None,thumbcols=2,thumbrows=5,authgroups="mpiwg"): |
| 0 | 148 """init document viewer""" |
| 149 self.id=id | |
| 150 self.title=title | |
| 25 | 151 self.thumbcols = thumbcols |
| 152 self.thumbrows = thumbrows | |
| 32 | 153 # authgroups is list of authorized groups (delimited by ,) |
| 154 self.authgroups = [s.strip().lower() for s in authgroups.split(',')] | |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
155 # create template folder so we can always use template.something |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
156 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
157 templateFolder = Folder('template') |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
158 #self['template'] = templateFolder # Zope-2.12 style |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
159 self._setObject('template',templateFolder) # old style |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
160 try: |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
161 import MpdlXmlTextServer |
| 132 | 162 textServer = MpdlXmlTextServer.MpdlXmlTextServer(id='fulltextclient',serverName=textServerName) |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
163 #templateFolder['fulltextclient'] = xmlRpcClient |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
164 templateFolder._setObject('fulltextclient',textServer) |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
165 except Exception, e: |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
166 logging.error("Unable to create MpdlXmlTextServer for fulltextclient: "+str(e)) |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
167 try: |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
168 from Products.zogiLib.zogiLib import zogiLib |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
169 zogilib = zogiLib(id="zogilib", title="zogilib for docuviewer", dlServerURL=imageScalerUrl, layout="book") |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
170 #templateFolder['zogilib'] = zogilib |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
171 templateFolder._setObject('zogilib',zogilib) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
172 except Exception, e: |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
173 logging.error("Unable to create zogiLib for zogilib: "+str(e)) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
174 |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
175 |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
176 # proxy text server methods to fulltextclient |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
177 def getTextPage(self, **args): |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
178 """get page""" |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
179 return self.template.fulltextclient.getTextPage(**args) |
| 22 | 180 |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
181 def getQuery(self, **args): |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
182 """get query""" |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
183 return self.template.fulltextclient.getQuery(**args) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
184 |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
185 def getSearch(self, **args): |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
186 """get search""" |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
187 return self.template.fulltextclient.getSearch(**args) |
| 256 | 188 |
| 189 def getGisPlaces(self, **args): | |
| 307 | 190 """get gis places""" |
| 256 | 191 return self.template.fulltextclient.getGisPlaces(**args) |
| 307 | 192 |
| 193 def getAllGisPlaces(self, **args): | |
| 310 | 194 """get all gis places """ |
| 195 return self.template.fulltextclient.getAllGisPlaces(**args) | |
| 196 | |
| 197 def getOrigPages(self, **args): | |
| 198 """get original page number """ | |
| 199 return self.template.fulltextclient.getOrigPages(**args) | |
| 200 | |
| 133 | 201 def getNumPages(self, docinfo): |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
202 """get numpages""" |
| 133 | 203 return self.template.fulltextclient.getNumPages(docinfo) |
| 191 | 204 |
| 205 def getNumTextPages(self, docinfo): | |
| 206 """get numpages text""" | |
| 207 return self.template.fulltextclient.getNumTextPages(docinfo) | |
| 208 | |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
209 def getTranslate(self, **args): |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
210 """get translate""" |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
211 return self.template.fulltextclient.getTranslate(**args) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
212 |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
213 def getLemma(self, **args): |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
214 """get lemma""" |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
215 return self.template.fulltextclient.getLemma(**args) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
216 |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
217 def getToc(self, **args): |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
218 """get toc""" |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
219 return self.template.fulltextclient.getToc(**args) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
220 |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
221 def getTocPage(self, **args): |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
222 """get tocpage""" |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
223 return self.template.fulltextclient.getTocPage(**args) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
224 |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
225 |
| 68 | 226 security.declareProtected('View','thumbs_rss') |
| 227 def thumbs_rss(self,mode,url,viewMode="auto",start=None,pn=1): | |
| 228 ''' | |
| 229 view it | |
| 230 @param mode: defines how to access the document behind url | |
| 231 @param url: url which contains display information | |
| 232 @param viewMode: if images display images, if text display text, default is images (text,images or auto) | |
| 233 | |
| 234 ''' | |
| 167 | 235 logging.debug("HHHHHHHHHHHHHH:load the rss") |
| 236 logger("documentViewer (index)", logging.INFO, "mode: %s url:%s start:%s pn:%s"%(mode,url,start,pn)) | |
| 68 | 237 |
| 238 if not hasattr(self, 'template'): | |
| 239 # create template folder if it doesn't exist | |
| 240 self.manage_addFolder('template') | |
| 241 | |
| 242 if not self.digilibBaseUrl: | |
| 243 self.digilibBaseUrl = self.findDigilibUrl() or "http://nausikaa.mpiwg-berlin.mpg.de/digitallibrary" | |
| 244 | |
| 245 docinfo = self.getDocinfo(mode=mode,url=url) | |
| 246 pageinfo = self.getPageinfo(start=start,current=pn,docinfo=docinfo) | |
| 247 pt = getattr(self.template, 'thumbs_main_rss') | |
| 248 | |
| 249 if viewMode=="auto": # automodus gewaehlt | |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
250 if docinfo.has_key("textURL") or docinfo.has_key('textURLPath'): #texturl gesetzt und textViewer konfiguriert |
| 68 | 251 viewMode="text" |
| 252 else: | |
| 253 viewMode="images" | |
| 254 | |
| 255 return pt(docinfo=docinfo,pageinfo=pageinfo,viewMode=viewMode) | |
| 256 | |
| 22 | 257 security.declareProtected('View','index_html') |
| 170 | 258 def index_html(self,url,mode="texttool",viewMode="auto",tocMode="thumbs",start=None,pn=1,mk=None, query=None, querySearch=None, characterNormalization=""): |
| 22 | 259 ''' |
| 260 view it | |
| 57 | 261 @param mode: defines how to access the document behind url |
| 22 | 262 @param url: url which contains display information |
|
90
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
263 @param viewMode: if images display images, if text display text, default is auto (text,images or auto) |
| 99 | 264 @param tocMode: type of 'table of contents' for navigation (thumbs, text, figures, none) |
| 141 | 265 @param characterNormalization type of text display (reg, norm, none) |
| 100 | 266 @param querySearch: type of different search modes (fulltext, fulltextMorph, xpath, xquery, ftIndex, ftIndexMorph, fulltextMorphLemma) |
| 22 | 267 ''' |
| 0 | 268 |
| 167 | 269 logging.debug("documentViewer (index) mode: %s url:%s start:%s pn:%s"%(mode,url,start,pn)) |
| 22 | 270 |
| 271 if not hasattr(self, 'template'): | |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
272 # this won't work |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
273 logging.error("template folder missing!") |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
274 return "ERROR: template folder missing!" |
| 22 | 275 |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
276 if not getattr(self, 'digilibBaseUrl', None): |
| 132 | 277 self.digilibBaseUrl = self.findDigilibUrl() or "http://digilib.mpiwg-berlin.mpg.de/digitallibrary" |
| 22 | 278 |
| 25 | 279 docinfo = self.getDocinfo(mode=mode,url=url) |
| 97 | 280 |
|
90
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
281 if tocMode != "thumbs": |
|
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
282 # get table of contents |
|
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
283 docinfo = self.getToc(mode=tocMode, docinfo=docinfo) |
| 97 | 284 |
|
51
c5d3aabbf61b
textviewer now integrated, new modus auto introduced as standard for viewing
dwinter
parents:
50
diff
changeset
|
285 if viewMode=="auto": # automodus gewaehlt |
| 132 | 286 if docinfo.has_key('textURL') or docinfo.has_key('textURLPath'): #texturl gesetzt und textViewer konfiguriert |
| 127 | 287 viewMode="text_dict" |
|
51
c5d3aabbf61b
textviewer now integrated, new modus auto introduced as standard for viewing
dwinter
parents:
50
diff
changeset
|
288 else: |
|
c5d3aabbf61b
textviewer now integrated, new modus auto introduced as standard for viewing
dwinter
parents:
50
diff
changeset
|
289 viewMode="images" |
|
90
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
290 |
| 170 | 291 pageinfo = self.getPageinfo(start=start,current=pn,docinfo=docinfo,viewMode=viewMode,tocMode=tocMode) |
| 127 | 292 |
|
90
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
293 pt = getattr(self.template, 'viewer_main') |
|
75
9673218e155b
minorCVS: ----------------------------------------------------------------------
dwinter
parents:
74
diff
changeset
|
294 return pt(docinfo=docinfo,pageinfo=pageinfo,viewMode=viewMode,mk=self.generateMarks(mk)) |
| 0 | 295 |
| 74 | 296 def generateMarks(self,mk): |
| 297 ret="" | |
|
90
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
298 if mk is None: |
|
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
299 return "" |
| 134 | 300 if not isinstance(mk, list): |
| 132 | 301 mk=[mk] |
| 74 | 302 for m in mk: |
|
75
9673218e155b
minorCVS: ----------------------------------------------------------------------
dwinter
parents:
74
diff
changeset
|
303 ret+="mk=%s"%m |
| 74 | 304 return ret |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
305 |
|
90
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
306 |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
307 def findDigilibUrl(self): |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
308 """try to get the digilib URL from zogilib""" |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
309 url = self.template.zogilib.getDLBaseUrl() |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
310 return url |
| 126 | 311 |
| 312 def getDocumentViewerURL(self): | |
| 313 """returns the URL of this instance""" | |
| 314 return self.absolute_url() | |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
315 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
316 def getStyle(self, idx, selected, style=""): |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
317 """returns a string with the given style and append 'sel' if path == selected.""" |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
318 #logger("documentViewer (getstyle)", logging.INFO, "idx: %s selected: %s style: %s"%(idx,selected,style)) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
319 if idx == selected: |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
320 return style + 'sel' |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
321 else: |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
322 return style |
| 74 | 323 |
| 25 | 324 def getLink(self,param=None,val=None): |
| 325 """link to documentviewer with parameter param set to val""" | |
| 35 | 326 params=self.REQUEST.form.copy() |
| 25 | 327 if param is not None: |
| 31 | 328 if val is None: |
| 329 if params.has_key(param): | |
| 330 del params[param] | |
| 25 | 331 else: |
| 35 | 332 params[param] = str(val) |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
333 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
334 if params.get("mode", None) == "filepath": #wenn beim erst Aufruf filepath gesetzt wurde aendere das nun zu imagepath |
| 78 | 335 params["mode"] = "imagepath" |
| 336 params["url"] = getParentDir(params["url"]) | |
| 31 | 337 |
| 35 | 338 # quote values and assemble into query string |
| 135 | 339 #ps = "&".join(["%s=%s"%(k,urllib.quote(v)) for (k, v) in params.items()]) |
| 340 ps = urllib.urlencode(params) | |
| 35 | 341 url=self.REQUEST['URL1']+"?"+ps |
| 25 | 342 return url |
| 343 | |
| 68 | 344 def getLinkAmp(self,param=None,val=None): |
| 345 """link to documentviewer with parameter param set to val""" | |
| 346 params=self.REQUEST.form.copy() | |
| 347 if param is not None: | |
| 348 if val is None: | |
| 349 if params.has_key(param): | |
| 350 del params[param] | |
| 351 else: | |
| 352 params[param] = str(val) | |
| 353 | |
| 354 # quote values and assemble into query string | |
| 167 | 355 logging.debug("XYXXXXX: %s"%repr(params.items())) |
| 68 | 356 ps = "&".join(["%s=%s"%(k,urllib.quote(v)) for (k, v) in params.items()]) |
| 357 url=self.REQUEST['URL1']+"?"+ps | |
| 358 return url | |
|
81
fae97f071724
fixed problem with info.xml when url without index.meta
casties
parents:
79
diff
changeset
|
359 |
| 57 | 360 def getInfo_xml(self,url,mode): |
| 361 """returns info about the document as XML""" | |
| 362 | |
| 363 if not self.digilibBaseUrl: | |
| 364 self.digilibBaseUrl = self.findDigilibUrl() or "http://nausikaa.mpiwg-berlin.mpg.de/digitallibrary" | |
| 365 | |
| 366 docinfo = self.getDocinfo(mode=mode,url=url) | |
| 367 pt = getattr(self.template, 'info_xml') | |
| 368 return pt(docinfo=docinfo) | |
| 369 | |
| 0 | 370 |
| 35 | 371 def isAccessible(self, docinfo): |
| 32 | 372 """returns if access to the resource is granted""" |
| 373 access = docinfo.get('accessType', None) | |
| 167 | 374 logging.debug("documentViewer (accessOK) access type %s"%access) |
| 45 | 375 if access is not None and access == 'free': |
| 167 | 376 logging.debug("documentViewer (accessOK) access is free") |
| 32 | 377 return True |
| 45 | 378 elif access is None or access in self.authgroups: |
| 35 | 379 # only local access -- only logged in users |
| 380 user = getSecurityManager().getUser() | |
| 167 | 381 logging.debug("documentViewer (accessOK) user=%s ip=%s"%(user,self.REQUEST.getClientAddr())) |
| 35 | 382 if user is not None: |
| 383 #print "user: ", user | |
| 384 return (user.getUserName() != "Anonymous User") | |
| 385 else: | |
| 386 return False | |
| 32 | 387 |
| 167 | 388 logging.error("documentViewer (accessOK) unknown access type %s"%access) |
| 32 | 389 return False |
| 35 | 390 |
| 32 | 391 |
| 73 | 392 def getDirinfoFromDigilib(self,path,docinfo=None,cut=0): |
| 29 | 393 """gibt param von dlInfo aus""" |
| 31 | 394 if docinfo is None: |
| 395 docinfo = {} | |
| 73 | 396 |
| 397 for x in range(cut): | |
| 78 | 398 |
| 73 | 399 path=getParentDir(path) |
| 78 | 400 |
| 40 | 401 infoUrl=self.digilibBaseUrl+"/dirInfo-xml.jsp?mo=dir&fn="+path |
| 29 | 402 |
| 167 | 403 logging.debug("documentViewer (getparamfromdigilib) dirInfo from %s"%(infoUrl)) |
| 29 | 404 |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
405 txt = getHttpData(infoUrl) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
406 if txt is None: |
| 40 | 407 raise IOError("Unable to get dir-info from %s"%(infoUrl)) |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
408 |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
409 dom = Parse(txt) |
| 37 | 410 sizes=dom.xpath("//dir/size") |
| 167 | 411 logging.debug("documentViewer (getparamfromdigilib) dirInfo:size"%sizes) |
| 29 | 412 |
| 37 | 413 if sizes: |
| 414 docinfo['numPages'] = int(getTextFromNode(sizes[0])) | |
| 31 | 415 else: |
| 416 docinfo['numPages'] = 0 | |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
417 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
418 # TODO: produce and keep list of image names and numbers |
| 31 | 419 |
| 420 return docinfo | |
| 32 | 421 |
| 174 | 422 def getIndexMetaPath(self,url): |
| 423 """gib nur den Pfad zurueck""" | |
| 424 regexp = re.compile(r".*(experimental|permanent)/(.*)") | |
| 425 regpath = regexp.match(url) | |
| 426 if (regpath==None): | |
| 427 return "" | |
| 224 | 428 logging.debug("(getDomFromIndexMeta): URLXAXA: %s"%regpath.group(2)) |
| 174 | 429 return ("/mpiwg/online/"+regpath.group(1)+"/"+regpath.group(2)) |
| 430 | |
| 225 | 431 |
| 432 | |
| 174 | 433 def getIndexMetaUrl(self,url): |
| 434 """returns utr of index.meta document at url""" | |
| 435 | |
|
39
1dd90aabd366
added retry when reading index meta from texter applet
casties
parents:
38
diff
changeset
|
436 metaUrl = None |
| 35 | 437 if url.startswith("http://"): |
| 438 # real URL | |
|
39
1dd90aabd366
added retry when reading index meta from texter applet
casties
parents:
38
diff
changeset
|
439 metaUrl = url |
| 35 | 440 else: |
| 441 # online path | |
| 442 server=self.digilibBaseUrl+"/servlet/Texter?fn=" | |
| 40 | 443 metaUrl=server+url.replace("/mpiwg/online","") |
| 35 | 444 if not metaUrl.endswith("index.meta"): |
| 445 metaUrl += "/index.meta" | |
| 174 | 446 |
| 447 return metaUrl | |
| 448 | |
| 449 def getDomFromIndexMeta(self, url): | |
| 450 """get dom from index meta""" | |
| 451 dom = None | |
| 452 metaUrl = self.getIndexMetaUrl(url) | |
|
39
1dd90aabd366
added retry when reading index meta from texter applet
casties
parents:
38
diff
changeset
|
453 |
| 174 | 454 logging.debug("(getDomFromIndexMeta): METAURL: %s"%metaUrl) |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
455 txt=getHttpData(metaUrl) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
456 if txt is None: |
|
39
1dd90aabd366
added retry when reading index meta from texter applet
casties
parents:
38
diff
changeset
|
457 raise IOError("Unable to read index meta from %s"%(url)) |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
458 |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
459 dom = Parse(txt) |
| 35 | 460 return dom |
|
50
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
461 |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
462 def getPresentationInfoXML(self, url): |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
463 """returns dom of info.xml document at url""" |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
464 dom = None |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
465 metaUrl = None |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
466 if url.startswith("http://"): |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
467 # real URL |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
468 metaUrl = url |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
469 else: |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
470 # online path |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
471 server=self.digilibBaseUrl+"/servlet/Texter?fn=" |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
472 metaUrl=server+url.replace("/mpiwg/online","") |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
473 |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
474 txt=getHttpData(metaUrl) |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
475 if txt is None: |
|
50
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
476 raise IOError("Unable to read infoXMLfrom %s"%(url)) |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
477 |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
478 dom = Parse(txt) |
|
50
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
479 return dom |
| 35 | 480 |
| 481 | |
| 70 | 482 def getAuthinfoFromIndexMeta(self,path,docinfo=None,dom=None,cut=0): |
| 35 | 483 """gets authorization info from the index.meta file at path or given by dom""" |
| 167 | 484 logging.debug("documentViewer (getauthinfofromindexmeta) path: %s"%(path)) |
| 32 | 485 |
| 486 access = None | |
| 487 | |
| 488 if docinfo is None: | |
| 489 docinfo = {} | |
| 490 | |
| 491 if dom is None: | |
| 78 | 492 for x in range(cut): |
| 70 | 493 path=getParentDir(path) |
| 174 | 494 dom = self.getDomFromIndexMeta(path) |
| 46 | 495 |
| 32 | 496 acctype = dom.xpath("//access-conditions/access/@type") |
| 497 if acctype and (len(acctype)>0): | |
| 498 access=acctype[0].value | |
| 35 | 499 if access in ['group', 'institution']: |
| 32 | 500 access = getTextFromNode(dom.xpath("//access-conditions/access/name")[0]).lower() |
| 501 | |
| 502 docinfo['accessType'] = access | |
| 503 return docinfo | |
| 29 | 504 |
| 32 | 505 |
| 70 | 506 def getBibinfoFromIndexMeta(self,path,docinfo=None,dom=None,cut=0): |
| 35 | 507 """gets bibliographical info from the index.meta file at path or given by dom""" |
| 167 | 508 logging.debug("documentViewer (getbibinfofromindexmeta) path: %s"%(path)) |
| 20 | 509 |
| 22 | 510 if docinfo is None: |
| 511 docinfo = {} | |
| 78 | 512 |
| 22 | 513 if dom is None: |
| 78 | 514 for x in range(cut): |
| 70 | 515 path=getParentDir(path) |
| 174 | 516 dom = self.getDomFromIndexMeta(path) |
| 517 | |
| 518 docinfo['indexMetaPath']=self.getIndexMetaPath(path); | |
|
79
df6952ac93e9
bug in getDocInforFromImagePath, relative lage der index.meta zu path war falsch.
dwinter
parents:
78
diff
changeset
|
519 |
| 167 | 520 logging.debug("documentViewer (getbibinfofromindexmeta cutted) path: %s"%(path)) |
| 59 | 521 # put in all raw bib fields as dict "bib" |
| 522 bib = dom.xpath("//bib/*") | |
| 523 if bib and len(bib)>0: | |
| 524 bibinfo = {} | |
| 525 for e in bib: | |
| 526 bibinfo[e.localName] = getTextFromNode(e) | |
| 527 docinfo['bib'] = bibinfo | |
| 528 | |
| 529 # extract some fields (author, title, year) according to their mapping | |
| 25 | 530 metaData=self.metadata.main.meta.bib |
| 531 bibtype=dom.xpath("//bib/@type") | |
| 532 if bibtype and (len(bibtype)>0): | |
| 533 bibtype=bibtype[0].value | |
| 20 | 534 else: |
| 25 | 535 bibtype="generic" |
| 59 | 536 |
| 25 | 537 bibtype=bibtype.replace("-"," ") # wrong typesiin index meta "-" instead of " " (not wrong! ROC) |
| 59 | 538 docinfo['bib_type'] = bibtype |
| 25 | 539 bibmap=metaData.generateMappingForType(bibtype) |
| 174 | 540 logging.debug("documentViewer (getbibinfofromindexmeta) bibmap:"+repr(bibmap)) |
| 541 logging.debug("documentViewer (getbibinfofromindexmeta) bibtype:"+repr(bibtype)) | |
| 32 | 542 # if there is no mapping bibmap is empty (mapping sometimes has empty fields) |
| 31 | 543 if len(bibmap) > 0 and len(bibmap['author'][0]) > 0: |
| 63 | 544 try: |
| 545 docinfo['author']=getTextFromNode(dom.xpath("//bib/%s"%bibmap['author'][0])[0]) | |
| 546 except: pass | |
| 547 try: | |
| 548 docinfo['title']=getTextFromNode(dom.xpath("//bib/%s"%bibmap['title'][0])[0]) | |
| 549 except: pass | |
| 550 try: | |
| 551 docinfo['year']=getTextFromNode(dom.xpath("//bib/%s"%bibmap['year'][0])[0]) | |
| 552 except: pass | |
| 167 | 553 logging.debug("documentViewer (getbibinfofromindexmeta) using mapping for %s"%bibtype) |
| 52 | 554 try: |
| 555 docinfo['lang']=getTextFromNode(dom.xpath("//bib/lang")[0]) | |
| 556 except: | |
| 557 docinfo['lang']='' | |
| 227 | 558 |
| 22 | 559 return docinfo |
| 83 | 560 |
| 218 | 561 |
| 562 def getNameFromIndexMeta(self,path,docinfo=None,dom=None,cut=0): | |
| 563 """gets name info from the index.meta file at path or given by dom""" | |
| 564 if docinfo is None: | |
| 565 docinfo = {} | |
| 566 | |
| 567 if dom is None: | |
| 568 for x in range(cut): | |
| 569 path=getParentDir(path) | |
| 570 dom = self.getDomFromIndexMeta(path) | |
| 330 | 571 |
| 229 | 572 docinfo['name']=getTextFromNode(dom.xpath("/resource/name")[0]) |
| 230 | 573 logging.debug("documentViewer docinfo[name] %s"%docinfo['name']) |
| 218 | 574 return docinfo |
| 83 | 575 |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
576 def getDocinfoFromTextTool(self, url, dom=None, docinfo=None): |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
577 """parse texttool tag in index meta""" |
| 167 | 578 logging.debug("documentViewer (getdocinfofromtexttool) url: %s" % (url)) |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
579 if docinfo is None: |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
580 docinfo = {} |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
581 if docinfo.get('lang', None) is None: |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
582 docinfo['lang'] = '' # default keine Sprache gesetzt |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
583 if dom is None: |
| 174 | 584 dom = self.getDomFromIndexMeta(url) |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
585 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
586 archivePath = None |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
587 archiveName = None |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
588 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
589 archiveNames = dom.xpath("//resource/name") |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
590 if archiveNames and (len(archiveNames) > 0): |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
591 archiveName = getTextFromNode(archiveNames[0]) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
592 else: |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
593 logging.warning("documentViewer (getdocinfofromtexttool) resource/name missing in: %s" % (url)) |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
594 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
595 archivePaths = dom.xpath("//resource/archive-path") |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
596 if archivePaths and (len(archivePaths) > 0): |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
597 archivePath = getTextFromNode(archivePaths[0]) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
598 # clean up archive path |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
599 if archivePath[0] != '/': |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
600 archivePath = '/' + archivePath |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
601 if archiveName and (not archivePath.endswith(archiveName)): |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
602 archivePath += "/" + archiveName |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
603 else: |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
604 # try to get archive-path from url |
| 167 | 605 logging.warning("documentViewer (getdocinfofromtexttool) resource/archive-path missing in: %s" % (url)) |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
606 if (not url.startswith('http')): |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
607 archivePath = url.replace('index.meta', '') |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
608 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
609 if archivePath is None: |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
610 # we balk without archive-path |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
611 raise IOError("Missing archive-path (for text-tool) in %s" % (url)) |
| 22 | 612 |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
613 imageDirs = dom.xpath("//texttool/image") |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
614 if imageDirs and (len(imageDirs) > 0): |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
615 imageDir = getTextFromNode(imageDirs[0]) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
616 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
617 else: |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
618 # we balk with no image tag / not necessary anymore because textmode is now standard |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
619 #raise IOError("No text-tool info in %s"%(url)) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
620 imageDir = "" |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
621 #xquery="//pb" |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
622 docinfo['imagePath'] = "" # keine Bilder |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
623 docinfo['imageURL'] = "" |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
624 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
625 if imageDir and archivePath: |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
626 #print "image: ", imageDir, " archivepath: ", archivePath |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
627 imageDir = os.path.join(archivePath, imageDir) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
628 imageDir = imageDir.replace("/mpiwg/online", '') |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
629 docinfo = self.getDirinfoFromDigilib(imageDir, docinfo=docinfo) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
630 docinfo['imagePath'] = imageDir |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
631 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
632 docinfo['imageURL'] = self.digilibBaseUrl + "/servlet/Scaler?fn=" + imageDir |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
633 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
634 viewerUrls = dom.xpath("//texttool/digiliburlprefix") |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
635 if viewerUrls and (len(viewerUrls) > 0): |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
636 viewerUrl = getTextFromNode(viewerUrls[0]) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
637 docinfo['viewerURL'] = viewerUrl |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
638 |
|
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
639 # old style text URL |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
640 textUrls = dom.xpath("//texttool/text") |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
641 if textUrls and (len(textUrls) > 0): |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
642 textUrl = getTextFromNode(textUrls[0]) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
643 if urlparse.urlparse(textUrl)[0] == "": #keine url |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
644 textUrl = os.path.join(archivePath, textUrl) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
645 # fix URLs starting with /mpiwg/online |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
646 if textUrl.startswith("/mpiwg/online"): |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
647 textUrl = textUrl.replace("/mpiwg/online", '', 1) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
648 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
649 docinfo['textURL'] = textUrl |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
650 |
|
130
5c779d7b5f71
more modular version with separate object MpdlXmlTextServer
casties
parents:
128
diff
changeset
|
651 # new style text-url-path |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
652 textUrls = dom.xpath("//texttool/text-url-path") |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
653 if textUrls and (len(textUrls) > 0): |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
654 textUrl = getTextFromNode(textUrls[0]) |
| 102 | 655 docinfo['textURLPath'] = textUrl |
| 656 if not docinfo['imagePath']: | |
| 657 # text-only, no page images | |
| 205 | 658 docinfo = self.getNumTextPages(docinfo) |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
659 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
660 presentationUrls = dom.xpath("//texttool/presentation") |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
661 docinfo = self.getBibinfoFromIndexMeta(url, docinfo=docinfo, dom=dom) # get info von bib tag |
| 228 | 662 docinfo = self.getNameFromIndexMeta(url, docinfo=docinfo, dom=dom) |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
663 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
664 if presentationUrls and (len(presentationUrls) > 0): # ueberschreibe diese durch presentation informationen |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
665 # presentation url ergiebt sich ersetzen von index.meta in der url der fuer die Metadaten |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
666 # durch den relativen Pfad auf die presentation infos |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
667 presentationPath = getTextFromNode(presentationUrls[0]) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
668 if url.endswith("index.meta"): |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
669 presentationUrl = url.replace('index.meta', presentationPath) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
670 else: |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
671 presentationUrl = url + "/" + presentationPath |
| 102 | 672 |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
673 docinfo = self.getBibinfoFromTextToolPresentation(presentationUrl, docinfo=docinfo, dom=dom) |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
674 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
675 docinfo = self.getAuthinfoFromIndexMeta(url, docinfo=docinfo, dom=dom) # get access info |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
676 |
|
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
677 return docinfo |
| 22 | 678 |
|
50
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
679 |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
680 def getBibinfoFromTextToolPresentation(self,url,docinfo=None,dom=None): |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
681 """gets the bibliographical information from the preseantion entry in texttools |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
682 """ |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
683 dom=self.getPresentationInfoXML(url) |
| 62 | 684 try: |
| 685 docinfo['author']=getTextFromNode(dom.xpath("//author")[0]) | |
| 686 except: | |
| 687 pass | |
| 688 try: | |
| 689 docinfo['title']=getTextFromNode(dom.xpath("//title")[0]) | |
| 690 except: | |
| 691 pass | |
| 692 try: | |
| 693 docinfo['year']=getTextFromNode(dom.xpath("//date")[0]) | |
| 694 except: | |
| 695 pass | |
|
50
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
696 return docinfo |
|
6c0f20cecc60
added evaluation of the presentation/info.xml in texttools
dwinter
parents:
49
diff
changeset
|
697 |
| 70 | 698 def getDocinfoFromImagePath(self,path,docinfo=None,cut=0): |
| 22 | 699 """path ist the path to the images it assumes that the index.meta file is one level higher.""" |
| 167 | 700 logging.debug("documentViewer (getdocinfofromimagepath) path: %s"%(path)) |
| 22 | 701 if docinfo is None: |
| 702 docinfo = {} | |
| 29 | 703 path=path.replace("/mpiwg/online","") |
| 22 | 704 docinfo['imagePath'] = path |
| 73 | 705 docinfo=self.getDirinfoFromDigilib(path,docinfo=docinfo,cut=cut) |
| 78 | 706 |
|
79
df6952ac93e9
bug in getDocInforFromImagePath, relative lage der index.meta zu path war falsch.
dwinter
parents:
78
diff
changeset
|
707 pathorig=path |
| 78 | 708 for x in range(cut): |
| 709 path=getParentDir(path) | |
| 167 | 710 logging.debug("documentViewer (getdocinfofromimagepath) PATH:"+path) |
| 31 | 711 imageUrl=self.digilibBaseUrl+"/servlet/Scaler?fn="+path |
| 22 | 712 docinfo['imageURL'] = imageUrl |
| 713 | |
|
79
df6952ac93e9
bug in getDocInforFromImagePath, relative lage der index.meta zu path war falsch.
dwinter
parents:
78
diff
changeset
|
714 #path ist the path to the images it assumes that the index.meta file is one level higher. |
|
df6952ac93e9
bug in getDocInforFromImagePath, relative lage der index.meta zu path war falsch.
dwinter
parents:
78
diff
changeset
|
715 docinfo = self.getBibinfoFromIndexMeta(pathorig,docinfo=docinfo,cut=cut+1) |
|
df6952ac93e9
bug in getDocInforFromImagePath, relative lage der index.meta zu path war falsch.
dwinter
parents:
78
diff
changeset
|
716 docinfo = self.getAuthinfoFromIndexMeta(pathorig,docinfo=docinfo,cut=cut+1) |
| 22 | 717 return docinfo |
| 20 | 718 |
| 22 | 719 |
| 720 def getDocinfo(self, mode, url): | |
| 721 """returns docinfo depending on mode""" | |
| 167 | 722 logging.debug("documentViewer (getdocinfo) mode: %s, url: %s"%(mode,url)) |
| 22 | 723 # look for cached docinfo in session |
|
51
c5d3aabbf61b
textviewer now integrated, new modus auto introduced as standard for viewing
dwinter
parents:
50
diff
changeset
|
724 if self.REQUEST.SESSION.has_key('docinfo'): |
| 22 | 725 docinfo = self.REQUEST.SESSION['docinfo'] |
| 726 # check if its still current | |
| 727 if docinfo is not None and docinfo.get('mode') == mode and docinfo.get('url') == url: | |
| 167 | 728 logging.debug("documentViewer (getdocinfo) docinfo in session: %s"%docinfo) |
| 22 | 729 return docinfo |
| 730 # new docinfo | |
| 731 docinfo = {'mode': mode, 'url': url} | |
| 732 if mode=="texttool": #index.meta with texttool information | |
| 733 docinfo = self.getDocinfoFromTextTool(url, docinfo=docinfo) | |
| 734 elif mode=="imagepath": | |
| 735 docinfo = self.getDocinfoFromImagePath(url, docinfo=docinfo) | |
| 70 | 736 elif mode=="filepath": |
|
75
9673218e155b
minorCVS: ----------------------------------------------------------------------
dwinter
parents:
74
diff
changeset
|
737 docinfo = self.getDocinfoFromImagePath(url, docinfo=docinfo,cut=1) |
| 22 | 738 else: |
| 167 | 739 logging.error("documentViewer (getdocinfo) unknown mode: %s!"%mode) |
|
90
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
740 raise ValueError("Unknown mode %s! Has to be one of 'texttool','imagepath','filepath'."%(mode)) |
| 37 | 741 |
| 167 | 742 logging.debug("documentViewer (getdocinfo) docinfo: %s"%docinfo) |
| 22 | 743 self.REQUEST.SESSION['docinfo'] = docinfo |
| 744 return docinfo | |
| 128 | 745 |
| 170 | 746 def getPageinfo(self, current, start=None, rows=None, cols=None, docinfo=None, viewMode=None, tocMode=None,characterNormalization=""): |
| 22 | 747 """returns pageinfo with the given parameters""" |
| 748 pageinfo = {} | |
| 25 | 749 current = getInt(current) |
| 327 | 750 #pageinfo ['originalPage'] = originalPage |
| 25 | 751 pageinfo['current'] = current |
| 752 rows = int(rows or self.thumbrows) | |
| 753 pageinfo['rows'] = rows | |
| 754 cols = int(cols or self.thumbcols) | |
| 755 pageinfo['cols'] = cols | |
| 756 grpsize = cols * rows | |
| 757 pageinfo['groupsize'] = grpsize | |
| 61 | 758 start = getInt(start, default=(math.ceil(float(current)/float(grpsize))*grpsize-(grpsize-1))) |
| 759 # int(current / grpsize) * grpsize +1)) | |
| 22 | 760 pageinfo['start'] = start |
| 25 | 761 pageinfo['end'] = start + grpsize |
|
90
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
762 if (docinfo is not None) and ('numPages' in docinfo): |
| 25 | 763 np = int(docinfo['numPages']) |
| 764 pageinfo['end'] = min(pageinfo['end'], np) | |
| 765 pageinfo['numgroups'] = int(np / grpsize) | |
| 766 if np % grpsize > 0: | |
| 128 | 767 pageinfo['numgroups'] += 1 |
|
90
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
768 pageinfo['viewMode'] = viewMode |
|
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
769 pageinfo['tocMode'] = tocMode |
| 173 | 770 #pageinfo['characterNormalization'] =characterNormalization |
| 771 pageinfo['characterNormalization'] = self.REQUEST.get('characterNormalization',' ') | |
| 95 | 772 pageinfo['query'] = self.REQUEST.get('query',' ') |
| 773 pageinfo['queryType'] = self.REQUEST.get('queryType',' ') | |
| 774 pageinfo['querySearch'] =self.REQUEST.get('querySearch', 'fulltext') | |
| 99 | 775 pageinfo['textPN'] = self.REQUEST.get('textPN','1') |
| 106 | 776 pageinfo['highlightQuery'] = self.REQUEST.get('highlightQuery','') |
| 95 | 777 pageinfo['tocPageSize'] = self.REQUEST.get('tocPageSize', '30') |
| 105 | 778 pageinfo['queryPageSize'] =self.REQUEST.get('queryPageSize', '10') |
|
90
6a4a72033d58
new version with new full-text infrastructure and some more changed templates
casties
parents:
84
diff
changeset
|
779 pageinfo['tocPN'] = self.REQUEST.get('tocPN', '1') |
| 99 | 780 toc = int (pageinfo['tocPN']) |
| 781 pageinfo['textPages'] =int (toc) | |
| 158 | 782 |
| 326 | 783 |
| 784 | |
| 99 | 785 if 'tocSize_%s'%tocMode in docinfo: |
| 786 tocSize = int(docinfo['tocSize_%s'%tocMode]) | |
| 787 tocPageSize = int(pageinfo['tocPageSize']) | |
| 128 | 788 # cached toc |
| 99 | 789 if tocSize%tocPageSize>0: |
| 790 tocPages=tocSize/tocPageSize+1 | |
| 791 else: | |
| 792 tocPages=tocSize/tocPageSize | |
| 128 | 793 pageinfo['tocPN'] = min (tocPages,toc) |
| 95 | 794 pageinfo['searchPN'] =self.REQUEST.get('searchPN','1') |
| 112 | 795 pageinfo['sn'] =self.REQUEST.get('sn','') |
| 22 | 796 return pageinfo |
| 797 | |
| 128 | 798 def changeDocumentViewer(self,title="",digilibBaseUrl=None,thumbrows=2,thumbcols=5,authgroups='mpiwg',RESPONSE=None): |
| 22 | 799 """init document viewer""" |
| 800 self.title=title | |
| 801 self.digilibBaseUrl = digilibBaseUrl | |
| 25 | 802 self.thumbrows = thumbrows |
| 803 self.thumbcols = thumbcols | |
| 32 | 804 self.authgroups = [s.strip().lower() for s in authgroups.split(',')] |
| 22 | 805 if RESPONSE is not None: |
| 806 RESPONSE.redirect('manage_main') | |
| 0 | 807 |
| 808 def manage_AddDocumentViewerForm(self): | |
| 809 """add the viewer form""" | |
| 22 | 810 pt=PageTemplateFile('zpt/addDocumentViewer', globals()).__of__(self) |
| 0 | 811 return pt() |
| 812 | |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
813 def manage_AddDocumentViewer(self,id,imageScalerUrl="",textServerName="",title="",RESPONSE=None): |
| 0 | 814 """add the viewer""" |
|
84
a6e4f9b6729a
first version with new full-text infrastructure and slightly changed templates
casties
parents:
83
diff
changeset
|
815 newObj=documentViewer(id,imageScalerUrl=imageScalerUrl,title=title,textServerName=textServerName) |
| 0 | 816 self._setObject(id,newObj) |
| 817 | |
| 818 if RESPONSE is not None: | |
| 819 RESPONSE.redirect('manage_main') | |
| 22 | 820 |
| 821 ## DocumentViewerTemplate class | |
| 822 class DocumentViewerTemplate(ZopePageTemplate): | |
| 823 """Template for document viewer""" | |
| 824 meta_type="DocumentViewer Template" | |
| 825 | |
| 826 | |
| 827 def manage_addDocumentViewerTemplateForm(self): | |
| 828 """Form for adding""" | |
| 829 pt=PageTemplateFile('zpt/addDocumentViewerTemplate', globals()).__of__(self) | |
| 830 return pt() | |
| 831 | |
| 832 def manage_addDocumentViewerTemplate(self, id='viewer_main', title=None, text=None, | |
| 833 REQUEST=None, submit=None): | |
| 834 "Add a Page Template with optional file content." | |
| 835 | |
| 836 self._setObject(id, DocumentViewerTemplate(id)) | |
| 837 ob = getattr(self, id) | |
|
53
f4e0af8c281d
NEW - # 44: ECHO - vollst?ndige bibliographische Angabe
dwinter
parents:
52
diff
changeset
|
838 txt=file(os.path.join(package_home(globals()),'zpt/viewer_main.zpt'),'r').read() |
| 167 | 839 logging.info("txt %s:"%txt) |
|
53
f4e0af8c281d
NEW - # 44: ECHO - vollst?ndige bibliographische Angabe
dwinter
parents:
52
diff
changeset
|
840 ob.pt_edit(txt,"text/html") |
| 22 | 841 if title: |
| 842 ob.pt_setTitle(title) | |
| 843 try: | |
| 844 u = self.DestinationURL() | |
| 845 except AttributeError: | |
| 846 u = REQUEST['URL1'] | |
| 847 | |
| 848 u = "%s/%s" % (u, urllib.quote(id)) | |
| 849 REQUEST.RESPONSE.redirect(u+'/manage_main') | |
| 850 return '' | |
| 851 | |
| 852 | |
| 41 | 853 |
