/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

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

Legend:
Removed from v.220  
changed lines
  Added in v.432

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26