author | rgbecker |
Wed, 10 May 2006 12:56:39 +0000 | |
changeset 2594 | 746800f5caf9 |
parent 2585 | ee08fea4505b |
child 2644 | e762ad1c8909 |
permissions | -rw-r--r-- |
2332 | 1 |
#Copyright ReportLab Europe Ltd. 2000-2004 |
494 | 2 |
#see license.txt for license details |
2332 | 3 |
#history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/platypus/paraparser.py |
2321 | 4 |
__version__=''' $Id$ ''' |
96 | 5 |
import string |
119 | 6 |
import re |
2575 | 7 |
from types import TupleType, UnicodeType, StringType |
96 | 8 |
import sys |
9 |
import os |
|
10 |
import copy |
|
11 |
||
279 | 12 |
import reportlab.lib.sequencer |
518 | 13 |
from reportlab.lib.abag import ABag |
1160 | 14 |
|
2376 | 15 |
from reportlab.lib import xmllib |
96 | 16 |
|
248 | 17 |
from reportlab.lib.colors import toColor, white, black, red, Color |
96 | 18 |
from reportlab.lib.fonts import tt2ps, ps2tt |
119 | 19 |
from reportlab.lib.enums import TA_LEFT, TA_RIGHT, TA_CENTER, TA_JUSTIFY |
1940 | 20 |
from reportlab.lib.units import inch,mm,cm,pica |
2410 | 21 |
_re_para = re.compile(r'^\s*<\s*para(?:\s+|>|/>)') |
96 | 22 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
23 |
sizeDelta = 2 # amount to reduce font size by for super and sub script |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
24 |
subFraction = 0.5 # fraction of font size that a sub script should be lowered |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
25 |
superFraction = 0.5 # fraction of font size that a super script should be raised |
96 | 26 |
|
1940 | 27 |
def _num(s, unit=1): |
28 |
"""Convert a string like '10cm' to an int or float (in points). |
|
29 |
The default unit is point, but optionally you can use other |
|
30 |
default units like mm. |
|
31 |
""" |
|
32 |
if s[-2:]=='cm': |
|
33 |
unit=cm |
|
34 |
s = s[:-2] |
|
35 |
if s[-2:]=='in': |
|
36 |
unit=inch |
|
37 |
s = s[:-2] |
|
38 |
if s[-2:]=='pt': |
|
39 |
unit=1 |
|
40 |
s = s[:-2] |
|
41 |
if s[-1:]=='i': |
|
42 |
unit=inch |
|
43 |
s = s[:-1] |
|
44 |
if s[-2:]=='mm': |
|
45 |
unit=mm |
|
46 |
s = s[:-2] |
|
47 |
if s[-4:]=='pica': |
|
48 |
unit=pica |
|
49 |
s = s[:-4] |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
50 |
if s[0] in ['+','-']: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
51 |
try: |
1940 | 52 |
return ('relative',int(s)*unit) |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
53 |
except ValueError: |
1940 | 54 |
return ('relative',float(s)*unit) |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
55 |
else: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
56 |
try: |
1940 | 57 |
return int(s)*unit |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
58 |
except ValueError: |
1940 | 59 |
return float(s)*unit |
119 | 60 |
|
61 |
def _align(s): |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
62 |
s = string.lower(s) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
63 |
if s=='left': return TA_LEFT |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
64 |
elif s=='right': return TA_RIGHT |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
65 |
elif s=='justify': return TA_JUSTIFY |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
66 |
elif s in ('centre','center'): return TA_CENTER |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
67 |
else: raise ValueError |
119 | 68 |
|
69 |
_paraAttrMap = {'font': ('fontName', None), |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
70 |
'face': ('fontName', None), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
71 |
'fontsize': ('fontSize', _num), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
72 |
'size': ('fontSize', _num), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
73 |
'leading': ('leading', _num), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
74 |
'lindent': ('leftIndent', _num), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
75 |
'rindent': ('rightIndent', _num), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
76 |
'findent': ('firstLineIndent', _num), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
77 |
'align': ('alignment', _align), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
78 |
'spaceb': ('spaceBefore', _num), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
79 |
'spacea': ('spaceAfter', _num), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
80 |
'bfont': ('bulletFontName', None), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
81 |
'bfontsize': ('bulletFontSize',_num), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
82 |
'bindent': ('bulletIndent',_num), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
83 |
'bcolor': ('bulletColor',toColor), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
84 |
'color':('textColor',toColor), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
85 |
'backcolor':('backColor',toColor), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
86 |
'bgcolor':('backColor',toColor), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
87 |
'bg':('backColor',toColor), |
1940 | 88 |
'fg': ('textColor',toColor), |
89 |
} |
|
119 | 90 |
|
250 | 91 |
_bulletAttrMap = { |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
92 |
'font': ('bulletFontName', None), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
93 |
'face': ('bulletFontName', None), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
94 |
'size': ('bulletFontSize',_num), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
95 |
'fontsize': ('bulletFontSize',_num), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
96 |
'indent': ('bulletIndent',_num), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
97 |
'color': ('bulletColor',toColor), |
1940 | 98 |
'fg': ('bulletColor',toColor), |
99 |
} |
|
250 | 100 |
|
119 | 101 |
#things which are valid font attributes |
102 |
_fontAttrMap = {'size': ('fontSize', _num), |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
103 |
'face': ('fontName', None), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
104 |
'name': ('fontName', None), |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
105 |
'fg': ('textColor', toColor), |
1940 | 106 |
'color':('textColor', toColor), |
2446 | 107 |
'backcolor':('backColor',toColor), |
108 |
'bgcolor':('backColor',toColor), |
|
1940 | 109 |
} |
2575 | 110 |
#things which are valid font attributes |
111 |
_linkAttrMap = {'size': ('fontSize', _num), |
|
112 |
'face': ('fontName', None), |
|
113 |
'name': ('fontName', None), |
|
114 |
'fg': ('textColor', toColor), |
|
115 |
'color':('textColor', toColor), |
|
116 |
'backcolor':('backColor',toColor), |
|
117 |
'bgcolor':('backColor',toColor), |
|
118 |
'dest': ('link', None), |
|
119 |
'destination': ('link', None), |
|
120 |
'target': ('link', None), |
|
2594 | 121 |
'href': ('link', None), |
2575 | 122 |
} |
119 | 123 |
|
124 |
def _addAttributeNames(m): |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
125 |
K = m.keys() |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
126 |
for k in K: |
1944 | 127 |
n = m[k][0] |
128 |
if not m.has_key(n): m[n] = m[k] |
|
129 |
n = string.lower(n) |
|
130 |
if not m.has_key(n): m[n] = m[k] |
|
119 | 131 |
|
132 |
_addAttributeNames(_paraAttrMap) |
|
133 |
_addAttributeNames(_fontAttrMap) |
|
250 | 134 |
_addAttributeNames(_bulletAttrMap) |
119 | 135 |
|
136 |
def _applyAttributes(obj, attr): |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
137 |
for k, v in attr.items(): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
138 |
if type(v) is TupleType and v[0]=='relative': |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
139 |
#AR 20/5/2000 - remove 1.5.2-ism |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
140 |
#v = v[1]+getattr(obj,k,0) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
141 |
if hasattr(obj, k): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
142 |
v = v[1]+getattr(obj,k) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
143 |
else: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
144 |
v = v[1] |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
145 |
setattr(obj,k,v) |
102 | 146 |
|
1931
784fce255e2d
Added in more special entities as suggested by Christoph Zwerschke
rgbecker
parents:
1736
diff
changeset
|
147 |
#Named character entities intended to be supported from the special font |
2200
be0cfccc662a
Fixed up tabs and whitespace in all source files
andy_robinson
parents:
2053
diff
changeset
|
148 |
#with additions suggested by Christoph Zwerschke who also suggested the |
1931
784fce255e2d
Added in more special entities as suggested by Christoph Zwerschke
rgbecker
parents:
1736
diff
changeset
|
149 |
#numeric entity names that follow. |
96 | 150 |
greeks = { |
2585 | 151 |
'pound': '\xc2\xa3', |
152 |
'nbsp': '\xc2\xa0', |
|
2575 | 153 |
'alefsym': '\xe2\x84\xb5', |
154 |
'Alpha': '\xce\x91', |
|
155 |
'alpha': '\xce\xb1', |
|
156 |
'and': '\xe2\x88\xa7', |
|
157 |
'ang': '\xe2\x88\xa0', |
|
158 |
'asymp': '\xe2\x89\x88', |
|
159 |
'Beta': '\xce\x92', |
|
160 |
'beta': '\xce\xb2', |
|
161 |
'bull': '\xe2\x80\xa2', |
|
162 |
'cap': '\xe2\x88\xa9', |
|
163 |
'Chi': '\xce\xa7', |
|
164 |
'chi': '\xcf\x87', |
|
165 |
'clubs': '\xe2\x99\xa3', |
|
166 |
'cong': '\xe2\x89\x85', |
|
167 |
'cup': '\xe2\x88\xaa', |
|
168 |
'darr': '\xe2\x86\x93', |
|
169 |
'dArr': '\xe2\x87\x93', |
|
170 |
'delta': '\xce\xb4', |
|
171 |
'Delta': '\xe2\x88\x86', |
|
172 |
'diams': '\xe2\x99\xa6', |
|
173 |
'empty': '\xe2\x88\x85', |
|
174 |
'Epsilon': '\xce\x95', |
|
175 |
'epsilon': '\xce\xb5', |
|
176 |
'epsiv': '\xce\xb5', |
|
177 |
'equiv': '\xe2\x89\xa1', |
|
178 |
'Eta': '\xce\x97', |
|
179 |
'eta': '\xce\xb7', |
|
180 |
'euro': '\xe2\x82\xac', |
|
181 |
'exist': '\xe2\x88\x83', |
|
182 |
'forall': '\xe2\x88\x80', |
|
183 |
'frasl': '\xe2\x81\x84', |
|
184 |
'Gamma': '\xce\x93', |
|
185 |
'gamma': '\xce\xb3', |
|
186 |
'ge': '\xe2\x89\xa5', |
|
187 |
'harr': '\xe2\x86\x94', |
|
188 |
'hArr': '\xe2\x87\x94', |
|
189 |
'hearts': '\xe2\x99\xa5', |
|
190 |
'hellip': '\xe2\x80\xa6', |
|
191 |
'image': '\xe2\x84\x91', |
|
192 |
'infin': '\xe2\x88\x9e', |
|
193 |
'int': '\xe2\x88\xab', |
|
194 |
'Iota': '\xce\x99', |
|
195 |
'iota': '\xce\xb9', |
|
196 |
'isin': '\xe2\x88\x88', |
|
197 |
'Kappa': '\xce\x9a', |
|
198 |
'kappa': '\xce\xba', |
|
199 |
'Lambda': '\xce\x9b', |
|
200 |
'lambda': '\xce\xbb', |
|
201 |
'lang': '\xe2\x8c\xa9', |
|
202 |
'larr': '\xe2\x86\x90', |
|
203 |
'lArr': '\xe2\x87\x90', |
|
204 |
'lceil': '\xef\xa3\xae', |
|
205 |
'le': '\xe2\x89\xa4', |
|
206 |
'lfloor': '\xef\xa3\xb0', |
|
207 |
'lowast': '\xe2\x88\x97', |
|
208 |
'loz': '\xe2\x97\x8a', |
|
209 |
'minus': '\xe2\x88\x92', |
|
210 |
'mu': '\xc2\xb5', |
|
211 |
'Mu': '\xce\x9c', |
|
212 |
'nabla': '\xe2\x88\x87', |
|
213 |
'ne': '\xe2\x89\xa0', |
|
214 |
'ni': '\xe2\x88\x8b', |
|
215 |
'notin': '\xe2\x88\x89', |
|
216 |
'nsub': '\xe2\x8a\x84', |
|
217 |
'Nu': '\xce\x9d', |
|
218 |
'nu': '\xce\xbd', |
|
219 |
'oline': '\xef\xa3\xa5', |
|
220 |
'omega': '\xcf\x89', |
|
221 |
'Omega': '\xe2\x84\xa6', |
|
222 |
'Omicron': '\xce\x9f', |
|
223 |
'omicron': '\xce\xbf', |
|
224 |
'oplus': '\xe2\x8a\x95', |
|
225 |
'or': '\xe2\x88\xa8', |
|
226 |
'otimes': '\xe2\x8a\x97', |
|
227 |
'part': '\xe2\x88\x82', |
|
228 |
'perp': '\xe2\x8a\xa5', |
|
229 |
'Phi': '\xce\xa6', |
|
230 |
'phi': '\xcf\x95', |
|
231 |
'phis': '\xcf\x86', |
|
232 |
'Pi': '\xce\xa0', |
|
233 |
'pi': '\xcf\x80', |
|
234 |
'piv': '\xcf\x96', |
|
235 |
'prime': '\xe2\x80\xb2', |
|
236 |
'prod': '\xe2\x88\x8f', |
|
237 |
'prop': '\xe2\x88\x9d', |
|
238 |
'Psi': '\xce\xa8', |
|
239 |
'psi': '\xcf\x88', |
|
240 |
'radic': '\xe2\x88\x9a', |
|
241 |
'rang': '\xe2\x8c\xaa', |
|
242 |
'rarr': '\xe2\x86\x92', |
|
243 |
'rArr': '\xe2\x87\x92', |
|
244 |
'rceil': '\xef\xa3\xb9', |
|
245 |
'real': '\xe2\x84\x9c', |
|
246 |
'rfloor': '\xef\xa3\xbb', |
|
247 |
'Rho': '\xce\xa1', |
|
248 |
'rho': '\xcf\x81', |
|
249 |
'sdot': '\xe2\x8b\x85', |
|
250 |
'Sigma': '\xce\xa3', |
|
251 |
'sigma': '\xcf\x83', |
|
252 |
'sigmaf': '\xcf\x82', |
|
253 |
'sigmav': '\xcf\x82', |
|
254 |
'sim': '\xe2\x88\xbc', |
|
255 |
'spades': '\xe2\x99\xa0', |
|
256 |
'sub': '\xe2\x8a\x82', |
|
257 |
'sube': '\xe2\x8a\x86', |
|
258 |
'sum': '\xe2\x88\x91', |
|
259 |
'sup': '\xe2\x8a\x83', |
|
260 |
'supe': '\xe2\x8a\x87', |
|
261 |
'Tau': '\xce\xa4', |
|
262 |
'tau': '\xcf\x84', |
|
263 |
'there4': '\xe2\x88\xb4', |
|
264 |
'Theta': '\xce\x98', |
|
265 |
'theta': '\xce\xb8', |
|
266 |
'thetasym': '\xcf\x91', |
|
267 |
'thetav': '\xcf\x91', |
|
268 |
'trade': '\xef\xa3\xaa', |
|
269 |
'uarr': '\xe2\x86\x91', |
|
270 |
'uArr': '\xe2\x87\x91', |
|
271 |
'upsih': '\xcf\x92', |
|
272 |
'Upsilon': '\xce\xa5', |
|
273 |
'upsilon': '\xcf\x85', |
|
274 |
'weierp': '\xe2\x84\x98', |
|
275 |
'Xi': '\xce\x9e', |
|
276 |
'xi': '\xce\xbe', |
|
277 |
'Zeta': '\xce\x96', |
|
278 |
'zeta': '\xce\xb6', |
|
1931
784fce255e2d
Added in more special entities as suggested by Christoph Zwerschke
rgbecker
parents:
1736
diff
changeset
|
279 |
} |
96 | 280 |
|
281 |
#------------------------------------------------------------------------ |
|
518 | 282 |
class ParaFrag(ABag): |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
283 |
"""class ParaFrag contains the intermediate representation of string |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
284 |
segments as they are being parsed by the XMLParser. |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
285 |
fontname, fontSize, rise, textColor, cbDefn |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
286 |
""" |
96 | 287 |
|
2584
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
288 |
|
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
289 |
_greek2Utf8=None |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
290 |
def _greekConvert(data): |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
291 |
global _greek2Utf8 |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
292 |
if not _greek2Utf8: |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
293 |
from reportlab.pdfbase.rl_codecs import RL_Codecs |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
294 |
import codecs |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
295 |
dm = decoding_map = codecs.make_identity_dict(xrange(32,256)) |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
296 |
for k in xrange(0,32): |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
297 |
dm[k] = None |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
298 |
dm.update(RL_Codecs._RL_Codecs__rl_codecs_data['symbol'][0]) |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
299 |
_greek2Utf8 = {} |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
300 |
for k,v in dm.iteritems(): |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
301 |
if not v: |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
302 |
u = '\0' |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
303 |
else: |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
304 |
u = unichr(v).encode('utf8') |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
305 |
_greek2Utf8[chr(k)] = u |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
306 |
return ''.join(map(_greek2Utf8.__getitem__,data)) |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
307 |
|
96 | 308 |
#------------------------------------------------------------------ |
267
52a348f6c4c3
noted replication of XML markup comment between paraparser.py and paragraph.py
aaron_watters
parents:
266
diff
changeset
|
309 |
# !!! NOTE !!! THIS TEXT IS NOW REPLICATED IN PARAGRAPH.PY !!! |
2584
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
310 |
# The ParaFormatter will be able to format the following |
96 | 311 |
# tags: |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
312 |
# < /b > - bold |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
313 |
# < /i > - italics |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
314 |
# < u > < /u > - underline |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
315 |
# < super > < /super > - superscript |
1736 | 316 |
# < sup > < /sup > - superscript |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
317 |
# < sub > < /sub > - subscript |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
318 |
# <font name=fontfamily/fontname color=colorname size=float> |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
319 |
# < bullet > </bullet> - bullet text (at head of para only) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
320 |
# <onDraw name=callable label="a label"> |
2584
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
321 |
# <unichar name="unicode character name"/> |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
322 |
# <unichar value="unicode code point"/> |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
323 |
# <greek> - </greek> |
1683 | 324 |
# |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
325 |
# The whole may be surrounded by <para> </para> tags |
119 | 326 |
# |
96 | 327 |
# It will also be able to handle any MathML specified Greek characters. |
328 |
#------------------------------------------------------------------ |
|
329 |
class ParaParser(xmllib.XMLParser): |
|
330 |
||
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
331 |
#---------------------------------------------------------- |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
332 |
# First we will define all of the xml tag handler functions. |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
333 |
# |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
334 |
# start_<tag>(attributes) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
335 |
# end_<tag>() |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
336 |
# |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
337 |
# While parsing the xml ParaFormatter will call these |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
338 |
# functions to handle the string formatting tags. |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
339 |
# At the start of each tag the corresponding field will |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
340 |
# be set to 1 and at the end tag the corresponding field will |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
341 |
# be set to 0. Then when handle_data is called the options |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
342 |
# for that data will be aparent by the current settings. |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
343 |
#---------------------------------------------------------- |
96 | 344 |
|
1940 | 345 |
def __getattr__( self, attrName ): |
346 |
"""This way we can handle <TAG> the same way as <tag> (ignoring case).""" |
|
2369 | 347 |
if attrName!=attrName.lower() and attrName!="caseSensitive" and not self.caseSensitive and \ |
348 |
(attrName.startswith("start_") or attrName.startswith("end_")): |
|
349 |
return getattr(self,attrName.lower()) |
|
1940 | 350 |
raise AttributeError, attrName |
351 |
||
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
352 |
#### bold |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
353 |
def start_b( self, attributes ): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
354 |
self._push(bold=1) |
96 | 355 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
356 |
def end_b( self ): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
357 |
self._pop(bold=1) |
96 | 358 |
|
1940 | 359 |
def start_strong( self, attributes ): |
360 |
self._push(bold=1) |
|
361 |
||
362 |
def end_strong( self ): |
|
363 |
self._pop(bold=1) |
|
364 |
||
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
365 |
#### italics |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
366 |
def start_i( self, attributes ): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
367 |
self._push(italic=1) |
96 | 368 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
369 |
def end_i( self ): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
370 |
self._pop(italic=1) |
96 | 371 |
|
1940 | 372 |
def start_em( self, attributes ): |
373 |
self._push(italic=1) |
|
374 |
||
375 |
def end_em( self ): |
|
376 |
self._pop(italic=1) |
|
377 |
||
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
378 |
#### underline |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
379 |
def start_u( self, attributes ): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
380 |
self._push(underline=1) |
96 | 381 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
382 |
def end_u( self ): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
383 |
self._pop(underline=1) |
96 | 384 |
|
2575 | 385 |
#### link |
386 |
def start_link(self, attributes): |
|
387 |
self._push(**self.getAttributes(attributes,_linkAttrMap)) |
|
388 |
||
389 |
def end_link(self): |
|
390 |
frag = self._stack[-1] |
|
391 |
del self._stack[-1] |
|
392 |
assert frag.link!=None |
|
393 |
||
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
394 |
#### super script |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
395 |
def start_super( self, attributes ): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
396 |
self._push(super=1) |
96 | 397 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
398 |
def end_super( self ): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
399 |
self._pop(super=1) |
96 | 400 |
|
2376 | 401 |
start_sup = start_super |
402 |
end_sup = end_super |
|
1736 | 403 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
404 |
#### sub script |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
405 |
def start_sub( self, attributes ): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
406 |
self._push(sub=1) |
96 | 407 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
408 |
def end_sub( self ): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
409 |
self._pop(sub=1) |
96 | 410 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
411 |
#### greek script |
2376 | 412 |
#### add symbol encoding |
413 |
def handle_charref(self, name): |
|
414 |
try: |
|
2575 | 415 |
if name[0]=='x': |
416 |
n = int(name[1:],16) |
|
1931
784fce255e2d
Added in more special entities as suggested by Christoph Zwerschke
rgbecker
parents:
1736
diff
changeset
|
417 |
else: |
2575 | 418 |
n = int(name) |
419 |
except ValueError: |
|
2376 | 420 |
self.unknown_charref(name) |
421 |
return |
|
2575 | 422 |
self.handle_data(unichr(n).encode('utf8')) |
134 | 423 |
|
2376 | 424 |
def handle_entityref(self,name): |
425 |
if greeks.has_key(name): |
|
426 |
self.handle_data(greeks[name]) |
|
427 |
else: |
|
428 |
xmllib.XMLParser.handle_entityref(self,name) |
|
134 | 429 |
|
2376 | 430 |
def syntax_error(self,lineno,message): |
431 |
self._syntax_error(message) |
|
134 | 432 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
433 |
def _syntax_error(self,message): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
434 |
if message[:10]=="attribute " and message[-17:]==" value not quoted": return |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
435 |
self.errors.append(message) |
134 | 436 |
|
2584
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
437 |
def start_greek(self, attr): |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
438 |
self._push(greek=1) |
96 | 439 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
440 |
def end_greek(self): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
441 |
self._pop(greek=1) |
96 | 442 |
|
2584
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
443 |
def start_unichar(self, attr): |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
444 |
if attr.has_key('name'): |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
445 |
if attr.has_key('code'): |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
446 |
self._syntax_error('<unichar/> invalid with both name and code attributes') |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
447 |
try: |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
448 |
v = unicodedata.lookup(attr['name']).encode('utf8') |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
449 |
except KeyError: |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
450 |
self._syntax_error('<unichar/> invalid name attribute\n"%s"' % name) |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
451 |
v = '\0' |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
452 |
elif attr.has_key('code'): |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
453 |
try: |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
454 |
v = unichr(int(eval(attr['code']))).encode('utf8') |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
455 |
except: |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
456 |
self._syntax_error('<unichar/> invalid code attribute %s' % attr['code']) |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
457 |
v = '\0' |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
458 |
else: |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
459 |
v = None |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
460 |
if attr: |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
461 |
self._syntax_error('<unichar/> invalid attribute %s' % attr.keys()[0]) |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
462 |
|
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
463 |
if v is not None: |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
464 |
self.handle_data(v) |
2585 | 465 |
self._push(_selfClosingTag='unichar') |
2584
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
466 |
|
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
467 |
def end_unichar(self): |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
468 |
self._pop() |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
469 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
470 |
def start_font(self,attr): |
2575 | 471 |
self._push(**self.getAttributes(attr,_fontAttrMap)) |
96 | 472 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
473 |
def end_font(self): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
474 |
self._pop() |
96 | 475 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
476 |
def _initial_frag(self,attr,attrMap,bullet=0): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
477 |
style = self._style |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
478 |
if attr!={}: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
479 |
style = copy.deepcopy(style) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
480 |
_applyAttributes(style,self.getAttributes(attr,attrMap)) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
481 |
self._style = style |
119 | 482 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
483 |
# initialize semantic values |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
484 |
frag = ParaFrag() |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
485 |
frag.sub = 0 |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
486 |
frag.super = 0 |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
487 |
frag.rise = 0 |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
488 |
frag.underline = 0 |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
489 |
frag.greek = 0 |
2575 | 490 |
frag.link = None |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
491 |
if bullet: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
492 |
frag.fontName, frag.bold, frag.italic = ps2tt(style.bulletFontName) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
493 |
frag.fontSize = style.bulletFontSize |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
494 |
frag.textColor = hasattr(style,'bulletColor') and style.bulletColor or style.textColor |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
495 |
else: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
496 |
frag.fontName, frag.bold, frag.italic = ps2tt(style.fontName) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
497 |
frag.fontSize = style.fontSize |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
498 |
frag.textColor = style.textColor |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
499 |
return frag |
250 | 500 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
501 |
def start_para(self,attr): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
502 |
self._stack = [self._initial_frag(attr,_paraAttrMap)] |
119 | 503 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
504 |
def end_para(self): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
505 |
self._pop() |
119 | 506 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
507 |
def start_bullet(self,attr): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
508 |
if hasattr(self,'bFragList'): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
509 |
self._syntax_error('only one <bullet> tag allowed') |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
510 |
self.bFragList = [] |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
511 |
frag = self._initial_frag(attr,_bulletAttrMap,1) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
512 |
frag.isBullet = 1 |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
513 |
self._stack.append(frag) |
250 | 514 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
515 |
def end_bullet(self): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
516 |
self._pop() |
250 | 517 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
518 |
#--------------------------------------------------------------- |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
519 |
def start_seqdefault(self, attr): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
520 |
try: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
521 |
default = attr['id'] |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
522 |
except KeyError: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
523 |
default = None |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
524 |
self._seq.setDefaultCounter(default) |
266 | 525 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
526 |
def end_seqdefault(self): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
527 |
pass |
1683 | 528 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
529 |
def start_seqreset(self, attr): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
530 |
try: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
531 |
id = attr['id'] |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
532 |
except KeyError: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
533 |
id = None |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
534 |
try: |
2368 | 535 |
base = int(attr['base']) |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
536 |
except: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
537 |
base=0 |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
538 |
self._seq.reset(id, base) |
266 | 539 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
540 |
def end_seqreset(self): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
541 |
pass |
744
2abd99baf95b
Accepts seqdefault/seqDefault and seqreset/seqReset
andy_robinson
parents:
677
diff
changeset
|
542 |
|
2368 | 543 |
def start_seqchain(self, attr): |
544 |
try: |
|
545 |
order = attr['order'] |
|
546 |
except KeyError: |
|
547 |
order = '' |
|
548 |
order = order.split() |
|
549 |
seq = self._seq |
|
550 |
for p,c in zip(order[:-1],order[1:]): |
|
551 |
seq.chain(p, c) |
|
552 |
end_seqchain = end_seqreset |
|
553 |
||
554 |
def start_seqformat(self, attr): |
|
555 |
try: |
|
556 |
id = attr['id'] |
|
557 |
except KeyError: |
|
558 |
id = None |
|
559 |
try: |
|
560 |
value = attr['value'] |
|
561 |
except KeyError: |
|
562 |
value = '1' |
|
563 |
self._seq.setFormat(id,value) |
|
564 |
end_seqformat = end_seqreset |
|
565 |
||
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
566 |
# AR hacking in aliases to allow the proper casing for RML. |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
567 |
# the above ones should be deprecated over time. 2001-03-22 |
2368 | 568 |
start_seqDefault = start_seqdefault |
569 |
end_seqDefault = end_seqdefault |
|
570 |
start_seqReset = start_seqreset |
|
571 |
end_seqReset = end_seqreset |
|
572 |
start_seqChain = start_seqchain |
|
573 |
end_seqChain = end_seqchain |
|
574 |
start_seqFormat = start_seqformat |
|
575 |
end_seqFormat = end_seqformat |
|
1683 | 576 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
577 |
def start_seq(self, attr): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
578 |
#if it has a template, use that; otherwise try for id; |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
579 |
#otherwise take default sequence |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
580 |
if attr.has_key('template'): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
581 |
templ = attr['template'] |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
582 |
self.handle_data(templ % self._seq) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
583 |
return |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
584 |
elif attr.has_key('id'): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
585 |
id = attr['id'] |
1683 | 586 |
else: |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
587 |
id = None |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
588 |
output = self._seq.nextf(id) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
589 |
self.handle_data(output) |
1683 | 590 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
591 |
def end_seq(self): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
592 |
pass |
266 | 593 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
594 |
def start_onDraw(self,attr): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
595 |
defn = ABag() |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
596 |
if attr.has_key('name'): defn.name = attr['name'] |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
597 |
else: self._syntax_error('<onDraw> needs at least a name attribute') |
506 | 598 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
599 |
if attr.has_key('label'): defn.label = attr['label'] |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
600 |
defn.kind='onDraw' |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
601 |
self._push(cbDefn=defn) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
602 |
self.handle_data('') |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
603 |
self._pop() |
506 | 604 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
605 |
#--------------------------------------------------------------- |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
606 |
def _push(self,**attr): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
607 |
frag = copy.copy(self._stack[-1]) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
608 |
_applyAttributes(frag,attr) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
609 |
self._stack.append(frag) |
96 | 610 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
611 |
def _pop(self,**kw): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
612 |
frag = self._stack[-1] |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
613 |
del self._stack[-1] |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
614 |
for k, v in kw.items(): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
615 |
assert getattr(frag,k)==v |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
616 |
return frag |
96 | 617 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
618 |
def getAttributes(self,attr,attrMap): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
619 |
A = {} |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
620 |
for k, v in attr.items(): |
1940 | 621 |
if not self.caseSensitive: |
622 |
k = string.lower(k) |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
623 |
if k in attrMap.keys(): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
624 |
j = attrMap[k] |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
625 |
func = j[1] |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
626 |
try: |
2575 | 627 |
A[j[0]] = (func is None) and v or func(v) |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
628 |
except: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
629 |
self._syntax_error('%s: invalid value %s'%(k,v)) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
630 |
else: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
631 |
self._syntax_error('invalid attribute name %s'%k) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
632 |
return A |
119 | 633 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
634 |
#---------------------------------------------------------------- |
96 | 635 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
636 |
def __init__(self,verbose=0): |
1944 | 637 |
self.caseSensitive = 0 |
2376 | 638 |
xmllib.XMLParser.__init__(self,verbose=verbose) |
266 | 639 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
640 |
def _iReset(self): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
641 |
self.fragList = [] |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
642 |
if hasattr(self, 'bFragList'): delattr(self,'bFragList') |
250 | 643 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
644 |
def _reset(self, style): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
645 |
'''reset the parser''' |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
646 |
xmllib.XMLParser.reset(self) |
96 | 647 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
648 |
# initialize list of string segments to empty |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
649 |
self.errors = [] |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
650 |
self._style = style |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
651 |
self._iReset() |
96 | 652 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
653 |
#---------------------------------------------------------------- |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
654 |
def handle_data(self,data): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
655 |
"Creates an intermediate representation of string segments." |
96 | 656 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
657 |
frag = copy.copy(self._stack[-1]) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
658 |
if hasattr(frag,'cbDefn'): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
659 |
if data!='': syntax_error('Only <onDraw> tag allowed') |
2584
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
660 |
elif hasattr(frag,'_selfClosingTag'): |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
661 |
if data!='': syntax_error('No content allowed in %s tag' % frag._selfClosingTag) |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
662 |
return |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
663 |
else: |
1736 | 664 |
# if sub and super are both on they will cancel each other out |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
665 |
if frag.sub == 1 and frag.super == 1: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
666 |
frag.sub = 0 |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
667 |
frag.super = 0 |
96 | 668 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
669 |
if frag.sub: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
670 |
frag.rise = -frag.fontSize*subFraction |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
671 |
frag.fontSize = max(frag.fontSize-sizeDelta,3) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
672 |
elif frag.super: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
673 |
frag.rise = frag.fontSize*superFraction |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
674 |
frag.fontSize = max(frag.fontSize-sizeDelta,3) |
112 | 675 |
|
2584
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
676 |
if frag.greek: |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
677 |
frag.fontName = 'symbol' |
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
678 |
data = _greekConvert(data) |
514
3784fe357a72
Slight optimisation in handle_data for cbdefn frags
rgbecker
parents:
508
diff
changeset
|
679 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
680 |
# bold, italic, and underline |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
681 |
x = frag.fontName = tt2ps(frag.fontName,frag.bold,frag.italic) |
96 | 682 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
683 |
#save our data |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
684 |
frag.text = data |
514
3784fe357a72
Slight optimisation in handle_data for cbdefn frags
rgbecker
parents:
508
diff
changeset
|
685 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
686 |
if hasattr(frag,'isBullet'): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
687 |
delattr(frag,'isBullet') |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
688 |
self.bFragList.append(frag) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
689 |
else: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
690 |
self.fragList.append(frag) |
96 | 691 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
692 |
def handle_cdata(self,data): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
693 |
self.handle_data(data) |
211 | 694 |
|
2376 | 695 |
def _setup_for_parse(self,style): |
696 |
self._seq = reportlab.lib.sequencer.getSequencer() |
|
697 |
self._reset(style) # reinitialise the parser |
|
698 |
||
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
699 |
def parse(self, text, style): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
700 |
"""Given a formatted string will return a list of |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
701 |
ParaFrag objects with their calculated widths. |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
702 |
If errors occur None will be returned and the |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
703 |
self.errors holds a list of the error messages. |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
704 |
""" |
2575 | 705 |
# AR 20040612 - when we feed Unicode strings in, sgmlop |
706 |
# tries to coerce to ASCII. Must intercept, coerce to |
|
707 |
# any 8-bit encoding which defines most of 256 points, |
|
708 |
# and revert at end. Yuk. Preliminary step prior to |
|
709 |
# removal of parser altogether. |
|
710 |
enc = self._enc = 'cp1252' #our legacy default |
|
711 |
self._UNI = type(text) is UnicodeType |
|
712 |
if self._UNI: |
|
713 |
text = text.encode(enc) |
|
714 |
||
2376 | 715 |
self._setup_for_parse(style) |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
716 |
# the xmlparser requires that all text be surrounded by xml |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
717 |
# tags, therefore we must throw some unused flags around the |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
718 |
# given string |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
719 |
if not(len(text)>=6 and text[0]=='<' and _re_para.match(text)): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
720 |
text = "<para>"+text+"</para>" |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
721 |
self.feed(text) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
722 |
self.close() # force parsing to complete |
2376 | 723 |
return self._complete_parse() |
724 |
||
725 |
def _complete_parse(self): |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
726 |
del self._seq |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
727 |
style = self._style |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
728 |
del self._style |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
729 |
if len(self.errors)==0: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
730 |
fragList = self.fragList |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
731 |
bFragList = hasattr(self,'bFragList') and self.bFragList or None |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
732 |
self._iReset() |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
733 |
else: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
734 |
fragList = bFragList = None |
2575 | 735 |
|
736 |
if self._UNI: |
|
737 |
#reconvert to unicode |
|
738 |
if fragList: |
|
739 |
for frag in fragList: |
|
740 |
frag.text = unicode(frag.text, self._enc) |
|
741 |
if bFragList: |
|
742 |
for frag in bFragList: |
|
743 |
frag.text = unicode(frag.text, self._enc) |
|
744 |
||
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
745 |
return style, fragList, bFragList |
96 | 746 |
|
2376 | 747 |
def _tt_parse(self,tt): |
748 |
tag = tt[0] |
|
749 |
try: |
|
750 |
start = getattr(self,'start_'+tag) |
|
751 |
end = getattr(self,'end_'+tag) |
|
752 |
except AttributeError: |
|
753 |
raise ValueError('Invalid tag "%s"' % tag) |
|
754 |
start(tt[1] or {}) |
|
755 |
C = tt[2] |
|
756 |
if C: |
|
757 |
M = self._tt_handlers |
|
758 |
for c in C: |
|
759 |
M[type(c) is TupleType](c) |
|
760 |
end() |
|
761 |
||
762 |
def tt_parse(self,tt,style): |
|
763 |
'''parse from tupletree form''' |
|
764 |
self._setup_for_parse(style) |
|
765 |
self._tt_handlers = self.handle_data,self._tt_parse |
|
766 |
self._tt_parse(tt) |
|
767 |
return self._complete_parse() |
|
768 |
||
96 | 769 |
if __name__=='__main__': |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
770 |
from reportlab.platypus import cleanBlockQuotedText |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
771 |
_parser=ParaParser() |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
772 |
def check_text(text,p=_parser): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
773 |
print '##########' |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
774 |
text = cleanBlockQuotedText(text) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
775 |
l,rv,bv = p.parse(text,style) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
776 |
if rv is None: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
777 |
for l in _parser.errors: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
778 |
print l |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
779 |
else: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
780 |
print 'ParaStyle', l.fontName,l.fontSize,l.textColor |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
781 |
for l in rv: |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
782 |
print l.fontName,l.fontSize,l.textColor,l.bold, l.rise, '|%s|'%l.text[:25], |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
783 |
if hasattr(l,'cbDefn'): |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
784 |
print 'cbDefn',l.cbDefn.name,l.cbDefn.label,l.cbDefn.kind |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
785 |
else: print |
96 | 786 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
787 |
style=ParaFrag() |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
788 |
style.fontName='Times-Roman' |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
789 |
style.fontSize = 12 |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
790 |
style.textColor = black |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
791 |
style.bulletFontName = black |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
792 |
style.bulletFontName='Times-Roman' |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
793 |
style.bulletFontSize=12 |
96 | 794 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
795 |
text=''' |
2584
0fed2bd8ef90
reportlab: fixed <greek> added <unichar [name=..|code=../> to paragraph
rgbecker
parents:
2575
diff
changeset
|
796 |
<b><i><greek>a</greek>D</i></b>β<unichr value="0x394"/> |
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
797 |
<font name="helvetica" size="15" color=green> |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
798 |
Tell me, O muse, of that ingenious hero who travelled far and wide |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
799 |
after</font> he had sacked the famous town of Troy. Many cities did he visit, |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
800 |
and many were the nations with whose manners and customs he was acquainted; |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
801 |
moreover he suffered much by sea while trying to save his own life |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
802 |
and bring his men safely home; but do what he might he could not save |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
803 |
his men, for they perished through their own sheer folly in eating |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
804 |
the cattle of the Sun-god Hyperion; so the god prevented them from |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
805 |
ever reaching home. Tell me, too, about all these things, O daughter |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
806 |
of Jove, from whatsoever source you<super>1</super> may know them. |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
807 |
''' |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
808 |
check_text(text) |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
809 |
check_text('<para> </para>') |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
810 |
check_text('<para font="times-bold" size=24 leading=28.8 spaceAfter=72>ReportLab -- Reporting for the Internet Age</para>') |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
811 |
check_text(''' |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
812 |
<font color=red>τ</font>Tell me, O muse, of that ingenious hero who travelled far and wide |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
813 |
after he had sacked the famous town of Troy. Many cities did he visit, |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
814 |
and many were the nations with whose manners and customs he was acquainted; |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
815 |
moreover he suffered much by sea while trying to save his own life |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
816 |
and bring his men safely home; but do what he might he could not save |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
817 |
his men, for they perished through their own sheer folly in eating |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
818 |
the cattle of the Sun-god Hyperion; so the god prevented them from |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
819 |
ever reaching home. Tell me, too, about all these things, O daughter |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
820 |
of Jove, from whatsoever source you may know them.''') |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
821 |
check_text(''' |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
822 |
Telemachus took this speech as of good omen and rose at once, for |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
823 |
he was bursting with what he had to say. He stood in the middle of |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
824 |
the assembly and the good herald Pisenor brought him his staff. Then, |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
825 |
turning to Aegyptius, "Sir," said he, "it is I, as you will shortly |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
826 |
learn, who have convened you, for it is I who am the most aggrieved. |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
827 |
I have not got wind of any host approaching about which I would warn |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
828 |
you, nor is there any matter of public moment on which I would speak. |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
829 |
My grieveance is purely personal, and turns on two great misfortunes |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
830 |
which have fallen upon my house. The first of these is the loss of |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
831 |
my excellent father, who was chief among all you here present, and |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
832 |
was like a father to every one of you; the second is much more serious, |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
833 |
and ere long will be the utter ruin of my estate. The sons of all |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
834 |
the chief men among you are pestering my mother to marry them against |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
835 |
her will. They are afraid to go to her father Icarius, asking him |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
836 |
to choose the one he likes best, and to provide marriage gifts for |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
837 |
his daughter, but day by day they keep hanging about my father's house, |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
838 |
sacrificing our oxen, sheep, and fat goats for their banquets, and |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
839 |
never giving so much as a thought to the quantity of wine they drink. |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
840 |
No estate can stand such recklessness; we have now no Ulysses to ward |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
841 |
off harm from our doors, and I cannot hold my own against them. I |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
842 |
shall never all my days be as good a man as he was, still I would |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
843 |
indeed defend myself if I had power to do so, for I cannot stand such |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
844 |
treatment any longer; my house is being disgraced and ruined. Have |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
845 |
respect, therefore, to your own consciences and to public opinion. |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
846 |
Fear, too, the wrath of heaven, lest the gods should be displeased |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
847 |
and turn upon you. I pray you by Jove and Themis, who is the beginning |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
848 |
and the end of councils, [do not] hold back, my friends, and leave |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
849 |
me singlehanded- unless it be that my brave father Ulysses did some |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
850 |
wrong to the Achaeans which you would now avenge on me, by aiding |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
851 |
and abetting these suitors. Moreover, if I am to be eaten out of house |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
852 |
and home at all, I had rather you did the eating yourselves, for I |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
853 |
could then take action against you to some purpose, and serve you |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
854 |
with notices from house to house till I got paid in full, whereas |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
855 |
now I have no remedy."''') |
133 | 856 |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
857 |
check_text(''' |
133 | 858 |
But as the sun was rising from the fair sea into the firmament of |
859 |
heaven to shed light on mortals and immortals, they reached Pylos |
|
860 |
the city of Neleus. Now the people of Pylos were gathered on the sea |
|
861 |
shore to offer sacrifice of black bulls to Neptune lord of the Earthquake. |
|
862 |
There were nine guilds with five hundred men in each, and there were |
|
863 |
nine bulls to each guild. As they were eating the inward meats and |
|
864 |
burning the thigh bones [on the embers] in the name of Neptune, Telemachus |
|
865 |
and his crew arrived, furled their sails, brought their ship to anchor, |
|
866 |
and went ashore. ''') |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
867 |
check_text(''' |
133 | 868 |
So the neighbours and kinsmen of Menelaus were feasting and making |
869 |
merry in his house. There was a bard also to sing to them and play |
|
870 |
his lyre, while two tumblers went about performing in the midst of |
|
871 |
them when the man struck up with his tune.]''') |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
872 |
check_text(''' |
133 | 873 |
"When we had passed the [Wandering] rocks, with Scylla and terrible |
874 |
Charybdis, we reached the noble island of the sun-god, where were |
|
875 |
the goodly cattle and sheep belonging to the sun Hyperion. While still |
|
876 |
at sea in my ship I could bear the cattle lowing as they came home |
|
877 |
to the yards, and the sheep bleating. Then I remembered what the blind |
|
878 |
Theban prophet Teiresias had told me, and how carefully Aeaean Circe |
|
879 |
had warned me to shun the island of the blessed sun-god. So being |
|
880 |
much troubled I said to the men, 'My men, I know you are hard pressed, |
|
881 |
but listen while I tell you the prophecy that Teiresias made me, and |
|
882 |
how carefully Aeaean Circe warned me to shun the island of the blessed |
|
883 |
sun-god, for it was here, she said, that our worst danger would lie. |
|
884 |
Head the ship, therefore, away from the island.''') |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
885 |
check_text('''A<B>C&D"E'F''') |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
886 |
check_text('''A< B> C& D" E' F''') |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
887 |
check_text('''<![CDATA[<>&'"]]>''') |
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
888 |
check_text('''<bullet face=courier size=14 color=green>+</bullet> |
250 | 889 |
There was a bard also to sing to them and play |
890 |
his lyre, while two tumblers went about performing in the midst of |
|
891 |
them when the man struck up with his tune.]''') |
|
1677
1450177dd19e
Exterminated all tab characters and added a test to make sure
andy_robinson
parents:
1160
diff
changeset
|
892 |
check_text('''<onDraw name="myFunc" label="aaa bbb">A paragraph''') |
1736 | 893 |
check_text('''<para><onDraw name="myFunc" label="aaa bbb">B paragraph</para>''') |
1940 | 894 |
# HVB, 30.05.2003: Test for new features |
895 |
_parser.caseSensitive=0 |
|
896 |
check_text('''Here comes <FONT FACE="Helvetica" SIZE="14pt">Helvetica 14</FONT> with <STRONG>strong</STRONG> <EM>emphasis</EM>.''') |
|
897 |
check_text('''Here comes <font face="Helvetica" size="14pt">Helvetica 14</font> with <Strong>strong</Strong> <em>emphasis</em>.''') |
|
898 |
check_text('''Here comes <font face="Courier" size="3cm">Courier 3cm</font> and normal again.''') |