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