1 |
|
2010-11-08 Roland Geider <[email protected]> |
2 |
|
|
3 |
|
* formed/formed/plugins/export/xsd.py: validate formedtree.xml |
4 |
|
|
5 |
|
2010-11-08 Roland Geider <[email protected]> |
6 |
|
|
7 |
|
* formed/formed/model/data.py, |
8 |
|
formed/formed/plugins/export/xsd.py, |
9 |
|
formed/formed/config.py: issue1131: generate XSD for case exports |
10 |
|
|
11 |
|
2010-10-21 Torsten Irlaender <[email protected]> |
12 |
|
|
13 |
|
* formed/formed/plugins/export/rules_sh.py: Added new LE-Operator |
14 |
|
* formed/formed/plugins/modify/rules.py: Add error rule to force phase |
15 |
|
relevant datefields not to be "unknown". |
16 |
|
|
17 |
|
2010-10-12 Roland Geider <[email protected]> |
18 |
|
|
19 |
|
* formed/formed/plugins/export/rules_sh.py: Ignore rules if any fields |
20 |
|
in the rule are in a repeat group |
21 |
|
|
22 |
|
2010-10-11 Roland Geider <[email protected]> |
23 |
|
|
24 |
|
* formed/plugins/export/rules_sh.py: Added support to more opperators |
25 |
|
to be able to export the WASKO case |
26 |
|
|
27 |
|
2010-10-06 Torsten Irlaender <[email protected]> |
28 |
|
|
29 |
|
* formed/formed/plugins/export/rules_sh.py (generate_tagging): Fixed |
30 |
|
gerating SQL for Rules |
31 |
|
* formed/formed/plugins/export/rules_sh.py (sql_date): Fixed sql_date |
32 |
|
function. |
33 |
|
|
34 |
|
2010-10-05 Torsten Irländer <[email protected]> |
35 |
|
|
36 |
|
* formed/formed/model/data.py: Fixed error when setting tag attribute. |
37 |
|
* formed/formed/plugins/export/rules_sh.py: Added generating exporting |
38 |
|
tagging-xml |
39 |
|
* formed/formed/plugins/modify/rules.py: Do not generate automatic |
40 |
|
tagids for rules. |
41 |
|
|
42 |
|
2010-10-04 Torsten Irländer <[email protected]> |
43 |
|
|
44 |
|
* formed/formed/model/data.py (RuleLeaf.__init__): Added new attribute |
45 |
|
"tag" for rule-leafs |
46 |
|
* formed/formed/config.py: Added export rules as XML to Menu |
47 |
|
* formed/formed/plugins/modify/rules.py |
48 |
|
(GenerateRequiredRules.generateDateSequenceRules): Generate automatic |
49 |
|
tag ids for date-sequence rules |
50 |
|
|
51 |
|
2010-09-30 Torsten Irländer <[email protected]> |
52 |
|
|
53 |
|
* formed/formed/plugins/export/rules_sh.py |
54 |
|
(ExportRulesAsSH.doExport): Filter out duplicted rules. |
55 |
|
|
56 |
|
2010-09-20 Frank Koormann <[email protected]> |
57 |
|
|
58 |
|
* formed/formed/plugins/export/latex.py (RecursiveExporter): |
59 |
|
Add "required"-field information to output and include |
60 |
|
choice list contents. |
61 |
|
|
62 |
|
2010-09-16 Bernhard Herzog <[email protected]> |
63 |
|
|
64 |
|
Avoid database deadlocks that can happen when database clients try |
65 |
|
to work with the same case using two separate database |
66 |
|
connections. See mpuls/issue1145 for details. |
67 |
|
|
68 |
|
* formed/formed/plugins/export/rg_sql.py (SQL_TEMPLATE): Split the |
69 |
|
computation of the new json structure description into the new |
70 |
|
database function compute_case_structure |
71 |
|
(TRIGGER_TMPL): Change the trigger functions to immediately update |
72 |
|
the cached json structure description instead of just setting the |
73 |
|
modified flag. This avoids the lazy recomputation that makes what |
74 |
|
seems like a read-only access (calling get_case_structure) into a |
75 |
|
writing access (updates of the cache). The writes lock the row in |
76 |
|
the case_structure table which prevent other connections from |
77 |
|
accessing the same case. As part of this, the delete triggers are |
78 |
|
now AFTER triggers because the repeat groups instance must have |
79 |
|
been removed when the structure is recomputed. |
80 |
|
(SUBSELECT_TMPL): Since the delete trigger is now an after |
81 |
|
trigger, we need to change the way the master id is computed. We |
82 |
|
cannot join with the repeatgroup table in question because the row |
83 |
|
has already been deleted. However, we can use the master_id |
84 |
|
column of the OLD row to select the row of the parent table. |
85 |
|
(create_triggers): Avoid the inner joins with the current repeat |
86 |
|
group for the above mentioned reasons. In the very common case of |
87 |
|
repeat groups which are direct children of the master_tbl, we can |
88 |
|
compare the master_tbl.id directly with the row's master_id. |
89 |
|
|
90 |
|
2010-09-14 Roland Geider <[email protected]> |
91 |
|
|
92 |
|
* formed/formed/plugins/export/xsd.py: issue1131: update XSD for new |
93 |
|
formedtree structure |
94 |
|
|
95 |
|
2010-09-01 Roland Geider <[email protected]> |
96 |
|
|
97 |
|
* formed/formed/plugins/modify/rules.py: issue1050: mandatory fields |
98 |
|
appearing double. |
99 |
|
The problem was that the way the formEditor handled fields with |
100 |
|
manually created rules changed. Instead of ignoring fields (very |
101 |
|
early behaviour) or always generating them (early behaviour), now the |
102 |
|
formED will only ignore fields with rules which name starts with |
103 |
|
'required-rule-manual'. This is helpful when the rules for mandatory |
104 |
|
fields are more complex (e.g. mother's name is only required if |
105 |
|
mother is known). |
106 |
|
|
107 |
|
2010-08-10 Torsten Irländer <[email protected]> |
108 |
|
|
109 |
|
* contrib/diff_formed.py: New helperscript to diff to given |
110 |
|
formedtrees |
111 |
|
|
112 |
|
2010-08-09 Roland Geider <[email protected]> |
113 |
|
|
114 |
|
* formed/model/exprtree.py: fixed typo |
115 |
|
|
116 |
|
2010-08-04 Bernhard Herzog <[email protected]> |
117 |
|
|
118 |
|
* formed/po/de_DE.po: Update translations |
119 |
|
|
120 |
|
2010-08-04 Bernhard Herzog <[email protected]> |
121 |
|
|
122 |
|
* formed/po/formed.pot: Regenerated. |
123 |
|
|
124 |
|
* formed/po/de_DE.po: Update. |
125 |
|
|
126 |
|
2010-08-04 Bernhard Herzog <[email protected]> |
127 |
|
|
128 |
|
* formed/po/Makefile: Use correct filename of the pot-file in the |
129 |
|
usage message |
130 |
|
|
131 |
|
2010-08-04 Bernhard Herzog <[email protected]> |
132 |
|
|
133 |
|
* formed/po/Makefile (LIST_POTFILES): Sort the file names to make |
134 |
|
the order of entries in the .pot-file more predictable. |
135 |
|
|
136 |
|
2010-08-04 Bernhard Herzog <[email protected]> |
137 |
|
|
138 |
|
* formed/formed/model/nodecomponents.py (RootNode.__init__) |
139 |
|
(RootNode.getVersion, RootNode.setVersion): Add attribute |
140 |
|
"version" and accessor methods. |
141 |
|
|
142 |
|
* formed/formed/main.py (MainFrame.OnSetDocumentVersion): New. Let |
143 |
|
the user set the document version. |
144 |
|
(MainFrame._createMenuBar): Add menu item for OnSetDocumentVersion |
145 |
|
|
146 |
|
2010-08-02 Bernhard Herzog <[email protected]> |
147 |
|
|
148 |
|
* formed/formed.py, formed/formed/io/document.py, |
149 |
|
formed/formed/io/factories.py, formed/formed/io/parser.py, |
150 |
|
formed/formed/model/data.py, formed/formed/model/event.py, |
151 |
|
formed/formed/model/expr.py, formed/formed/model/exprtree.py, |
152 |
|
formed/formed/model/memory.py, formed/formed/model/misc.py, |
153 |
|
formed/formed/model/nodecomponents.py, |
154 |
|
formed/formed/model/persistent.py: Fix coding declaration to be |
155 |
|
acceptable to both python and Emacs. |
156 |
|
|
157 |
|
2010-07-29 Torsten Irländer <[email protected]> |
158 |
|
|
159 |
|
* formed/formed/model/data.py: Added "invisible" attribute to |
160 |
|
BoolLeafs. This can be used to hide options in choicelists. so the |
161 |
|
user can not select the value in the user interface. But the db will |
162 |
|
have this option so is ist still present in the db an can be used |
163 |
|
* formed/formed/model/exprtree.py: Added "days" function. |
164 |
|
|
165 |
|
2010-07-26 Roland Geider <[email protected]> |
166 |
|
|
167 |
|
* formed/formed/model/nodecomponents.py, |
168 |
|
formed/formed/plugins/modify/rules.py: generated date rules take |
169 |
|
into consideration repeat groups |
170 |
|
|
171 |
|
2010-07-21 Torsten Irländer <[email protected]> |
172 |
|
|
173 |
|
Issue870 |
174 |
|
|
175 |
|
* formed/formed/plugins/modify/rules.py (descriptions): Do not collect |
176 |
|
all headers to the referenced fields. Only list labels of the error |
177 |
|
fields, which should be distinct enough. |
178 |
|
|
179 |
|
Issue851 |
180 |
|
|
181 |
|
* formed/formed/model/data.py |
182 |
|
formed/formed/plugins/export/new_sql.py |
183 |
|
formed/formed/plugins/web/view_renderer.py |
184 |
|
formed/formed/io/document.py |
185 |
|
formed/formed/config.py: Added Float-Field to Formed |
186 |
|
|
187 |
|
2010-06-11 Bernhard Herzog <[email protected]> |
188 |
|
|
189 |
|
* formed/formed/plugins/export/rg_sql.py |
190 |
|
(CREATE_DELETE_MASTER_TMPL): In create_master_tbl, call |
191 |
|
create_master_ds to create the master tbl entry. This way we can |
192 |
|
add SQL code that's specific to an MPuls instance to |
193 |
|
create_master_ds and still have create_master_tbl use that new |
194 |
|
code. This is useful for e.g. the JMD-Struktur part. |
195 |
|
|
196 |
|
2010-06-02 Roland Geider <[email protected]> |
197 |
|
|
198 |
|
* formed/formed/plugins/modify/rules.py: make the names of generated |
199 |
|
date-sequence-rules unique |
200 |
|
|
201 |
|
2010-06-02 Roland Geider <[email protected]> |
202 |
|
|
203 |
|
* formed/plugins/export/xls.py: updated regular expression |
204 |
|
|
205 |
|
2010-05-17 Frank Koormann <[email protected]> |
206 |
|
|
207 |
|
* formed/formed/plugins/export/latex.py: Improved section labeling. |
208 |
|
|
209 |
|
* formed/formed/plugins/export/xls.py: |
210 |
|
Export references (ie where are the lists used). |
211 |
|
|
212 |
|
2010-04-30 Torsten Irländer <[email protected]> |
213 |
|
|
214 |
|
* formed/formed/plugins/modify/rules.py (VariableType.substitute): Do |
215 |
|
not generate "%"-rules for required fields in repeat-groups. |
216 |
|
|
217 |
|
2010-04-28 Roland Geider <[email protected]> |
218 |
|
|
219 |
|
* formed/plugins/export/xls.py: Radiogroups are exported |
220 |
|
* formed/plugins/export/xsd.py: WASKA formedtree.xml validates XSD |
221 |
|
JMD formedtree.xml validates XSD |
222 |
|
|
223 |
|
2010-04-08 Torsten Irländer <[email protected]> |
224 |
|
|
225 |
|
* formed/formed/plugins/modify/rules.py |
226 |
|
(GenerateRequiredRules.generateDateSequenceRules): Add error mark to |
227 |
|
rules. Generete each rule twice to be able to render errors at both |
228 |
|
datefields. |
229 |
|
|
230 |
|
2010-04-07 Torsten Irländer <[email protected]> |
231 |
|
|
232 |
|
* formed/formed/plugins/export/rg_sql.py: Added "Revision"-Tag. |
233 |
|
|
234 |
|
2010-04-06 Torsten Irländer <[email protected]> |
235 |
|
|
236 |
|
* formed/formed/io/document.py (_toXML): Added comment with |
237 |
|
"$Revision"-tag. This tag will/can then be substituted by the VCS. |
238 |
|
* formed/formed/plugins/export/new_sql.py |
239 |
|
(ExportAsSQLFilter.doExport): Added comment with |
240 |
|
"$Revision"-tag. This tag will/can then be substituted by the VCS. |
241 |
|
* formed/formed/model/exprtree.py: Added years operator. |
242 |
|
|
243 |
|
2010-03-30 Roland Geider <[email protected]> |
244 |
|
|
245 |
|
* formed/formed/plugins/export/latex.py: Added filter |
246 |
|
|
247 |
|
2010-03-25 Roland Geider <[email protected]> |
248 |
|
|
249 |
|
* formed/formed/plugins/export/xsd.py: Generate valid XML |
250 |
|
|
251 |
|
2010-02-11 Frank Koormann <[email protected]> |
252 |
|
|
253 |
|
* formed/formed/plugins/export/xls.py: Allow groups in choices. |
254 |
|
|
255 |
|
2009-12-02 Torsten Irländer <[email protected]> |
256 |
|
|
257 |
|
* formed/formed/plugins/export/typemap.py: do not ignore conditional |
258 |
|
nodes on traversal. |
259 |
|
|
260 |
|
2009-11-17 Sascha L. Teichmann <[email protected]> |
261 |
|
|
262 |
|
* formed/formed/model/exprtree.py: Recognize '%' vars |
263 |
|
in compilation. Does not eval it! |
264 |
|
|
265 |
|
* formed/formed/plugins/modify/rules.py: Generate '%' vars |
266 |
|
for variables in repeat groups. |
267 |
|
|
268 |
|
2009-11-13 Sascha L. Teichmann <[email protected]> |
269 |
|
|
270 |
|
* formed/formed/plugins/export/typemap.py: Fixed to work |
271 |
|
with new repeat group nodes. |
272 |
|
|
273 |
|
2009-10-28 Sascha L. Teichmann <[email protected]> |
274 |
|
|
275 |
|
* formed/formed/plugins/export/xsd.py, |
276 |
|
formed/formed/plugins/export/sql.py, |
277 |
|
formed/formed/plugins/export/new_sql.py: Allow groups in choices. |
278 |
|
|
279 |
|
2009-10-07 Frank Koormann <[email protected]> |
280 |
|
|
281 |
|
* formed/formed/plugins/export/latex.py: |
282 |
|
Adjusted textprocessing to escape tex-active characters. |
283 |
|
|
284 |
|
2009-10-07 Sascha L. Teichmann <[email protected]> |
285 |
|
|
286 |
|
* formed/formed/plugins/export/html.py, formed/formed/plugins/export/latex.py, |
287 |
|
formed/formed/plugins/export/html2.py: Adjusted to cope with |
288 |
|
"semi-complete" implementation of logbook tree structure. |
289 |
|
|
290 |
|
2009-06-18 Torsten Irländer <[email protected]> |
291 |
|
|
292 |
|
* formed/formed/plugins/export/new_sql.py, |
293 |
|
formed/formed/plugins/export/rg_sql.py: Fixed some sql errors, and |
294 |
|
added permissions. |
295 |
|
|
296 |
|
2009-06-18 Torsten Irländer <[email protected]> |
297 |
|
|
298 |
|
* formed/formed/plugins/export/new_sql.py: Commented out generation of |
299 |
|
page_views, as they do not work with rgroups. |
300 |
|
|
301 |
|
2009-06-17 Torsten Irländer <[email protected]> |
302 |
|
|
303 |
|
* formed/formed/plugins/export/new_sql.py: Fixed anonymize function |
304 |
|
and rolenames. |
305 |
|
|
306 |
|
2009-06-17 Sascha L. Teichmann <[email protected]> |
307 |
|
|
308 |
|
* formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names. |
309 |
|
|
310 |
|
2009-05-26 Sascha L. Teichmann <[email protected]> |
311 |
|
|
312 |
|
* formed/formed/plugins/names/filter.py: small optimization. |
313 |
|
|
314 |
|
2009-05-26 Sascha L. Teichmann <[email protected]> |
315 |
|
|
316 |
|
* formed/formed/plugins/names/filter.py: Repaired unique filter for |
317 |
|
nodecomponent names. |
318 |
|
|
319 |
|
2009-05-06 Sascha L. Teichmann <[email protected]> |
320 |
|
|
321 |
|
* formed/formed/plugins/export/rg_sql.py: Only create depending |
322 |
|
repeat groups if no uuid is given. If a uuid is given then |
323 |
|
the creation is triggered by an xml import. |
324 |
|
|
325 |
|
2009-04-28 Sascha L. Teichmann <[email protected]> |
326 |
|
|
327 |
|
* formed/formed/plugins/export/new_sql.py: New SQL schema generator to |
328 |
|
replace the old one. The new one faciliates the new RepeatNode instead |
329 |
|
of the Group.isRepeat() method to tell if something is to be repeated. |
330 |
|
|
331 |
|
* formed/formed/config.py: Use new SQL schema generator plug-in by default. |
332 |
|
The old one is deactivated. |
333 |
|
|
334 |
|
* formed/formed/plugins/export/rg_sql.py: Fix 'rg_' naming of repeat groups. |
335 |
|
|
336 |
|
2009-04-28 Sascha L. Teichmann <[email protected]> |
337 |
|
|
338 |
|
* formed/formed/plugins/export/rg_sql.py: Added delete functions. |
339 |
|
TODO: Adjust execution rights. |
340 |
|
|
341 |
|
2009-04-27 Sascha L. Teichmann <[email protected]> |
342 |
|
|
343 |
|
* formed/formed/plugins/export/rg_sql.py: Fixed $$$$ -> $$ template problems. |
344 |
|
Add functions to create dataset. |
345 |
|
|
346 |
|
2009-04-24 Sascha L. Teichmann <[email protected]> |
347 |
|
|
348 |
|
* formed/formed/plugins/export/rg_sql.py: new plug-in to generate |
349 |
|
tree structure functions in database. |
350 |
|
|
351 |
|
* formed/formed/config.py: load plug-in. |
352 |
|
|
353 |
|
2009-04-16 Sascha L. Teichmann <[email protected]> |
354 |
|
|
355 |
|
* formed/formed/model/data.py: Added 'digest' attribute to |
356 |
|
RepeatNode. Removed needless methods |
357 |
|
|
358 |
|
2009-04-16 Sascha L. Teichmann <[email protected]> |
359 |
|
|
360 |
|
* formed/formed/model/exprtree.py: make 'equal' and 'not equal' |
361 |
|
more readable with '=' and '<>'. |
362 |
|
|
363 |
|
2009-04-02 Sascha L. Teichmann <[email protected]> |
364 |
|
|
365 |
|
* formed/formed/plugins/export/sql.py: call anonymization |
366 |
|
of uuid on anonymization of case. |
367 |
|
|
368 |
|
2009-03-31 Sascha L. Teichmann <[email protected]> |
369 |
|
|
370 |
|
* formed/formed/plugins/export/sql.py: Set uuid_id to NULL in |
371 |
|
case_anonymize(). |
372 |
|
|
373 |
|
2009-03-31 Sascha L. Teichmann <[email protected]> |
374 |
|
|
375 |
|
* formed/formed/model/exprtree.py: Add some code to pretty print |
376 |
|
the trees infix. |
377 |
|
|
378 |
|
* formed/formed/plugins/export/rules.py: New. Exporter for human |
379 |
|
readable rules. |
380 |
|
|
381 |
|
* formed/formed/plugins/export/html.py: Fixed HTML generation. |
382 |
|
|
383 |
|
* formed/formed/config.py: Added new new Rule export plug-in. |
384 |
|
|
385 |
|
2009-03-31 Sascha L. Teichmann <[email protected]> |
386 |
|
|
387 |
|
* formed/formed/model/exprtree.py: Fixes from server. Raise |
388 |
|
exceptions if there is less or more than one element on stack |
389 |
|
after compilation of expression. |
390 |
|
|
391 |
|
2009-03-20 Sascha L. Teichmann <[email protected]> |
392 |
|
|
393 |
|
* formed/formed/model/data.py: Removed debug output |
394 |
|
|
395 |
|
* formed/formed/plugins/modify/rules.py: Fixed error message. |
396 |
|
Generate past and future rules. |
397 |
|
|
398 |
|
2009-03-16 Sascha L. Teichmann <[email protected]> |
399 |
|
|
400 |
|
* formed/formed/model/exprtree.py: Forget to call today with context. |
401 |
|
|
402 |
|
2009-03-16 Sascha L. Teichmann <[email protected]> |
403 |
|
|
404 |
|
* formed/formed/io/document.py: Fixed syntax typo. |
405 |
|
|
406 |
|
2009-03-16 Sascha L. Teichmann <[email protected]> |
407 |
|
|
408 |
|
* formed/formed/model/data.py: ConditionalNode inherits from Node directly. |
409 |
|
|
410 |
|
2009-03-16 Sascha L. Teichmann <[email protected]> |
411 |
|
|
412 |
|
* formed/formed/model/data.py: Added ConditionalNode |
413 |
|
|
414 |
|
* formed/formed/io/document.py: Make ConditionalNode loadable. |
415 |
|
|
416 |
|
2009-03-13 Sascha L. Teichmann <[email protected]> |
417 |
|
|
418 |
|
* formed/formed/plugins/modify/rules.py: Make the error descriptions |
419 |
|
in date sequence rules more precise. |
420 |
|
|
421 |
|
2009-03-13 Sascha L. Teichmann <[email protected]> |
422 |
|
|
423 |
|
* formed/formed/plugins/modify/rules.py: generate date sequence rules. |
424 |
|
|
425 |
|
2009-03-13 Sascha L. Teichmann <[email protected]> |
426 |
|
|
427 |
|
* formed/formed/model/exprtree.py: New tree based expression engine. |
428 |
|
|
429 |
|
* formed/formed/model/__init__.py, formed/formed/model/data.py: |
430 |
|
Adjusted imports. |
431 |
|
|
432 |
|
2009-03-12 Torsten Irländer <[email protected]> |
433 |
|
2009-06-17 Sascha L. Teichmann <[email protected]> |
434 |
|
|
435 |
|
* formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names. |
436 |
|
|
437 |
|
2009-05-26 Sascha L. Teichmann <[email protected]> |
438 |
|
|
439 |
|
* formed/formed/plugins/names/filter.py: small optimization. |
440 |
|
|
441 |
|
2009-05-26 Sascha L. Teichmann <[email protected]> |
442 |
|
|
443 |
|
* formed/formed/plugins/names/filter.py: Repaired unique filter for |
444 |
|
nodecomponent names. |
445 |
|
|
446 |
|
2009-05-06 Sascha L. Teichmann <[email protected]> |
447 |
|
|
448 |
|
* formed/formed/plugins/export/rg_sql.py: Only create depending |
449 |
|
repeat groups if no uuid is given. If a uuid is given then |
450 |
|
the creation is triggered by an xml import. |
451 |
|
|
452 |
|
2009-04-28 Sascha L. Teichmann <[email protected]> |
453 |
|
|
454 |
|
* formed/formed/plugins/export/new_sql.py: New SQL schema generator to |
455 |
|
replace the old one. The new one faciliates the new RepeatNode instead |
456 |
|
of the Group.isRepeat() method to tell if something is to be repeated. |
457 |
|
|
458 |
|
* formed/formed/config.py: Use new SQL schema generator plug-in by default. |
459 |
|
The old one is deactivated. |
460 |
|
|
461 |
|
* formed/formed/plugins/export/rg_sql.py: Fix 'rg_' naming of repeat groups. |
462 |
|
|
463 |
|
2009-04-28 Sascha L. Teichmann <[email protected]> |
464 |
|
|
465 |
|
* formed/formed/plugins/export/rg_sql.py: Added delete functions. |
466 |
|
TODO: Adjust execution rights. |
467 |
|
|
468 |
|
2009-04-27 Sascha L. Teichmann <[email protected]> |
469 |
|
|
470 |
|
* formed/formed/plugins/export/rg_sql.py: Fixed $$$$ -> $$ template problems. |
471 |
|
Add functions to create dataset. |
472 |
|
|
473 |
|
2009-04-24 Sascha L. Teichmann <[email protected]> |
474 |
|
|
475 |
|
* formed/formed/plugins/export/rg_sql.py: new plug-in to generate |
476 |
|
tree structure functions in database. |
477 |
|
|
478 |
|
* formed/formed/config.py: load plug-in. |
479 |
|
|
480 |
|
2009-04-16 Sascha L. Teichmann <[email protected]> |
481 |
|
|
482 |
|
* formed/formed/model/data.py: Added 'digest' attribute to |
483 |
|
RepeatNode. Removed needless methods |
484 |
|
|
485 |
|
2009-04-16 Sascha L. Teichmann <[email protected]> |
486 |
|
|
487 |
|
* formed/formed/model/exprtree.py: make 'equal' and 'not equal' |
488 |
|
more readable with '=' and '<>'. |
489 |
|
|
490 |
|
2009-04-02 Sascha L. Teichmann <[email protected]> |
491 |
|
|
492 |
|
* formed/formed/plugins/export/sql.py: call anonymization |
493 |
|
of uuid on anonymization of case. |
494 |
|
|
495 |
|
2009-03-31 Sascha L. Teichmann <[email protected]> |
496 |
|
|
497 |
|
* formed/formed/plugins/export/sql.py: Set uuid_id to NULL in |
498 |
|
case_anonymize(). |
499 |
|
|
500 |
|
2009-03-31 Sascha L. Teichmann <[email protected]> |
501 |
|
|
502 |
|
* formed/formed/model/exprtree.py: Add some code to pretty print |
503 |
|
the trees infix. |
504 |
|
|
505 |
|
* formed/formed/plugins/export/rules.py: New. Exporter for human |
506 |
|
readable rules. |
507 |
|
|
508 |
|
* formed/formed/plugins/export/html.py: Fixed HTML generation. |
509 |
|
|
510 |
|
* formed/formed/config.py: Added new new Rule export plug-in. |
511 |
|
|
512 |
|
2009-03-31 Sascha L. Teichmann <[email protected]> |
513 |
|
|
514 |
|
* formed/formed/model/exprtree.py: Fixes from server. Raise |
515 |
|
exceptions if there is less or more than one element on stack |
516 |
|
after compilation of expression. |
517 |
|
|
518 |
|
2009-03-20 Sascha L. Teichmann <[email protected]> |
519 |
|
|
520 |
|
* formed/formed/model/data.py: Removed debug output |
521 |
|
|
522 |
|
* formed/formed/plugins/modify/rules.py: Fixed error message. |
523 |
|
Generate past and future rules. |
524 |
|
|
525 |
|
2009-03-16 Sascha L. Teichmann <[email protected]> |
526 |
|
|
527 |
|
* formed/formed/model/exprtree.py: Forget to call today with context. |
528 |
|
|
529 |
|
2009-03-16 Sascha L. Teichmann <[email protected]> |
530 |
|
|
531 |
|
* formed/formed/io/document.py: Fixed syntax typo. |
532 |
|
|
533 |
|
2009-03-16 Sascha L. Teichmann <[email protected]> |
534 |
|
|
535 |
|
* formed/formed/model/data.py: ConditionalNode inherits from Node directly. |
536 |
|
|
537 |
|
2009-03-16 Sascha L. Teichmann <[email protected]> |
538 |
|
|
539 |
|
* formed/formed/model/data.py: Added ConditionalNode |
540 |
|
|
541 |
|
* formed/formed/io/document.py: Make ConditionalNode loadable. |
542 |
|
|
543 |
|
2009-03-13 Sascha L. Teichmann <[email protected]> |
544 |
|
|
545 |
|
* formed/formed/plugins/modify/rules.py: Make the error descriptions |
546 |
|
in date sequence rules more precise. |
547 |
|
|
548 |
|
2009-03-13 Sascha L. Teichmann <[email protected]> |
549 |
|
|
550 |
|
* formed/formed/plugins/modify/rules.py: generate date sequence rules. |
551 |
|
|
552 |
|
2009-03-13 Sascha L. Teichmann <[email protected]> |
553 |
|
|
554 |
|
* formed/formed/model/exprtree.py: New tree based expression engine. |
555 |
|
|
556 |
|
* formed/formed/model/__init__.py, formed/formed/model/data.py: |
557 |
|
Adjusted imports. |
558 |
|
|
559 |
|
2009-03-12 Torsten Irländer <[email protected]> |
560 |
|
2009-06-17 Sascha L. Teichmann <[email protected]> |
561 |
|
|
562 |
|
* formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names. |
563 |
|
|
564 |
|
2009-05-26 Sascha L. Teichmann <[email protected]> |
565 |
|
|
566 |
|
* formed/formed/plugins/names/filter.py: small optimization. |
567 |
|
|
568 |
|
2009-05-26 Sascha L. Teichmann <[email protected]> |
569 |
|
|
570 |
|
* formed/formed/plugins/names/filter.py: Repaired unique filter for |
571 |
|
nodecomponent names. |
572 |
|
|
573 |
|
2009-05-06 Sascha L. Teichmann <[email protected]> |
574 |
|
|
575 |
|
* formed/formed/plugins/export/rg_sql.py: Only create depending |
576 |
|
repeat groups if no uuid is given. If a uuid is given then |
577 |
|
the creation is triggered by an xml import. |
578 |
|
|
579 |
|
2009-04-28 Sascha L. Teichmann <[email protected]> |
580 |
|
|
581 |
|
* formed/formed/plugins/export/new_sql.py: New SQL schema generator to |
582 |
|
replace the old one. The new one faciliates the new RepeatNode instead |
583 |
|
of the Group.isRepeat() method to tell if something is to be repeated. |
584 |
|
|
585 |
|
* formed/formed/config.py: Use new SQL schema generator plug-in by default. |
586 |
|
The old one is deactivated. |
587 |
|
|
588 |
|
* formed/formed/plugins/export/rg_sql.py: Fix 'rg_' naming of repeat groups. |
589 |
|
|
590 |
|
2009-04-28 Sascha L. Teichmann <[email protected]> |
591 |
|
|
592 |
|
* formed/formed/plugins/export/rg_sql.py: Added delete functions. |
593 |
|
TODO: Adjust execution rights. |
594 |
|
|
595 |
|
2009-04-27 Sascha L. Teichmann <[email protected]> |
596 |
|
|
597 |
|
* formed/formed/plugins/export/rg_sql.py: Fixed $$$$ -> $$ template problems. |
598 |
|
Add functions to create dataset. |
599 |
|
|
600 |
|
2009-04-24 Sascha L. Teichmann <[email protected]> |
601 |
|
|
602 |
|
* formed/formed/plugins/export/rg_sql.py: new plug-in to generate |
603 |
|
tree structure functions in database. |
604 |
|
|
605 |
|
* formed/formed/config.py: load plug-in. |
606 |
|
|
607 |
|
2009-04-16 Sascha L. Teichmann <[email protected]> |
608 |
|
|
609 |
|
* formed/formed/model/data.py: Added 'digest' attribute to |
610 |
|
RepeatNode. Removed needless methods |
611 |
|
|
612 |
|
2009-04-16 Sascha L. Teichmann <[email protected]> |
613 |
|
|
614 |
|
* formed/formed/model/exprtree.py: make 'equal' and 'not equal' |
615 |
|
more readable with '=' and '<>'. |
616 |
|
|
617 |
|
2009-04-02 Sascha L. Teichmann <[email protected]> |
618 |
|
|
619 |
|
* formed/formed/plugins/export/sql.py: call anonymization |
620 |
|
of uuid on anonymization of case. |
621 |
|
|
622 |
|
2009-03-31 Sascha L. Teichmann <[email protected]> |
623 |
|
|
624 |
|
* formed/formed/plugins/export/sql.py: Set uuid_id to NULL in |
625 |
|
case_anonymize(). |
626 |
|
|
627 |
|
2009-03-31 Sascha L. Teichmann <[email protected]> |
628 |
|
|
629 |
|
* formed/formed/model/exprtree.py: Add some code to pretty print |
630 |
|
the trees infix. |
631 |
|
|
632 |
|
* formed/formed/plugins/export/rules.py: New. Exporter for human |
633 |
|
readable rules. |
634 |
|
|
635 |
|
* formed/formed/plugins/export/html.py: Fixed HTML generation. |
636 |
|
|
637 |
|
* formed/formed/config.py: Added new new Rule export plug-in. |
638 |
|
|
639 |
|
2009-03-31 Sascha L. Teichmann <[email protected]> |
640 |
|
|
641 |
|
* formed/formed/model/exprtree.py: Fixes from server. Raise |
642 |
|
exceptions if there is less or more than one element on stack |
643 |
|
after compilation of expression. |
644 |
|
|
645 |
|
2009-03-20 Sascha L. Teichmann <[email protected]> |
646 |
|
|
647 |
|
* formed/formed/model/data.py: Removed debug output |
648 |
|
|
649 |
|
* formed/formed/plugins/modify/rules.py: Fixed error message. |
650 |
|
Generate past and future rules. |
651 |
|
|
652 |
|
2009-03-16 Sascha L. Teichmann <[email protected]> |
653 |
|
|
654 |
|
* formed/formed/model/exprtree.py: Forget to call today with context. |
655 |
|
|
656 |
|
2009-03-16 Sascha L. Teichmann <[email protected]> |
657 |
|
|
658 |
|
* formed/formed/io/document.py: Fixed syntax typo. |
659 |
|
|
660 |
|
2009-03-16 Sascha L. Teichmann <[email protected]> |
661 |
|
|
662 |
|
* formed/formed/model/data.py: ConditionalNode inherits from Node directly. |
663 |
|
|
664 |
|
2009-03-16 Sascha L. Teichmann <[email protected]> |
665 |
|
|
666 |
|
* formed/formed/model/data.py: Added ConditionalNode |
667 |
|
|
668 |
|
* formed/formed/io/document.py: Make ConditionalNode loadable. |
669 |
|
|
670 |
|
2009-03-13 Sascha L. Teichmann <[email protected]> |
671 |
|
|
672 |
|
* formed/formed/plugins/modify/rules.py: Make the error descriptions |
673 |
|
in date sequence rules more precise. |
674 |
|
|
675 |
|
2009-03-13 Sascha L. Teichmann <[email protected]> |
676 |
|
|
677 |
|
* formed/formed/plugins/modify/rules.py: generate date sequence rules. |
678 |
|
|
679 |
|
2009-03-13 Sascha L. Teichmann <[email protected]> |
680 |
|
|
681 |
|
* formed/formed/model/exprtree.py: New tree based expression engine. |
682 |
|
|
683 |
|
* formed/formed/model/__init__.py, formed/formed/model/data.py: |
684 |
|
Adjusted imports. |
685 |
|
|
686 |
|
2009-03-12 Torsten Irländer <[email protected]> |
687 |
|
|
688 |
|
Introduced new order attribute for date fields |
689 |
|
|
690 |
|
* formed/formed/model/data.py: Order fields can be used to define to |
691 |
|
ordering of datefields withing the document. Needed for automatic |
692 |
|
generation of consistency rules. |
693 |
|
|
694 |
|
2009-02-09 Sascha L. Teichmann <[email protected]> |
695 |
|
|
696 |
|
* formed/formed/model/data.py: Allow pages to be 'invisible'. |
697 |
|
|
698 |
|
2009-02-09 Sascha L. Teichmann <[email protected]> |
699 |
|
|
700 |
|
* formed/formed/plugins/export/sql.py: Fixed problem with |
701 |
|
description reference tables of radio groups. |
702 |
|
|
703 |
|
2009-02-09 Sascha L. Teichmann <[email protected]> |
704 |
|
|
705 |
|
* formed/formed/plugins/export/sql.py: replace '-' in names |
706 |
|
by '_'. |
707 |
|
|
708 |
|
2009-02-09 Sascha L. Teichmann <[email protected]> |
709 |
|
|
710 |
|
* formed/formed/plugins/export/sql.py: to figure ou which |
711 |
|
tables are equal the insert statememnts are lower cased |
712 |
|
and sorted before they are compared. This reduces the number |
713 |
|
of generated referfence tables. |
714 |
|
|
715 |
|
2009-02-09 Sascha L. Teichmann <[email protected]> |
716 |
|
|
717 |
|
Repair SQL schema creation for radio groups. |
718 |
|
|
719 |
|
* formed/formed/plugins/export/sql.py: radio groups are handled |
720 |
|
like choices now. |
721 |
|
|
722 |
|
2009-02-09 Sascha L. Teichmann <[email protected]> |
723 |
|
|
724 |
|
Make it startable again. |
725 |
|
|
726 |
|
* formed/formed/plugins/export/xls.py: Import pyExcelerator only |
727 |
|
when plug-in is called. |
728 |
|
|
729 |
|
* formed/formed/model/nodecomponents.py: Event routing was messed up. |
730 |
|
Rewired root node with document. |
731 |
|
|
732 |
|
* formed/formed/plugins/web/help.py: Removed old xml.ext import. |
733 |
|
XXX: This breaks creating help by now! |
734 |
|
|
735 |
|
* formed/formed/io/parser.py: Replace old deprecated base class |
736 |
|
by new one. |
737 |
|
|
738 |
|
* formed/formed/main.py: Do not crash if locale cannot be set. |
739 |
|
|
740 |
|
* formed/formed/ui/controls.py: Use document.getCase() instead |
741 |
|
of document.case to prevent uninitialized dereferences. |
742 |
|
|
743 |
|
2009-01-22 Torsten Irländer <[email protected]> |
744 |
|
|
745 |
|
Implemented new XML-Format for formed xml files. |
746 |
|
|
747 |
|
* formed/formed/model/nodecomponents.py, |
748 |
|
formed/formed/io/document.py, |
749 |
|
formed/formed/main.py, |
750 |
|
formed/formed/ui/controls.py: Introduced new "case" and "logbook" |
751 |
|
node. Under case is the definition of the formular. logbook will |
752 |
|
hold the defintion of logboog entrys. For now only the part under |
753 |
|
"case" can be modified. |
754 |
|
|
755 |
|
2009-01-21 Torsten Irländer <[email protected]> |
756 |
|
|
757 |
|
Changed way how XSD-Scheme is generated |
758 |
|
|
759 |
|
* formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support |
760 |
|
logbookentrys. The scheme definiton is now hardcoded in the |
761 |
|
exporter as it will rarely change. It logbookpart will not be |
762 |
|
generated from the formedtree anymore. |
763 |
|
|
764 |
|
2009-01-20 Torsten Irländer <[email protected]> |
765 |
|
|
766 |
|
Support Logbook entrys in xsd schema export |
767 |
|
|
768 |
|
* formed/formed/model/data.py: Repeatnode are now handeld as |
769 |
|
repeatgroups in xsd-export |
770 |
|
* formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support |
771 |
|
logbookentrys. The scheme will now validate against an xmlfile from |
772 |
|
the offlineclient. |
773 |
|
|
774 |
|
2009-01-09 Torsten Irländer <[email protected]> |
775 |
|
|
776 |
|
Added new repeat node |
777 |
|
|
778 |
|
* formed/formed/model/data.py, |
779 |
|
formed/formed/io/document.py: Added repeatnode to the formedtree. |
780 |
|
TODO: Remove repeatgroup handling from the groupnode. |
781 |
|
|
782 |
|
2009-01-08 Torsten Irländer <[email protected]> |
783 |
|
|
784 |
|
Add isset operator to autogenerated rules. |
785 |
|
|
786 |
|
* formed/formed/plugins/modify/rules.py: Add issed operator to standard |
787 |
|
autogenerated rules. |
788 |
|
|
789 |
|
2008-12-17 Frank Koormann <[email protected]> |
790 |
|
|
791 |
|
* formed/formed/plugins/export/latex.py: Export form as set of |
792 |
|
latex tables to be included into a master document. The export |
793 |
|
generates section marks to structure the form and placeholders for |
794 |
|
help texts to be merged in by a post processing step. |
795 |
|
|
796 |
|
2008-12-04 Sascha L. Teichmann <[email protected]> |
797 |
|
|
798 |
|
* formed/formed/model/expr.py: Added 'today' which pushes the current date |
799 |
|
on the stack. |
800 |
|
|
801 |
|
2008-12-03 Sascha L. Teichmann <[email protected]> |
802 |
|
|
803 |
|
* formed/formed/plugins/web/controllers.py: compute changeset more correctly in |
804 |
|
storage of fields. |
805 |
|
|
806 |
|
* formed/formed/plugins/export/xsd.py: Added unknown int -999999 to integer |
807 |
|
fields as an accepted value. Generate schema for radio groups too. |
808 |
|
|
809 |
|
2008-12-01 Torsten Irländer <[email protected]> |
810 |
|
|
811 |
|
Added autmatic generation of required rules |
812 |
|
|
813 |
|
* formed/formed/model/data.py, |
814 |
|
formed/formed/model/expr.py, |
815 |
|
formed/formed/plugins/modify/rules.py: Default rules for required |
816 |
|
fields can now be generated. |
817 |
|
|
818 |
|
2008-11-28 Sascha L. Teichmann <[email protected]> |
819 |
|
|
820 |
|
* formed/formed/model/data.py, formed/formed/model/nodecomponents.py: |
821 |
|
Ported WidgetCollector from Offline client. |
822 |
|
|
823 |
|
* formed/formed/plugins/modify/__init__.py, formed/formed/plugins/modify, |
824 |
|
formed/formed/plugins/modify/rules.py: Stub for required rules generator. |
825 |
|
|
826 |
|
* formed/formed/config.py: Bind new filter to FormEd |
827 |
|
|
828 |
|
2008-11-27 Torsten Irländer <[email protected]> |
829 |
|
|
830 |
|
* formed/formed/model/data.py: Added new attribute mark for rules |
831 |
|
|
832 |
|
2008-11-10 Torsten Irländer <[email protected]> |
833 |
|
|
834 |
|
Implemented radio-matrix elements. radio elelement having the same |
835 |
|
options can now be rendered in table form. |
836 |
|
|
837 |
|
* formed/formed/model/data.py, |
838 |
|
formed/formed/io/document.py: Added new radio-matrix element to the |
839 |
|
model and gui |
840 |
|
* formed/formed/plugins/web/view_renderer.py: Write html-renderer for |
841 |
|
the radio-matrix element. |
842 |
|
|
843 |
|
2008-11.03 Torsten Irländer <[email protected]> |
844 |
|
|
845 |
|
* formed/formed/model/data.py: Fixed import error |
846 |
|
|
847 |
|
2008-10-29 Sascha L. Teichmann <[email protected]> |
848 |
|
|
849 |
|
Relative paths in external choices are now possible. Relative paths are |
850 |
|
relative to path of the master document. |
851 |
|
|
852 |
|
* formed/model/data.py: external choice are now storing the path to the |
853 |
|
master document. |
854 |
|
|
855 |
|
* formed/formed/io/document.py: Pass context to SAX builder. |
856 |
|
|
857 |
|
* formed/formed/io/factories.py: For new created nodes look if there |
858 |
|
is a method 'setLoadContext' and call it. |
859 |
|
|
860 |
|
2008-09-04 Sascha L. Teichmann <[email protected]> |
861 |
|
|
862 |
|
* doc/beschreibung.txt: New. Initial description of FormEd (german). |
863 |
|
|
864 |
|
2008-08-22 Sascha L. Teichmann <[email protected]> |
865 |
|
|
866 |
|
* formed/formed/model/nodecomponents.py: Added attribute 'flags'. |
867 |
|
|
868 |
|
2008-08-21 Sascha L. Teichmann <[email protected]> |
869 |
|
|
870 |
|
* formed/formed/io/document.py: Indent tree while saving |
871 |
|
* formed/formed/main.py: removed needless print |
872 |
|
|
873 |
|
2008-08-15 Sascha L. Teichmann <[email protected]> |
874 |
|
|
875 |
|
* LICENSE: New GPLv3 |
876 |
|
* */*.py, *.sh: Added reference to LICENSE |
877 |
|
|
878 |
|
2008-08-15 Sascha L. Teichmann <[email protected]> |
879 |
|
|
880 |
|
* tools: removed because there a no tools any more. |
881 |
|
|
882 |
|
2008-08-15 Sascha L. Teichmann <[email protected]> |
883 |
|
|
884 |
|
* tools/formed: moved one level up because its the only |
885 |
|
part of this project now. |
886 |
|
|
887 |
|
2008-08-15 Sascha L. Teichmann <[email protected]> |
888 |
|
|
889 |
|
* tools/anonym/*: Removed as it belongs to mpuls WASKA |
890 |
|
|
891 |
|
2008-08-15 Sascha L. Teichmann <[email protected]> |
892 |
|
|
893 |
|
* pdf2xfa/*: removed. It belongs to mpuls |
894 |
|
|
895 |
|
2008-08-13 L. Teichmann <[email protected]> |
896 |
|
|
897 |
|
i18n of the plug-ins: |
898 |
|
* tools/formed/formed/plugins/export/diff.py, |
899 |
|
tools/formed/formed/plugins/export/data.py, |
900 |
|
tools/formed/formed/plugins/export/old_sql.py, |
901 |
|
tools/formed/formed/plugins/export/latex.py, |
902 |
|
tools/formed/formed/plugins/export/xsd.py, |
903 |
|
tools/formed/formed/plugins/export/sql.py, |
904 |
|
tools/formed/formed/plugins/export/typemap.py, |
905 |
|
tools/formed/formed/plugins/export/html.py, |
906 |
|
tools/formed/formed/plugins/export/mode.py, |
907 |
|
tools/formed/formed/plugins/export/html2.py, |
908 |
|
tools/formed/formed/plugins/export/xls.py, |
909 |
|
tools/formed/formed/plugins/names/filter.py, |
910 |
|
tools/formed/formed/plugins/plugin.py, |
911 |
|
tools/formed/formed/plugins/web/help.py, |
912 |
|
tools/formed/formed/plugins/web/form_renderer.py, |
913 |
|
tools/formed/formed/plugins/web/plugin.py, |
914 |
|
tools/formed/formed/plugins/web/error_renderer.py, |
915 |
|
tools/formed/formed/plugins/web/view_renderer.py, |
916 |
|
tools/formed/formed/plugins/web/semantic.py, |
917 |
|
tools/formed/formed/plugins/web/cache.py, |
918 |
|
tools/formed/formed/plugins/web/server.py, |
919 |
|
tools/formed/formed/plugins/web/controllers.py, |
920 |
|
tools/formed/formed/plugins/web/renderer.py, |
921 |
|
tools/formed/formed/plugins/ui/controls.py, |
922 |
|
tools/formed/formed/config.py: _("")s the stuff |
923 |
|
tools/formed/po/formed.pot, tools/formed/po/de_DE.po: |
924 |
|
extracted and translated. |
925 |
|
|
926 |
|
2008-08-08 Sascha L. Teichmann <[email protected]> |
927 |
|
|
928 |
|
First version of FormEd i18n. After checkout go to tools/formed/po/ and |
929 |
|
say 'make mo'. Afterwards you can start FormEd as usual. |
930 |
|
|
931 |
|
* tools/formed/resources: New. Place to places ressources like *.mo files |
932 |
|
* tools/formed/formed/main.py, tools/formed/formed/ui/controls.py: Add _("")s |
933 |
|
|
934 |
|
* tools/formed/po, |
935 |
|
tools/formed/po/Makefile, |
936 |
|
tools/formed/po/formed.pot, |
937 |
|
tools/formed/po/de_DE.po: i18n stuff. |
938 |
|
|
939 |
|
2008-08-08 Sascha L. Teichmann <[email protected]> |
940 |
|
|
941 |
|
* tools/anonym/xmlexport.py: Only export cases which are not |
942 |
|
'schwebend geloescht'. |
943 |
|
|
944 |
|
2008-07-23 Sascha L. Teichmann <[email protected]> |
945 |
|
|
946 |
|
Fixed issue472 |
947 |
|
|
948 |
|
* tools/anonym/xmlimport.py: Regenerate dicts from current form ed tree. |
949 |
|
|
950 |
|
2008-07-17 Sascha L. Teichmann <[email protected]> |
951 |
|
|
952 |
|
* tools/anonym/xmlimport.py: removed marking of invalid cases |
953 |
|
* tools/anonym/cron.importAnonXml.sh: re-inserted here. |
954 |
|
|
955 |
|
2008-07.07 Torsten Irländer <[email protected]> |
956 |
|
|
957 |
|
* tools/formed/formed/plugins/export/latex.py |
958 |
|
tools/formed/formed/config.py: Added new LaTex Export. Beware this |
959 |
|
is even more ugly the HTML Export. |
960 |
|
* tools/formed/formed/plugins/export/html.py: Added information on |
961 |
|
anonymisation to the html export. |
962 |
|
|
963 |
|
2008-07-07 Sascha L. Teichmann <[email protected]> |
964 |
|
|
965 |
|
* tools/anonym/xmlimport.py: Mark cases if they are inconsistent. |
966 |
|
|
967 |
|
2008-07-07 Sascha L. Teichmann <[email protected]> |
968 |
|
|
969 |
|
* tools/anonym/xmlimport.py: Updated to schema 1.5. (Which is incompatible to 1.4) |
970 |
|
|
971 |
|
2008-07-07 Sascha L. Teichmann <[email protected]> |
972 |
|
|
973 |
|
* tools/formed/formed/plugins/export/html.py: Added additional column |
974 |
|
to the html export with information how each field will get |
975 |
|
anonymized. |
976 |
|
|
977 |
|
2008-07-07 Sascha L. Teichmann <[email protected]> |
978 |
|
|
979 |
|
* tools/anonym/xmlimport.py: sync with productive version. |
980 |
|
|
981 |
|
2008-06-10 Torsten Irländer <[email protected]> |
982 |
|
|
983 |
|
* tools/formed/formed/plugins/export/sql.py: grant admin permission to |
984 |
|
call anonymize function |
985 |
|
|
986 |
|
2008-05-21 Sascha L. Teichmann <[email protected]> |
987 |
|
|
988 |
|
* tools/formed/formed/plugins/export/xsd.py: Brought encoding |
989 |
|
back to UTF-8. |
990 |
|
|
991 |
|
2008-05-21 Frank Koormann <[email protected]> |
992 |
|
|
993 |
|
* tools/formed/formed/plugins/export/xls.py: New, export key value |
994 |
|
tables as excel workbook with one sheet per table. |
995 |
|
|
996 |
|
* tools/formed/formed/config.py: ExportKeyValueTableAsXLS added. |
997 |
|
|
998 |
|
2008-05-21 Frank Koormann <[email protected]> |
999 |
|
|
1000 |
|
* tools/formed/formed/plugins/export/xsd.py |
1001 |
|
(SchemaCreator._createChoice): Fix use of choices name. |
1002 |
|
|
1003 |
|
2008-04-29 Sascha L. Teichmann <[email protected]> |
1004 |
|
|
1005 |
|
* tools/formed/formed/plugins/export/xsd.py: Use substitution group |
1006 |
|
to allow arbitrary order of repeat groups. |
1007 |
|
|
1008 |
|
2008-04-29 Sascha L. Teichmann <[email protected]> |
1009 |
|
|
1010 |
|
* tools/formed/formed/plugins/export/xsd.py: Removed a needless |
1011 |
|
character. |
1012 |
|
|
1013 |
|
2008-04-29 Sascha L. Teichmann <[email protected]> |
1014 |
|
|
1015 |
|
* tools/formed/formed/plugins/export/xsd.py: Added annotations |
1016 |
|
to fields. |
1017 |
|
|
1018 |
|
2008-04-29 Sascha L. Teichmann <[email protected]> |
1019 |
|
|
1020 |
|
* tools/formed/formed/plugins/export/xsd.py: Added for |
1021 |
|
choice fields. |
1022 |
|
|
1023 |
|
2008-04-29 Sascha L. Teichmann <[email protected]> |
1024 |
|
|
1025 |
|
* tools/formed/formed/plugins/export/xsd.py: Added support for |
1026 |
|
boolean fields based on enumerations. |
1027 |
|
|
1028 |
|
2008-04-28 Sascha L. Teichmann <[email protected]> |
1029 |
|
|
1030 |
|
* tools/formed/formed/plugins/export/xsd.py: Added support for |
1031 |
|
date, text and textarea fields. |
1032 |
|
|
1033 |
|
2008-04-28 Sascha L. Teichmann <[email protected]> |
1034 |
|
|
1035 |
|
* tools/formed/formed/plugins/export/xsd.py: Added support for |
1036 |
|
repeat groups and integer fields. |
1037 |
|
|
1038 |
|
2008-04-28 Sascha L. Teichmann <[email protected]> |
1039 |
|
|
1040 |
|
* tools/formed/formed/plugins/export/xsd.py: New. plug-in for |
1041 |
|
exporting as XML schema. not ready, yet. |
1042 |
|
|
1043 |
|
* tools/formed/formed/config.py: Use new plug-in. |
1044 |
|
|
1045 |
|
* tools/formed/formed/plugins/export/sql.py: Fixed wrong GUI text. |
1046 |
|
|
1047 |
|
2008-04-17 Torsten Irländer <[email protected]> |
1048 |
|
|
1049 |
|
* tools/formed/formed/plugins/export/sql.py: Changed WHERE clause in |
1050 |
|
for the views because of the new group permissions. |
1051 |
|
|
1052 |
|
2008-04-09 Sascha L. Teichmann <[email protected]> |
1053 |
|
|
1054 |
|
* tools/anonym/cron.deleteOldAnonymized.sh: New. cron job to delete |
1055 |
|
old anonymized cases. |
1056 |
|
|
1057 |
|
2008-04-01 Sascha L. Teichmann <[email protected]> |
1058 |
|
|
1059 |
|
* tools/anonym/xmlexport.py: Removed "WHERE einverstaendniserklaerung = 1" |
1060 |
|
from clause to select datasets. |
1061 |
|
Replace ']]>' in CDATA sections with correct splitted replacement. |
1062 |
|
|
1063 |
|
2008-03-12 Sascha L. Teichmann <[email protected]> |
1064 |
|
|
1065 |
|
* tools/anonym/cron.importAnonXml.sh: Added absolut path to xmlimport |
1066 |
|
script. |
1067 |
|
|
1068 |
|
* tools/anonym/xmlimport.py: commented out database port from |
1069 |
|
connectionstring. |
1070 |
|
|
1071 |
|
2008-03-12 Sascha L. Teichmann <[email protected]> |
1072 |
|
|
1073 |
|
* tools/formed/formed/plugins/export/sql.py: Fixed bug in generation |
1074 |
|
of anonymization of repeat groups (wrong id was given). |
1075 |
|
|
1076 |
|
2008-03-11 Sascha L. Teichmann <[email protected]> |
1077 |
|
|
1078 |
|
* tools/formed/formed/plugins/export/sql.py: Generate no update |
1079 |
|
statements for relations which have no anonym functions applied. |
1080 |
|
|
1081 |
|
2008-03-11 Sascha L. Teichmann <[email protected]> |
1082 |
|
|
1083 |
|
* tools/formed/formed/plugins/export/sql.py: Added a newline after |
1084 |
|
'COMMIT;' in the last line. |
1085 |
|
|
1086 |
|
2008-03-11 Sascha L. Teichmann <[email protected]> |
1087 |
|
|
1088 |
|
* tools/formed/formed/plugins/export/sql.py: Fixed syntax of |
1089 |
|
generated anonymize_case() function. |
1090 |
|
|
1091 |
|
2008-03-11 Sascha L. Teichmann <[email protected]> |
1092 |
|
|
1093 |
|
* tools/formed/formed/plugins/export/sql.py: Added code to |
1094 |
|
generate a plpgsql function anonymize_case() that anonymized |
1095 |
|
a given case and all of its depending repeat groups. |
1096 |
|
|
1097 |
|
2008-03-06 Sascha L. Teichmann <[email protected]> |
1098 |
|
|
1099 |
|
* tools/anonym/xmlimport.py: remove print of insert statement. |
1100 |
|
|
1101 |
|
* tools/formed/formed/plugins/export/sql.py: Print generation date in ISO. |
1102 |
|
|
1103 |
|
2008-03-03 Torsten Irländer <[email protected]> |
1104 |
|
|
1105 |
|
* anonym/cron.sendAnonXml.sh, |
1106 |
|
anonym/getDbList.sh: Modified script to be used directly in the |
1107 |
|
production environment (Copied running scripts from production |
1108 |
|
server) |
1109 |
|
|
1110 |
|
* cron.importAnonXml.sh: Added deleting of ols cases. Modified script |
1111 |
|
to be used in a production environment (Cpoied running script from |
1112 |
|
production server) |
1113 |
|
|
1114 |
|
* tools/anonym/xmlexport.py: Added "WHERE" clause to SQL-Statement to |
1115 |
|
ensure that only valid cases get exported |
1116 |
|
|
1117 |
|
2008-02-27 Sascha L. Teichmann <[email protected]> |
1118 |
|
|
1119 |
|
* tools/anonym/xmlimport.py: Fixed bug in date converter. |
1120 |
|
|
1121 |
|
2008-02-27 Sascha L. Teichmann <[email protected]> |
1122 |
|
|
1123 |
|
* tools/anonym/xmlimport.py: Simpilied version |
1124 |
|
|
1125 |
|
2008-02-27 Sascha L. Teichmann <[email protected]> |
1126 |
|
|
1127 |
|
* tools/anonym/cron.importAnonXml.sh: Add sudo call for |
1128 |
|
xmlimport.py and parameters. |
1129 |
|
|
1130 |
|
* tools/anonym/xmlimport.py: Various bug fixes. Not working yet. :-/ |
1131 |
|
|
1132 |
|
* tools/anonym/xmlexport.py: Use python interpreter without env |
1133 |
|
because of sudo context. |
1134 |
|
|
1135 |
|
2008-02-26 Sascha L. Teichmann <[email protected]> |
1136 |
|
|
1137 |
|
* tools/anonym/xmlimport.py: added support for getopt. add |
1138 |
|
support to force in fkz in import of case. |
1139 |
|
|
1140 |
|
2008-02-26 Sascha L. Teichmann <[email protected]> |
1141 |
|
|
1142 |
|
* tools/anonym/xmlimport.py: Implemented logic to create/update cases. |
1143 |
|
|
1144 |
|
* tools/anonym/html.awk: produces valid HTML. |
1145 |
|
|
1146 |
|
2008-02-25 Sascha L. Teichmann <[email protected]> |
1147 |
|
|
1148 |
|
* tools/anonym/joincsv.py: Fix a logic bug. |
1149 |
|
|
1150 |
|
2008-02-25 Torsten Irlaender <[email protected]> |
1151 |
|
|
1152 |
|
* tools/anonym/cron.importAnonXml.sh: Added shellscript for importing |
1153 |
|
exportted cases. It will read all files from a directory and import |
1154 |
|
the files into the DB. After that the script will cleanup the |
1155 |
|
directory. |
1156 |
|
|
1157 |
|
2008-02-25 Torsten Irländer <[email protected]> |
1158 |
|
|
1159 |
|
* tools/anonym/cron.sendAnonXml.sh, |
1160 |
|
tools/anonym/xmlexport.py, |
1161 |
|
tools/anonym/getDbList.sh: Added shell-scripts for exporting cases |
1162 |
|
|
1163 |
|
2008-02-25 Sascha L. Teichmann <[email protected]> |
1164 |
|
|
1165 |
|
* tools/anonym/joincsv.py: Fixed typo which generated wrong number of cols. |
1166 |
|
|
1167 |
|
2008-02-25 Sascha L. Teichmann <[email protected]> |
1168 |
|
|
1169 |
|
* tools/anonym/joincsv.py: New. Joins CSV files. |
1170 |
|
|
1171 |
|
* tools/anonym/html.awk: New. Converts CSV to HTML |
1172 |
|
|
1173 |
|
2008-02-25 Sascha L. Teichmann <[email protected]> |
1174 |
|
|
1175 |
|
* tools/anonym/xmlimport.py: New. Added generation of |
1176 |
|
update statements. |
1177 |
|
|
1178 |
|
2008-02-25 Sascha L. Teichmann <[email protected]> |
1179 |
|
|
1180 |
|
* tools/anonym/xmlimport.py: New. Base for importing |
1181 |
|
XML from cron. |
1182 |
|
|
1183 |
|
2008-02-24 Sascha L. Teichmann <[email protected]> |
1184 |
|
|
1185 |
|
* tools/formed/formed/plugins/export/html2.py: New. plug-in |
1186 |
|
for a simplified HTML output |
1187 |
|
|
1188 |
|
* tools/formed/formed/plugins/export/typemap.py: New. plug-in |
1189 |
|
for dump schema as python dictionary. |
1190 |
|
|
1191 |
|
* tools/formed/formed/config.py: Enable new plug-ins. Out comment |
1192 |
|
old stored procedure and view generators. |
1193 |
|
|
1194 |
|
2008-02-19 Sascha L. Teichmann <[email protected]> |
1195 |
|
|
1196 |
|
* tools/anonym/xmlexport.py: New. Export all cases in database |
1197 |
|
as XML. |
1198 |
|
|
1199 |
|
2008-02-18 Sascha L. Teichmann <[email protected]> |
1200 |
|
|
1201 |
|
* tools/anonym/anoymncsv.py: separate field with '\t' now. |
1202 |
|
all '\t's are replaced by ' ' before. '\r\n' are removed too. |
1203 |
|
|
1204 |
|
2008-02-15 Sascha L. Teichmann <[email protected]> |
1205 |
|
|
1206 |
|
* tools/anonym/anoymncsv.py: simple script to fetch anonymous |
1207 |
|
data from database. |
1208 |
|
|
1209 |
|
2008-02-14 Sascha L. Teichmann <[email protected]> |
1210 |
|
|
1211 |
|
* tools/formed/formed/plugins/export/sql.py: Exchanged name |
1212 |
|
erase_value with suppress_value/suppress_value2. |
1213 |
|
|
1214 |
|
2008-02-13 Sascha L. Teichmann <[email protected]> |
1215 |
|
|
1216 |
|
* tools/formed/formed/plugins/export/sql.py: output id, master_id |
1217 |
|
substitute 'erase_value' with NULL value. |
1218 |
|
|
1219 |
|
2008-02-13 Sascha L. Teichmann <[email protected]> |
1220 |
|
|
1221 |
|
* tools/formed/formed/plugins/export/sql.py: output id, master_id |
1222 |
|
and uuid_id in anonymiziation views too. |
1223 |
|
|
1224 |
|
2008-02-13 Sascha L. Teichmann <[email protected]> |
1225 |
|
|
1226 |
|
* tools/formed/formed/plugins/export/sql.py: Added generation |
1227 |
|
of anonymiziation views for master table views and repeat group |
1228 |
|
views. |
1229 |
|
|
1230 |
|
2008-02-13 Sascha L. Teichmann <[email protected]> |
1231 |
|
|
1232 |
|
* tools/formed/formed/model/nodecomponents.py: Added attribute |
1233 |
|
"function" |
1234 |
|
|
1235 |
|
* tools/formed/formed/io/document.py: Save attributes in |
1236 |
|
alphabetical order. |
1237 |
|
|
1238 |
|
2008-02-02 Sascha L. Teichmann <[email protected]> |
1239 |
|
|
1240 |
|
* tools/formed/formed/plugins/export/sql.py: Added update rule |
1241 |
|
for master table and repeat groups views. Granted update right |
1242 |
|
to :cm_ka_group. |
1243 |
|
|
1244 |
|
2008-02-01 Sascha L. Teichmann <[email protected]> |
1245 |
|
|
1246 |
|
* tools/formed/formed/plugins/export/sql.py: Added a column 'uuid_id' |
1247 |
|
for master table and repeat groups. Also added unique constraints |
1248 |
|
to these columns. |
1249 |
|
|
1250 |
|
2007-12-10 Sascha L. Teichmann <[email protected]> |
1251 |
|
|
1252 |
|
* pdf2xfa/src/de/intevation/pdfimport/ClientHandler.java: Added a system |
1253 |
|
property 'root.element' to specify the name of the XML root. |
1254 |
|
|
1255 |
|
* pdf2xfa/startup/pdf2xfa.sh, pdf2xfa/README.TXT: Adjusted. |
1256 |
|
|
1257 |
|
2007-11-22 Sascha L. Teichmann <[email protected]> |
1258 |
|
|
1259 |
|
* pdf2xfa/startup, */pdf2xfa.sh, */pdf2xfa.init: boot scripts |
1260 |
|
for GNU/Linux (tested Debian 'Etch' 4.0) by Sascha Wilde. |
1261 |
|
|
1262 |
|
* pdf2xfa/README.TXT: Add a remark to new boot scripts. |
1263 |
|
|
1264 |
|
2007-11-21 Sascha L. Teichmann <[email protected]> |
1265 |
|
|
1266 |
|
* pdf2xfa/src/de/intevation/pdfimport/Log.java: New. |
1267 |
|
Sends logging to file. |
1268 |
|
|
1269 |
|
* pdf2xfa/src/de/intevation/pdfimport/Server.java, |
1270 |
|
pdf2xfa/src/de/intevation/pdfimport/ClientHandler.java: Adjusted |
1271 |
|
to use new logging. |
1272 |
|
|
1273 |
|
* pdf2xfa/README.TXT: Added remark how to use logging. |
1274 |
|
|
1275 |
|
2007-11-16 Frank Koormann <[email protected]> |
1276 |
|
|
1277 |
|
* tools/formed/formed/plugins/export/sql.py (createSchema): |
1278 |
|
Append only column "bearbeiter_id", standins are modelled by a |
1279 |
|
separate table. |
1280 |
|
|
1281 |
|
2007-11-16 Sascha L. Teichmann <[email protected]> |
1282 |
|
|
1283 |
|
* tools/formed/formed/model/data.py, |
1284 |
|
tools/formed/formed/plugins/web/view_renderer.py: |
1285 |
|
Added an invisible flag for info fields. |
1286 |
|
|
1287 |
|
2007-11-07 Sascha L. Teichmann <[email protected]> |
1288 |
|
|
1289 |
|
* tools/formed/formed/model/nodecomponents.py: Fixed a few small bugs |
1290 |
|
(calling a wrong method). |
1291 |
|
|
1292 |
|
2007-11-07 Sascha L. Teichmann <[email protected]> |
1293 |
|
|
1294 |
|
* tools/formed/formed/model/nodecomponents.py: Added a field |
1295 |
|
'alternative' to all node components. This might be of help to |
1296 |
|
match PDF imports where the descriptions do not match. |
1297 |
|
|
1298 |
|
2007-10-23 Frank Koormann <[email protected]> |
1299 |
|
|
1300 |
|
* tools/formed/formed/plugins/export/sql.py: New WHERE-Clause for views |
1301 |
|
|
1302 |
|
2007-10-23 Frank Koormann <[email protected]> |
1303 |
|
|
1304 |
|
* tools/formed/formed/plugins/export/sql.py: Set default |
1305 |
|
value (-1) for choices and bools. |
1306 |
|
|
1307 |
|
2007-10-21 Frank Koormann <[email protected]> |
1308 |
|
|
1309 |
|
* tools/formed/formed/plugins/export/sql.py: Grant statements for |
1310 |
|
descriptive tables added. |
1311 |
|
(Table.getName): new |
1312 |
|
|
1313 |
|
2007-10-21 Frank Koormann <[email protected]> |
1314 |
|
|
1315 |
|
* tools/formed/formed/plugins/export/sql.py: "CREATE OR REPLACE" |
1316 |
|
statements for views and roles to make updates easier. |
1317 |
|
Add "admin_ka" membership as third option to VIEW_WHERE_CLAUSE. |
1318 |
|
|
1319 |
|
2007-10-19 Frank Koormann <[email protected]> |
1320 |
|
|
1321 |
|
* tools/formed/formed/plugins/export/sql.py: Added GRANT statements |
1322 |
|
for views. The statements are prepared for variable substitution |
1323 |
|
when executing the SQL-scripts by psql. |
1324 |
|
|
1325 |
|
2007-10-18 Sascha L. Teichmann <[email protected]> |
1326 |
|
|
1327 |
|
* pdf2xfa/src/de/intevation/pdfimport/ClientHandler.java: Fixed: |
1328 |
|
End of result XML was truncated because of an unflushed buffer. |
1329 |
|
|
1330 |
|
2007-10-17 Sascha L. Teichmann <[email protected]> |
1331 |
|
|
1332 |
|
* pdf2xfa/bin/build-jar.sh: New. Build production jar file. |
1333 |
|
|
1334 |
|
* pdf2xfa/README.TXT: Adjusted how to build production jar file |
1335 |
|
and how to use it. |
1336 |
|
|
1337 |
|
* pdf2xfa/etc, pdf2xfa/etc/manifest.txt: New. Defines main class |
1338 |
|
and iText dependency. |
1339 |
|
|
1340 |
|
2007-10-16 Sascha L. Teichmann <[email protected]> |
1341 |
|
|
1342 |
|
* tools/formed/formed/plugins/export/sql.py: Model 'Ja, Nein, Keine Angabe' |
1343 |
|
are not modeled as BOOLEANs any more. That simpifies the conversion |
1344 |
|
process web vs. db. |
1345 |
|
|
1346 |
|
2007-10-07 Sascha L. Teichmann <[email protected]> |
1347 |
|
|
1348 |
|
* tools/formed/formed/plugins/export/sql.py: Added the remaining |
1349 |
|
UPDATE rules. |
1350 |
|
|
1351 |
|
2007-10-07 Sascha L. Teichmann <[email protected]> |
1352 |
|
|
1353 |
|
* tools/formed/formed/plugins/export/sql.py: Added UPDATE rules for some |
1354 |
|
views. TODO: Test'em and implement the rest. |
1355 |
|
|
1356 |
|
2007-10-07 Sascha L. Teichmann <[email protected]> |
1357 |
|
|
1358 |
|
* tools/formed/formed/plugins/export/sql.py: Bug fix. DELETE and INSERT |
1359 |
|
rules referenced none existing views. |
1360 |
|
|
1361 |
|
2007-10-07 Sascha L. Teichmann <[email protected]> |
1362 |
|
|
1363 |
|
* tools/formed/formed/plugins/export/sql.py: Added DELETE and INSERT |
1364 |
|
rules for views. TODO: add UPDATE rules. |
1365 |
|
|
1366 |
|
2007-10-07 Sascha L. Teichmann <[email protected]> |
1367 |
|
|
1368 |
|
* tools/formed/formed/plugins/export/old_sql.py: New. Contains |
1369 |
|
the legacy SQL export filters. |
1370 |
|
|
1371 |
|
* tools/formed/formed/plugins/export/sql.py: Factored out the |
1372 |
|
legacy SQL export filters to old_sql. |
1373 |
|
|
1374 |
|
* tools/formed/formed/config.py: Adjusted to fetch legacy |
1375 |
|
filters from old_sql. |
1376 |
|
|
1377 |
|
2007-10-06 Sascha L. Teichmann <[email protected]> |
1378 |
|
|
1379 |
|
* pdf2xfa/**: Initial import of the PDF to XFA server. |
1380 |
|
|
1381 |
|
2007-10-06 Sascha L. Teichmann <[email protected]> |
1382 |
|
|
1383 |
|
* tools/formed/formed/plugins/export/sql.py: Fixed bug |
1384 |
|
that made choices of three elements to booleans if |
1385 |
|
they have other meanings than 'Ja', 'Nein', 'keine Angabe'. |
1386 |
|
|
1387 |
|
2007-10-05 Sascha L. Teichmann <[email protected]> |
1388 |
|
|
1389 |
|
* tools/formed/formed/plugins/export/sql.py: Select ids of |
1390 |
|
underlaying tables in views too. |
1391 |
|
|
1392 |
|
2007-10-04 Sascha L. Teichmann <[email protected]> |
1393 |
|
|
1394 |
|
* tools/formed/formed/plugins/export/sql.py: Create schema inside transaction. |
1395 |
|
Various bug fixes. |
1396 |
|
|
1397 |
|
2007-10-04 Sascha L. Teichmann <[email protected]> |
1398 |
|
|
1399 |
|
* tools/formed/formed/model/data.py: Added GroupNode.allWidgets() |
1400 |
|
to extract fields from embedded repeat groups. |
1401 |
|
|
1402 |
|
* tools/formed/formed/plugins/export/sql.py: The SQL exporter exports |
1403 |
|
views per page too. Result not tested yet. |
1404 |
|
|
1405 |
|
2007-10-01 Sascha L. Teichmann <[email protected]> |
1406 |
|
|
1407 |
|
* tools/formed/formed/plugins/web/view_renderer.py: Ignore |
1408 |
|
in-page repeat groups while rendering pages. |
1409 |
|
|
1410 |
|
2007-10-01 Sascha L. Teichmann <[email protected]> |
1411 |
|
|
1412 |
|
* tools/formed/formed/model/nodecomponents.py: Added visitor |
1413 |
|
traversals for document trees. |
1414 |
|
|
1415 |
|
* tools/formed/formed/model/data.py: Rewrote the |
1416 |
|
Page.allWidgets() method to use new visitor for |
1417 |
|
tree traversal. |
1418 |
|
|
1419 |
|
2007-09-27 Torsten Irlaender <[email protected]> |
1420 |
|
|
1421 |
|
* tools/formed/formed/plugins/names/filter.py: Pages are now included |
1422 |
|
in the rename by formular name algorithm |
1423 |
|
|
1424 |
|
2007-09-26 Sascha L. Teichmann <[email protected]> |
1425 |
|
|
1426 |
|
* tools/formed/formed/model/data.py: Removed old {next|prev}Page() |
1427 |
|
TODO: rewrite Page.allWidgets(). |
1428 |
|
|
1429 |
|
* tools/formed/formed/model/nodecomponents.py: Added a method |
1430 |
|
Node.firstLevel(criterion) to walk a defined line in the tree. |
1431 |
|
|
1432 |
|
* tools/formed/formed/plugins/export/sql.py: Extract data suitable to |
1433 |
|
build views and respective joins. |
1434 |
|
|
1435 |
|
2007-09-26 Sascha L. Teichmann <[email protected]> |
1436 |
|
|
1437 |
|
* tools/formed/formed/plugins/web/plugin.py: add 'web.tidy:' flag to |
1438 |
|
FORMED environment variable. If set to true tidylib is used to |
1439 |
|
filter HTML content to be W3C valid. To use this feature install |
1440 |
|
uTidylib. |
1441 |
|
|
1442 |
|
* tools/formed/formed/plugins/web/server.py: Check if MIME type is |
1443 |
|
text/html and filters content through tidy if requested. |
1444 |
|
|
1445 |
|
2007-09-25 Torsten Irlaender <[email protected]> |
1446 |
|
|
1447 |
|
* tools/formed/formed/plugins/web/view_renderer.py: Small fix and |
1448 |
|
cleanup of the form generation code. |
1449 |
|
|
1450 |
|
2007-09-21 Sascha L. Teichmann <[email protected]> |
1451 |
|
|
1452 |
|
* tools/formed/formed/plugins/export/sql.py: Added generation time |
1453 |
|
and DROP TABLE statements to schema export. |
1454 |
|
|
1455 |
|
2007-09-20 Sascha L. Teichmann <[email protected]> |
1456 |
|
|
1457 |
|
* tools/formed/formed/plugins/export/sql.py: The tables are generated |
1458 |
|
in correct topolocial order now. |
1459 |
|
|
1460 |
|
2007-09-20 Sascha L. Teichmann <[email protected]> |
1461 |
|
|
1462 |
|
* tools/formed/formed/plugins/export/mode.py: New. Filter to export |
1463 |
|
a document with items that are in given mode. |
1464 |
|
|
1465 |
|
* tools/formed/formed/model/nodecomponents.py: Added methods to clone |
1466 |
|
trees depending on selected modes. |
1467 |
|
|
1468 |
|
* tools/formed/formed/model/data.py, tools/formed/formed/model/expr.py: |
1469 |
|
Fixed clone issue with RuleNodes. |
1470 |
|
|
1471 |
|
* tools/formed/formed/config.py: Use new plug-in. |
1472 |
|
|
1473 |
2007-09-17 Sascha L. Teichmann <[email protected]> |
2007-09-17 Sascha L. Teichmann <[email protected]> |
1474 |
|
|
1475 |
* tools/formed/formed/plugins/web/view_renderer.py: Make the |
* tools/formed/formed/plugins/web/view_renderer.py: Make the |