/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 324 by teichmann, Thu Apr 2 14:24:37 2009 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]>  2009-04-02      Sascha L. Teichmann <[email protected]>
671    
672          * formed/formed/plugins/export/sql.py: call anonymization          * formed/formed/plugins/export/sql.py: call anonymization

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26