Attachment 'figures-1.3.py'
Download 1 #-*- coding: utf-8 -*-
2 '''
3 MoinMoin - figures parser, Version 1.3, 15.01.2011
4
5 A simple parser that reads key:value pairs from a listing of figures (attachments) and captions then formats these for display in as tables. Defaults to three column table with captions below centred figures (centred if less than three in the row). If more than three key:value pairs are provided additional rows are added to the table. The user can set options to (1) force a single or double column table, (2) place captions to the left or right of the figures, (3) set figures left or right justified, (4) give figures a width other than the default of 33% (a value from 25 to 100% is permitted), and (5) show only the markup for re-use with modifications, if desired, or for debugging purposes. The number of columns is set dynamically, if specified widths are two wide for 3 columns (ie if 34-50% then two columns forced and if >50% a single column is forced).
6
7 The key:value list must be in the form " figure_file:: caption" with a leading space (as moin dictionary entries). All non-conforming lines are ignored without warning.
8
9 The parser is intended for page section use only. The parser name is followed by a list of keywords separated by spaces to specify any options required.
10
11 Keywords
12
13 c-1 : forces single column only. Overides c-2, if both options given, as single column takes precedence.
14
15 c-2 : forces double column only, if the requested width 50% or less. Default is three columns, so no col-3 is not needed.
16
17 c-left : caption to left of image. Overides c-none or c-right, if more than one option given, as left takes precedence.
18
19 c-none : ignore captions.
20
21 c-right : caption to right of image. Overides c-none, if both options given, as right takes precedence over none.
22
23 f-left : figures set left. Overides f-right, if both options given, as left takes precedence.
24
25 f-right : figures set right.
26
27 nnn% : requested width of figure (including caption if set to left or right), where n is digits from 25 to 100. If outside this range, the default 33% is applied and no warning is given. If two or more width options are given, the first takes precedence and others are ignored (even if the first is invalid and the default widith applied). The value is checked and if 34-50% two columns are forced, and if >50% then a single column is forced.
28
29 markup : shows the markup if you wish to re-use this with modification (assuming the default tabulation does not suit a specific purpose) or for debugging purposes.
30
31 # : inserted at the beginning of the caption overrides caption inclusion and any associated padding. Inclusion of caption text is option and effectively acts as a comment. Overidding captions can result in uneven multiple row layout where rows have different number of images and/or overidden captions. Therefore, this feature in recommended only for single row layouts. Also, caption and padding cells are not generated, so the sum of the cell widths is less than the table width and the figures and remaining captions will increase in size proportionally. Values set by the nnn% argument therefore become nominal only.
32
33 Defaults are caption and figure centred, width 33%, three columns (so no options for these are needed).
34
35 Keywords can appear in any order, other than as indicated above for conflicting choices.
36
37 Usage
38
39 {{{#!figures [c-1|c-2 ][c-left|c-none|c-right ][f-left|f-right ][nnn% ][markup ]
40 figure_file:: [#]caption
41 figure_file:: [#]caption
42 ...
43 }}}
44
45 History
46
47 Version 1.3 - 15.01.2011: fixed the wiki formatting by setting inhibit_p to True.
48 Version 1.2 - 13.01.2011: allowed for caption to overridden; right justified left positioned captions; other minor fixes
49 Version 1.1 - 11.01.2011: reverted to Python 2.5 string formatting
50 Version 1.0 - 11.01.2011: initial version
51
52 Developed with inspiration and code from:
53
54 keyval.py parser - @copyright: 2006 by Matt Cooper <macooper@vt.edu>
55 sort.py parser - @copyright: 2005 ReimarBauer
56
57 Copyright
58
59 @copyright: 2011 Ian Riley <ian.riley@adelaide.edu.au>
60
61 License
62
63 GNU GPL, see COPYING for details.
64 '''
65
66 Dependencies = []
67
68 from MoinMoin.parser import text_moin_wiki as wiki
69 from MoinMoin import wikiutil
70 from operator import itemgetter
71
72 class Parser:
73 parsername = 'figures'
74
75 def __init__(self, raw, request, **kw):
76 self.raw = raw
77 self.request = request
78 self.form = request.form
79 self._ = request.getText
80 self.args = kw.get('format_args', '')
81
82 def format(self, formatter):
83 eol = u'\n'
84 sep = u':: '
85 space = u' '
86 ignore = u'#'
87 percent = u'%'
88 brk = u'<<BR>>'
89 parsing = (u"{{{", u"}}}", )
90 tab = u'||<tablestyle="width:100%; " '
91 cell = u'||<%(align)s style="border:none; width:%(width)s%%; ">'
92 padcell = u'||<style="border:none; width:%(pad)s%%; ">'
93 cellf = u'||\n'
94 att = u'{{attachment:%(att)s||width=100%%}}'
95 cap = u'%(cap)s'
96 options, figures, rows, results = ([], [], [], [])
97 figs, ignored, layout, padding = (0, 0, 0, 0, )
98 left, centre, right, void = (0, 1, 2, 3, )
99 top, mid, bot, ljust, cjust, rjust = (u'^', u'', u'v', u'(', u':', u')', )
100 max_cols = 3
101 std_width = 33
102 min_widths = (0, 25, 26, 25, )
103 max_widths = (0, 100, 50, 30, )
104 aligns = (mid, top, mid, mid, ) # TODO consider making this a selectable option
105 justs = (rjust, ljust, ljust, ljust, ) # leave centred (ie underneath) caption left justified
106 # for captions (left, centre, right, none,)
107 layouts = (cell+cap+cell+att, cell+att+brk+cap, cell+att+cell+cap, cell+att, )
108 max_widths = (0, 100, 50, 33, )
109
110 # TODO add a 4 column option min and max of 25%
111
112 #set defaults which might get changed
113 cap_pos = centre
114 fig_pos = centre
115 req_width = std_width
116
117 # set options
118 options = self.args.split(space)
119 if "c-none" in options:
120 cap_pos = void
121 if "c-right" in options: # do second as right takes precedence
122 cap_pos = right
123 if "c-left" in options: # do last as left takes precedence
124 cap_pos = left
125 if "c-2" in options:
126 max_cols = 2
127 if "c-1" in options: # do second as single column takes precedence
128 max_cols = 1
129 if "f-right" in options:
130 fig_pos = right
131 if "f-left" in options: # do second as left takes precedence
132 fig_pos = left
133 markup = "markup" in options
134 for option in options:
135 if option.endswith(percent):
136 try:
137 req_width = int(option.rstrip(percent)) # will check this value later
138 except:
139 pass
140 break # do not look for any more width options
141 del options
142 # check requested width in range or set default
143 if (req_width > max_widths[1]) or (req_width < min_widths[3]):
144 req_width = std_width
145 # dynamically set maximum columns depending on requested width
146 for i in (3, 2):
147 if req_width > max_widths[i]:
148 max_cols = i - 1
149 # calculate widths for capations (left, centre, right)
150 widths = (int(req_width / 2), req_width, int(req_width / 2), req_width, )
151
152 # process the lines of text provided
153 lines = self.raw.split(eol)
154 for line in lines:
155 if line:
156 # handle figure lines
157 if (line[0] == space) and (sep in line):
158 key, val = (line.lstrip(space)).split(sep)
159 figures.append((key, val, ))
160 if val.startswith(ignore):
161 ignored = ignored + 1
162 del lines
163
164 # construct a list of row column numbers
165 figs = len(figures)
166 while figs >= max_cols:
167 rows.append(max_cols)
168 figs = figs - max_cols
169 if figs > 0:
170 rows.append(figs)
171
172 # construct output for columns in rows
173 def calc_padding():
174 table_width = int(100 / max_cols) * max_cols
175 item_width = widths[cap_pos]
176 if (cap_pos in (left, right, )): # offset caption so double for image + caption
177 item_width = item_width * 2
178 if fig_pos == centre: # centred so needs smaller interspersed padding
179 padding = int((table_width - (item_width * cols)) / (cols + 1))
180 else: # not centred so just one wider padding
181 padding = int(table_width - (item_width * cols))
182 return padding
183
184 def add_padding(seq):
185 yes_pad = False
186 if padding == 0:
187 return ''
188 if seq == 0:
189 yes_pad = (fig_pos == right)
190 elif seq == 1:
191 yes_pad = (fig_pos == centre) and \
192 ((cap_pos in (centre, void, )) or \
193 (first_col) or \
194 ((cap_pos == left) and (layout != void)))
195 elif seq == 2:
196 yes_pad = (fig_pos == centre) and \
197 ((cols == 1) or \
198 ((cap_pos == right) and (layout != void)))
199 elif seq == 3:
200 yes_pad = (fig_pos == left)
201
202 if yes_pad:
203 return (padcell % {'pad': padding})
204 else:
205 return ''
206
207 for cols in rows:
208 first_col = True
209 pending = ''
210 padding = calc_padding()
211 pending = pending + add_padding(0)
212 while cols > 0:
213 figure = figures.pop(0)
214 if figure[1].startswith(ignore):
215 layout = void
216 else:
217 layout = cap_pos
218 pending = pending + add_padding(1)
219 pending = pending + \
220 (layouts[layout] % {'align': aligns[cap_pos]+justs[cap_pos], \
221 'width': widths[cap_pos], \
222 'att': figure[0], \
223 'cap': figure[1]})
224 pending = pending + add_padding(2)
225 cols = cols - 1
226 first_col = False
227 pending = pending + add_padding(3)
228 pending = tab + pending[3:] + cellf # insert tablestyle and close table
229 results.append(pending)
230 del rows, figures
231
232 # escape markup if requested
233 if markup:
234 results.insert(0, parsing[0])
235 results.append(parsing[1])
236
237 wikiizer = wiki.Parser(eol.join(results), self.request)
238 wikiizer.format(formatter, inhibit_p=True)
You are not allowed to attach a file to this page.