1 |
|
2009-03-13 Sascha L. Teichmann <[email protected]> |
2 |
|
|
3 |
|
* formed/formed/plugins/modify/rules.py: Make the error descriptions |
4 |
|
in date sequence rules more precise. |
5 |
|
|
6 |
|
2009-03-13 Sascha L. Teichmann <[email protected]> |
7 |
|
|
8 |
|
* formed/formed/plugins/modify/rules.py: generate date sequence rules. |
9 |
|
|
10 |
|
2009-03-13 Sascha L. Teichmann <[email protected]> |
11 |
|
|
12 |
|
* formed/formed/model/exprtree.py: New tree based expression engine. |
13 |
|
|
14 |
|
* formed/formed/model/__init__.py, formed/formed/model/data.py: |
15 |
|
Adjusted imports. |
16 |
|
|
17 |
|
2009-03-12 Torsten Irländer <[email protected]> |
18 |
|
|
19 |
|
Introduced new order attribute for date fields |
20 |
|
|
21 |
|
* formed/formed/model/data.py: Order fields can be used to define to |
22 |
|
ordering of datefields withing the document. Needed for automatic |
23 |
|
generation of consistency rules. |
24 |
|
|
25 |
|
2009-02-09 Sascha L. Teichmann <[email protected]> |
26 |
|
|
27 |
|
* formed/formed/model/data.py: Allow pages to be 'invisible'. |
28 |
|
|
29 |
|
2009-02-09 Sascha L. Teichmann <[email protected]> |
30 |
|
|
31 |
|
* formed/formed/plugins/export/sql.py: Fixed problem with |
32 |
|
description reference tables of radio groups. |
33 |
|
|
34 |
|
2009-02-09 Sascha L. Teichmann <[email protected]> |
35 |
|
|
36 |
|
* formed/formed/plugins/export/sql.py: replace '-' in names |
37 |
|
by '_'. |
38 |
|
|
39 |
|
2009-02-09 Sascha L. Teichmann <[email protected]> |
40 |
|
|
41 |
|
* formed/formed/plugins/export/sql.py: to figure ou which |
42 |
|
tables are equal the insert statememnts are lower cased |
43 |
|
and sorted before they are compared. This reduces the number |
44 |
|
of generated referfence tables. |
45 |
|
|
46 |
|
2009-02-09 Sascha L. Teichmann <[email protected]> |
47 |
|
|
48 |
|
Repair SQL schema creation for radio groups. |
49 |
|
|
50 |
|
* formed/formed/plugins/export/sql.py: radio groups are handled |
51 |
|
like choices now. |
52 |
|
|
53 |
|
2009-02-09 Sascha L. Teichmann <[email protected]> |
54 |
|
|
55 |
|
Make it startable again. |
56 |
|
|
57 |
|
* formed/formed/plugins/export/xls.py: Import pyExcelerator only |
58 |
|
when plug-in is called. |
59 |
|
|
60 |
|
* formed/formed/model/nodecomponents.py: Event routing was messed up. |
61 |
|
Rewired root node with document. |
62 |
|
|
63 |
|
* formed/formed/plugins/web/help.py: Removed old xml.ext import. |
64 |
|
XXX: This breaks creating help by now! |
65 |
|
|
66 |
|
* formed/formed/io/parser.py: Replace old deprecated base class |
67 |
|
by new one. |
68 |
|
|
69 |
|
* formed/formed/main.py: Do not crash if locale cannot be set. |
70 |
|
|
71 |
|
* formed/formed/ui/controls.py: Use document.getCase() instead |
72 |
|
of document.case to prevent uninitialized dereferences. |
73 |
|
|
74 |
|
2009-01-22 Torsten Irländer <[email protected]> |
75 |
|
|
76 |
|
Implemented new XML-Format for formed xml files. |
77 |
|
|
78 |
|
* formed/formed/model/nodecomponents.py, |
79 |
|
formed/formed/io/document.py, |
80 |
|
formed/formed/main.py, |
81 |
|
formed/formed/ui/controls.py: Introduced new "case" and "logbook" |
82 |
|
node. Under case is the definition of the formular. logbook will |
83 |
|
hold the defintion of logboog entrys. For now only the part under |
84 |
|
"case" can be modified. |
85 |
|
|
86 |
|
2009-01-21 Torsten Irländer <[email protected]> |
87 |
|
|
88 |
|
Changed way how XSD-Scheme is generated |
89 |
|
|
90 |
|
* formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support |
91 |
|
logbookentrys. The scheme definiton is now hardcoded in the |
92 |
|
exporter as it will rarely change. It logbookpart will not be |
93 |
|
generated from the formedtree anymore. |
94 |
|
|
95 |
|
2009-01-20 Torsten Irländer <[email protected]> |
96 |
|
|
97 |
|
Support Logbook entrys in xsd schema export |
98 |
|
|
99 |
|
* formed/formed/model/data.py: Repeatnode are now handeld as |
100 |
|
repeatgroups in xsd-export |
101 |
|
* formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support |
102 |
|
logbookentrys. The scheme will now validate against an xmlfile from |
103 |
|
the offlineclient. |
104 |
|
|
105 |
|
2009-01-09 Torsten Irländer <[email protected]> |
106 |
|
|
107 |
|
Added new repeat node |
108 |
|
|
109 |
|
* formed/formed/model/data.py, |
110 |
|
formed/formed/io/document.py: Added repeatnode to the formedtree. |
111 |
|
TODO: Remove repeatgroup handling from the groupnode. |
112 |
|
|
113 |
|
2009-01-08 Torsten Irländer <[email protected]> |
114 |
|
|
115 |
|
Add isset operator to autogenerated rules. |
116 |
|
|
117 |
|
* formed/formed/plugins/modify/rules.py: Add issed operator to standard |
118 |
|
autogenerated rules. |
119 |
|
|
120 |
|
2008-12-17 Frank Koormann <[email protected]> |
121 |
|
|
122 |
|
* formed/formed/plugins/export/latex.py: Export form as set of |
123 |
|
latex tables to be included into a master document. The export |
124 |
|
generates section marks to structure the form and placeholders for |
125 |
|
help texts to be merged in by a post processing step. |
126 |
|
|
127 |
|
2008-12-04 Sascha L. Teichmann <[email protected]> |
128 |
|
|
129 |
|
* formed/formed/model/expr.py: Added 'today' which pushes the current date |
130 |
|
on the stack. |
131 |
|
|
132 |
|
2008-12-03 Sascha L. Teichmann <[email protected]> |
133 |
|
|
134 |
|
* formed/formed/plugins/web/controllers.py: compute changeset more correctly in |
135 |
|
storage of fields. |
136 |
|
|
137 |
|
* formed/formed/plugins/export/xsd.py: Added unknown int -999999 to integer |
138 |
|
fields as an accepted value. Generate schema for radio groups too. |
139 |
|
|
140 |
|
2008-12-01 Torsten Irländer <[email protected]> |
141 |
|
|
142 |
|
Added autmatic generation of required rules |
143 |
|
|
144 |
|
* formed/formed/model/data.py, |
145 |
|
formed/formed/model/expr.py, |
146 |
|
formed/formed/plugins/modify/rules.py: Default rules for required |
147 |
|
fields can now be generated. |
148 |
|
|
149 |
|
2008-11-28 Sascha L. Teichmann <[email protected]> |
150 |
|
|
151 |
|
* formed/formed/model/data.py, formed/formed/model/nodecomponents.py: |
152 |
|
Ported WidgetCollector from Offline client. |
153 |
|
|
154 |
|
* formed/formed/plugins/modify/__init__.py, formed/formed/plugins/modify, |
155 |
|
formed/formed/plugins/modify/rules.py: Stub for required rules generator. |
156 |
|
|
157 |
|
* formed/formed/config.py: Bind new filter to FormEd |
158 |
|
|
159 |
|
2008-11-27 Torsten Irländer <[email protected]> |
160 |
|
|
161 |
|
* formed/formed/model/data.py: Added new attribute mark for rules |
162 |
|
|
163 |
|
2008-11-10 Torsten Irländer <[email protected]> |
164 |
|
|
165 |
|
Implemented radio-matrix elements. radio elelement having the same |
166 |
|
options can now be rendered in table form. |
167 |
|
|
168 |
|
* formed/formed/model/data.py, |
169 |
|
formed/formed/io/document.py: Added new radio-matrix element to the |
170 |
|
model and gui |
171 |
|
* formed/formed/plugins/web/view_renderer.py: Write html-renderer for |
172 |
|
the radio-matrix element. |
173 |
|
|
174 |
|
2008-11.03 Torsten Irländer <[email protected]> |
175 |
|
|
176 |
|
* formed/formed/model/data.py: Fixed import error |
177 |
|
|
178 |
|
2008-10-29 Sascha L. Teichmann <[email protected]> |
179 |
|
|
180 |
|
Relative paths in external choices are now possible. Relative paths are |
181 |
|
relative to path of the master document. |
182 |
|
|
183 |
|
* formed/model/data.py: external choice are now storing the path to the |
184 |
|
master document. |
185 |
|
|
186 |
|
* formed/formed/io/document.py: Pass context to SAX builder. |
187 |
|
|
188 |
|
* formed/formed/io/factories.py: For new created nodes look if there |
189 |
|
is a method 'setLoadContext' and call it. |
190 |
|
|
191 |
|
2008-09-04 Sascha L. Teichmann <[email protected]> |
192 |
|
|
193 |
|
* doc/beschreibung.txt: New. Initial description of FormEd (german). |
194 |
|
|
195 |
|
2008-08-22 Sascha L. Teichmann <[email protected]> |
196 |
|
|
197 |
|
* formed/formed/model/nodecomponents.py: Added attribute 'flags'. |
198 |
|
|
199 |
|
2008-08-21 Sascha L. Teichmann <[email protected]> |
200 |
|
|
201 |
|
* formed/formed/io/document.py: Indent tree while saving |
202 |
|
* formed/formed/main.py: removed needless print |
203 |
|
|
204 |
|
2008-08-15 Sascha L. Teichmann <[email protected]> |
205 |
|
|
206 |
|
* LICENSE: New GPLv3 |
207 |
|
* */*.py, *.sh: Added reference to LICENSE |
208 |
|
|
209 |
|
2008-08-15 Sascha L. Teichmann <[email protected]> |
210 |
|
|
211 |
|
* tools: removed because there a no tools any more. |
212 |
|
|
213 |
|
2008-08-15 Sascha L. Teichmann <[email protected]> |
214 |
|
|
215 |
|
* tools/formed: moved one level up because its the only |
216 |
|
part of this project now. |
217 |
|
|
218 |
|
2008-08-15 Sascha L. Teichmann <[email protected]> |
219 |
|
|
220 |
|
* tools/anonym/*: Removed as it belongs to mpuls WASKA |
221 |
|
|
222 |
|
2008-08-15 Sascha L. Teichmann <[email protected]> |
223 |
|
|
224 |
|
* pdf2xfa/*: removed. It belongs to mpuls |
225 |
|
|
226 |
|
2008-08-13 L. Teichmann <[email protected]> |
227 |
|
|
228 |
|
i18n of the plug-ins: |
229 |
|
* tools/formed/formed/plugins/export/diff.py, |
230 |
|
tools/formed/formed/plugins/export/data.py, |
231 |
|
tools/formed/formed/plugins/export/old_sql.py, |
232 |
|
tools/formed/formed/plugins/export/latex.py, |
233 |
|
tools/formed/formed/plugins/export/xsd.py, |
234 |
|
tools/formed/formed/plugins/export/sql.py, |
235 |
|
tools/formed/formed/plugins/export/typemap.py, |
236 |
|
tools/formed/formed/plugins/export/html.py, |
237 |
|
tools/formed/formed/plugins/export/mode.py, |
238 |
|
tools/formed/formed/plugins/export/html2.py, |
239 |
|
tools/formed/formed/plugins/export/xls.py, |
240 |
|
tools/formed/formed/plugins/names/filter.py, |
241 |
|
tools/formed/formed/plugins/plugin.py, |
242 |
|
tools/formed/formed/plugins/web/help.py, |
243 |
|
tools/formed/formed/plugins/web/form_renderer.py, |
244 |
|
tools/formed/formed/plugins/web/plugin.py, |
245 |
|
tools/formed/formed/plugins/web/error_renderer.py, |
246 |
|
tools/formed/formed/plugins/web/view_renderer.py, |
247 |
|
tools/formed/formed/plugins/web/semantic.py, |
248 |
|
tools/formed/formed/plugins/web/cache.py, |
249 |
|
tools/formed/formed/plugins/web/server.py, |
250 |
|
tools/formed/formed/plugins/web/controllers.py, |
251 |
|
tools/formed/formed/plugins/web/renderer.py, |
252 |
|
tools/formed/formed/plugins/ui/controls.py, |
253 |
|
tools/formed/formed/config.py: _("")s the stuff |
254 |
|
tools/formed/po/formed.pot, tools/formed/po/de_DE.po: |
255 |
|
extracted and translated. |
256 |
|
|
257 |
|
2008-08-08 Sascha L. Teichmann <[email protected]> |
258 |
|
|
259 |
|
First version of FormEd i18n. After checkout go to tools/formed/po/ and |
260 |
|
say 'make mo'. Afterwards you can start FormEd as usual. |
261 |
|
|
262 |
|
* tools/formed/resources: New. Place to places ressources like *.mo files |
263 |
|
* tools/formed/formed/main.py, tools/formed/formed/ui/controls.py: Add _("")s |
264 |
|
|
265 |
|
* tools/formed/po, |
266 |
|
tools/formed/po/Makefile, |
267 |
|
tools/formed/po/formed.pot, |
268 |
|
tools/formed/po/de_DE.po: i18n stuff. |
269 |
|
|
270 |
|
2008-08-08 Sascha L. Teichmann <[email protected]> |
271 |
|
|
272 |
|
* tools/anonym/xmlexport.py: Only export cases which are not |
273 |
|
'schwebend geloescht'. |
274 |
|
|
275 |
|
2008-07-23 Sascha L. Teichmann <[email protected]> |
276 |
|
|
277 |
|
Fixed issue472 |
278 |
|
|
279 |
|
* tools/anonym/xmlimport.py: Regenerate dicts from current form ed tree. |
280 |
|
|
281 |
|
2008-07-17 Sascha L. Teichmann <[email protected]> |
282 |
|
|
283 |
|
* tools/anonym/xmlimport.py: removed marking of invalid cases |
284 |
|
* tools/anonym/cron.importAnonXml.sh: re-inserted here. |
285 |
|
|
286 |
|
2008-07.07 Torsten Irländer <[email protected]> |
287 |
|
|
288 |
|
* tools/formed/formed/plugins/export/latex.py |
289 |
|
tools/formed/formed/config.py: Added new LaTex Export. Beware this |
290 |
|
is even more ugly the HTML Export. |
291 |
|
* tools/formed/formed/plugins/export/html.py: Added information on |
292 |
|
anonymisation to the html export. |
293 |
|
|
294 |
|
2008-07-07 Sascha L. Teichmann <[email protected]> |
295 |
|
|
296 |
|
* tools/anonym/xmlimport.py: Mark cases if they are inconsistent. |
297 |
|
|
298 |
|
2008-07-07 Sascha L. Teichmann <[email protected]> |
299 |
|
|
300 |
|
* tools/anonym/xmlimport.py: Updated to schema 1.5. (Which is incompatible to 1.4) |
301 |
|
|
302 |
|
2008-07-07 Sascha L. Teichmann <[email protected]> |
303 |
|
|
304 |
|
* tools/formed/formed/plugins/export/html.py: Added additional column |
305 |
|
to the html export with information how each field will get |
306 |
|
anonymized. |
307 |
|
|
308 |
|
2008-07-07 Sascha L. Teichmann <[email protected]> |
309 |
|
|
310 |
|
* tools/anonym/xmlimport.py: sync with productive version. |
311 |
|
|
312 |
|
2008-06-10 Torsten Irländer <[email protected]> |
313 |
|
|
314 |
|
* tools/formed/formed/plugins/export/sql.py: grant admin permission to |
315 |
|
call anonymize function |
316 |
|
|
317 |
|
2008-05-21 Sascha L. Teichmann <[email protected]> |
318 |
|
|
319 |
|
* tools/formed/formed/plugins/export/xsd.py: Brought encoding |
320 |
|
back to UTF-8. |
321 |
|
|
322 |
|
2008-05-21 Frank Koormann <[email protected]> |
323 |
|
|
324 |
|
* tools/formed/formed/plugins/export/xls.py: New, export key value |
325 |
|
tables as excel workbook with one sheet per table. |
326 |
|
|
327 |
|
* tools/formed/formed/config.py: ExportKeyValueTableAsXLS added. |
328 |
|
|
329 |
|
2008-05-21 Frank Koormann <[email protected]> |
330 |
|
|
331 |
|
* tools/formed/formed/plugins/export/xsd.py |
332 |
|
(SchemaCreator._createChoice): Fix use of choices name. |
333 |
|
|
334 |
|
2008-04-29 Sascha L. Teichmann <[email protected]> |
335 |
|
|
336 |
|
* tools/formed/formed/plugins/export/xsd.py: Use substitution group |
337 |
|
to allow arbitrary order of repeat groups. |
338 |
|
|
339 |
|
2008-04-29 Sascha L. Teichmann <[email protected]> |
340 |
|
|
341 |
|
* tools/formed/formed/plugins/export/xsd.py: Removed a needless |
342 |
|
character. |
343 |
|
|
344 |
|
2008-04-29 Sascha L. Teichmann <[email protected]> |
345 |
|
|
346 |
|
* tools/formed/formed/plugins/export/xsd.py: Added annotations |
347 |
|
to fields. |
348 |
|
|
349 |
|
2008-04-29 Sascha L. Teichmann <[email protected]> |
350 |
|
|
351 |
|
* tools/formed/formed/plugins/export/xsd.py: Added for |
352 |
|
choice fields. |
353 |
|
|
354 |
|
2008-04-29 Sascha L. Teichmann <[email protected]> |
355 |
|
|
356 |
|
* tools/formed/formed/plugins/export/xsd.py: Added support for |
357 |
|
boolean fields based on enumerations. |
358 |
|
|
359 |
|
2008-04-28 Sascha L. Teichmann <[email protected]> |
360 |
|
|
361 |
|
* tools/formed/formed/plugins/export/xsd.py: Added support for |
362 |
|
date, text and textarea fields. |
363 |
|
|
364 |
|
2008-04-28 Sascha L. Teichmann <[email protected]> |
365 |
|
|
366 |
|
* tools/formed/formed/plugins/export/xsd.py: Added support for |
367 |
|
repeat groups and integer fields. |
368 |
|
|
369 |
|
2008-04-28 Sascha L. Teichmann <[email protected]> |
370 |
|
|
371 |
|
* tools/formed/formed/plugins/export/xsd.py: New. plug-in for |
372 |
|
exporting as XML schema. not ready, yet. |
373 |
|
|
374 |
|
* tools/formed/formed/config.py: Use new plug-in. |
375 |
|
|
376 |
|
* tools/formed/formed/plugins/export/sql.py: Fixed wrong GUI text. |
377 |
|
|
378 |
|
2008-04-17 Torsten Irländer <[email protected]> |
379 |
|
|
380 |
|
* tools/formed/formed/plugins/export/sql.py: Changed WHERE clause in |
381 |
|
for the views because of the new group permissions. |
382 |
|
|
383 |
|
2008-04-09 Sascha L. Teichmann <[email protected]> |
384 |
|
|
385 |
|
* tools/anonym/cron.deleteOldAnonymized.sh: New. cron job to delete |
386 |
|
old anonymized cases. |
387 |
|
|
388 |
|
2008-04-01 Sascha L. Teichmann <[email protected]> |
389 |
|
|
390 |
|
* tools/anonym/xmlexport.py: Removed "WHERE einverstaendniserklaerung = 1" |
391 |
|
from clause to select datasets. |
392 |
|
Replace ']]>' in CDATA sections with correct splitted replacement. |
393 |
|
|
394 |
|
2008-03-12 Sascha L. Teichmann <[email protected]> |
395 |
|
|
396 |
|
* tools/anonym/cron.importAnonXml.sh: Added absolut path to xmlimport |
397 |
|
script. |
398 |
|
|
399 |
|
* tools/anonym/xmlimport.py: commented out database port from |
400 |
|
connectionstring. |
401 |
|
|
402 |
|
2008-03-12 Sascha L. Teichmann <[email protected]> |
403 |
|
|
404 |
|
* tools/formed/formed/plugins/export/sql.py: Fixed bug in generation |
405 |
|
of anonymization of repeat groups (wrong id was given). |
406 |
|
|
407 |
|
2008-03-11 Sascha L. Teichmann <[email protected]> |
408 |
|
|
409 |
|
* tools/formed/formed/plugins/export/sql.py: Generate no update |
410 |
|
statements for relations which have no anonym functions applied. |
411 |
|
|
412 |
|
2008-03-11 Sascha L. Teichmann <[email protected]> |
413 |
|
|
414 |
|
* tools/formed/formed/plugins/export/sql.py: Added a newline after |
415 |
|
'COMMIT;' in the last line. |
416 |
|
|
417 |
|
2008-03-11 Sascha L. Teichmann <[email protected]> |
418 |
|
|
419 |
|
* tools/formed/formed/plugins/export/sql.py: Fixed syntax of |
420 |
|
generated anonymize_case() function. |
421 |
|
|
422 |
|
2008-03-11 Sascha L. Teichmann <[email protected]> |
423 |
|
|
424 |
|
* tools/formed/formed/plugins/export/sql.py: Added code to |
425 |
|
generate a plpgsql function anonymize_case() that anonymized |
426 |
|
a given case and all of its depending repeat groups. |
427 |
|
|
428 |
|
2008-03-06 Sascha L. Teichmann <[email protected]> |
429 |
|
|
430 |
|
* tools/anonym/xmlimport.py: remove print of insert statement. |
431 |
|
|
432 |
|
* tools/formed/formed/plugins/export/sql.py: Print generation date in ISO. |
433 |
|
|
434 |
|
2008-03-03 Torsten Irländer <[email protected]> |
435 |
|
|
436 |
|
* anonym/cron.sendAnonXml.sh, |
437 |
|
anonym/getDbList.sh: Modified script to be used directly in the |
438 |
|
production environment (Copied running scripts from production |
439 |
|
server) |
440 |
|
|
441 |
|
* cron.importAnonXml.sh: Added deleting of ols cases. Modified script |
442 |
|
to be used in a production environment (Cpoied running script from |
443 |
|
production server) |
444 |
|
|
445 |
|
* tools/anonym/xmlexport.py: Added "WHERE" clause to SQL-Statement to |
446 |
|
ensure that only valid cases get exported |
447 |
|
|
448 |
|
2008-02-27 Sascha L. Teichmann <[email protected]> |
449 |
|
|
450 |
|
* tools/anonym/xmlimport.py: Fixed bug in date converter. |
451 |
|
|
452 |
|
2008-02-27 Sascha L. Teichmann <[email protected]> |
453 |
|
|
454 |
|
* tools/anonym/xmlimport.py: Simpilied version |
455 |
|
|
456 |
|
2008-02-27 Sascha L. Teichmann <[email protected]> |
457 |
|
|
458 |
|
* tools/anonym/cron.importAnonXml.sh: Add sudo call for |
459 |
|
xmlimport.py and parameters. |
460 |
|
|
461 |
|
* tools/anonym/xmlimport.py: Various bug fixes. Not working yet. :-/ |
462 |
|
|
463 |
|
* tools/anonym/xmlexport.py: Use python interpreter without env |
464 |
|
because of sudo context. |
465 |
|
|
466 |
|
2008-02-26 Sascha L. Teichmann <[email protected]> |
467 |
|
|
468 |
|
* tools/anonym/xmlimport.py: added support for getopt. add |
469 |
|
support to force in fkz in import of case. |
470 |
|
|
471 |
|
2008-02-26 Sascha L. Teichmann <[email protected]> |
472 |
|
|
473 |
|
* tools/anonym/xmlimport.py: Implemented logic to create/update cases. |
474 |
|
|
475 |
|
* tools/anonym/html.awk: produces valid HTML. |
476 |
|
|
477 |
2008-02-25 Sascha L. Teichmann <[email protected]> |
2008-02-25 Sascha L. Teichmann <[email protected]> |
478 |
|
|
479 |
* tools/anonym/joincsv.py: Fix a logic bug. |
* tools/anonym/joincsv.py: Fix a logic bug. |
485 |
the files into the DB. After that the script will cleanup the |
the files into the DB. After that the script will cleanup the |
486 |
directory. |
directory. |
487 |
|
|
488 |
|
2008-02-25 Torsten Irländer <[email protected]> |
489 |
|
|
490 |
|
* tools/anonym/cron.sendAnonXml.sh, |
491 |
|
tools/anonym/xmlexport.py, |
492 |
|
tools/anonym/getDbList.sh: Added shell-scripts for exporting cases |
493 |
|
|
494 |
2008-02-25 Sascha L. Teichmann <[email protected]> |
2008-02-25 Sascha L. Teichmann <[email protected]> |
495 |
|
|
496 |
* tools/anonym/joincsv.py: Fixed typo which generated wrong number of cols. |
* tools/anonym/joincsv.py: Fixed typo which generated wrong number of cols. |