/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 284 by teichmann, Fri Aug 15 13:42:07 2008 UTC revision 398 by bh, Thu Sep 16 15:04:46 2010 UTC
# Line 1  Line 1 
1    2010-09-16  Bernhard Herzog  <[email protected]>
2    
3            Avoid database deadlocks that can happen when database clients try
4            to work with the same case using two separate database
5            connections.  See mpuls/issue1145 for details.
6    
7            * formed/formed/plugins/export/rg_sql.py (SQL_TEMPLATE): Split the
8            computation of the new json structure description into the new
9            database function compute_case_structure
10            (TRIGGER_TMPL): Change the trigger functions to immediately update
11            the cached json structure description instead of just setting the
12            modified flag.  This avoids the lazy recomputation that makes what
13            seems like a read-only access (calling get_case_structure) into a
14            writing access (updates of the cache).  The writes lock the row in
15            the case_structure table which prevent other connections from
16            accessing the same case.  As part of this, the delete triggers are
17            now AFTER triggers because the repeat groups instance must have
18            been removed when the structure is recomputed.
19            (SUBSELECT_TMPL): Since the delete trigger is now an after
20            trigger, we need to change the way the master id is computed.  We
21            cannot join with the repeatgroup table in question because the row
22            has already been deleted.  However, we can use the master_id
23            column of the OLD row to select the row of the parent table.
24            (create_triggers): Avoid the inner joins with the current repeat
25            group for the above mentioned reasons.  In the very common case of
26            repeat groups which are direct children of the master_tbl, we can
27            compare the master_tbl.id directly with the row's master_id.
28    
29    2010-09-14 Roland Geider <[email protected]>
30    
31            * formed/formed/plugins/export/xsd.py: issue1131: update XSD for new
32              formedtree structure
33    
34    2010-09-01 Roland Geider <[email protected]>
35    
36            * formed/formed/plugins/modify/rules.py: issue1050: mandatory fields
37              appearing double.
38              The problem was that the way the formEditor handled fields with
39              manually created rules changed. Instead of ignoring fields (very
40              early behaviour) or always generating them (early behaviour), now the
41              formED will only ignore fields with rules which name starts with
42              'required-rule-manual'. This is helpful when the rules for mandatory
43              fields are more complex (e.g. mother's name is only required if
44              mother is known).
45    
46    2010-08-10  Torsten Irländer <[email protected]>
47    
48            * contrib/diff_formed.py: New helperscript to diff to given
49              formedtrees
50    
51    2010-08-09      Roland Geider <[email protected]>
52    
53            * formed/model/exprtree.py: fixed typo
54    
55    2010-08-04  Bernhard Herzog  <[email protected]>
56    
57            * formed/po/de_DE.po: Update translations
58    
59    2010-08-04  Bernhard Herzog  <[email protected]>
60    
61            * formed/po/formed.pot: Regenerated.
62    
63            * formed/po/de_DE.po: Update.
64    
65    2010-08-04  Bernhard Herzog  <[email protected]>
66    
67            * formed/po/Makefile: Use correct filename of the pot-file in the
68            usage message
69    
70    2010-08-04  Bernhard Herzog  <[email protected]>
71    
72            * formed/po/Makefile (LIST_POTFILES): Sort the file names to make
73            the order of entries in the .pot-file more predictable.
74    
75    2010-08-04  Bernhard Herzog  <[email protected]>
76    
77            * formed/formed/model/nodecomponents.py (RootNode.__init__)
78            (RootNode.getVersion, RootNode.setVersion): Add attribute
79            "version" and accessor methods.
80    
81            * formed/formed/main.py (MainFrame.OnSetDocumentVersion): New. Let
82            the user set the document version.
83            (MainFrame._createMenuBar): Add menu item for OnSetDocumentVersion
84    
85    2010-08-02  Bernhard Herzog  <[email protected]>
86    
87            * formed/formed.py, formed/formed/io/document.py,
88            formed/formed/io/factories.py, formed/formed/io/parser.py,
89            formed/formed/model/data.py, formed/formed/model/event.py,
90            formed/formed/model/expr.py, formed/formed/model/exprtree.py,
91            formed/formed/model/memory.py, formed/formed/model/misc.py,
92            formed/formed/model/nodecomponents.py,
93            formed/formed/model/persistent.py: Fix coding declaration to be
94            acceptable to both python and Emacs.
95    
96    2010-07-29  Torsten Irländer <[email protected]>
97    
98            * formed/formed/model/data.py: Added "invisible" attribute to
99            BoolLeafs. This can be used to hide options in choicelists. so the
100            user can not select the value in the user interface. But the db will
101            have this option so is ist still present in the db an can be used
102            * formed/formed/model/exprtree.py: Added "days" function.
103    
104    2010-07-26      Roland Geider <[email protected]>
105    
106            * formed/formed/model/nodecomponents.py,
107              formed/formed/plugins/modify/rules.py: generated date rules take
108              into consideration repeat groups
109    
110    2010-07-21  Torsten Irländer <[email protected]>
111    
112            Issue870
113    
114            * formed/formed/plugins/modify/rules.py (descriptions): Do not collect
115            all headers to the referenced fields. Only list labels of the error
116            fields, which should be distinct enough.
117    
118            Issue851
119    
120            * formed/formed/model/data.py
121              formed/formed/plugins/export/new_sql.py
122              formed/formed/plugins/web/view_renderer.py
123              formed/formed/io/document.py
124              formed/formed/config.py: Added Float-Field to Formed
125    
126    2010-06-11  Bernhard Herzog  <[email protected]>
127    
128            * formed/formed/plugins/export/rg_sql.py
129            (CREATE_DELETE_MASTER_TMPL): In create_master_tbl, call
130            create_master_ds to create the master tbl entry.  This way we can
131            add SQL code that's specific to an MPuls instance to
132            create_master_ds and still have create_master_tbl use that new
133            code.  This is useful for e.g. the JMD-Struktur part.
134    
135    2010-06-02      Roland Geider <[email protected]>
136    
137            * formed/formed/plugins/modify/rules.py: make the names of generated
138              date-sequence-rules unique
139    
140    2010-06-02      Roland Geider <[email protected]>
141    
142            * formed/plugins/export/xls.py: updated regular expression
143    
144    2010-05-17      Frank Koormann <[email protected]>
145    
146            * formed/formed/plugins/export/latex.py: Improved section labeling.
147    
148            * formed/formed/plugins/export/xls.py:
149              Export references (ie where are the lists used).
150    
151    2010-04-30  Torsten Irländer <[email protected]>
152    
153            * formed/formed/plugins/modify/rules.py (VariableType.substitute): Do
154            not generate "%"-rules for required fields in repeat-groups.
155    
156    2010-04-28      Roland Geider <[email protected]>
157    
158            * formed/plugins/export/xls.py: Radiogroups are exported
159            * formed/plugins/export/xsd.py: WASKA formedtree.xml validates XSD
160              JMD formedtree.xml validates XSD
161    
162    2010-04-08  Torsten Irländer <[email protected]>
163    
164            * formed/formed/plugins/modify/rules.py
165            (GenerateRequiredRules.generateDateSequenceRules): Add error mark to
166            rules. Generete each rule twice to be able to render errors at both
167            datefields.
168    
169    2010-04-07  Torsten Irländer <[email protected]>
170    
171            * formed/formed/plugins/export/rg_sql.py: Added "Revision"-Tag.
172    
173    2010-04-06  Torsten Irländer <[email protected]>
174    
175            * formed/formed/io/document.py (_toXML): Added comment with
176            "$Revision"-tag. This tag will/can then be substituted by the VCS.
177            * formed/formed/plugins/export/new_sql.py
178            (ExportAsSQLFilter.doExport): Added comment with
179            "$Revision"-tag. This tag will/can then be substituted by the VCS.
180            * formed/formed/model/exprtree.py: Added years operator.
181    
182    2010-03-30      Roland Geider <[email protected]>
183    
184            * formed/formed/plugins/export/latex.py: Added filter
185    
186    2010-03-25      Roland Geider <[email protected]>
187    
188            * formed/formed/plugins/export/xsd.py: Generate valid XML
189    
190    2010-02-11      Frank Koormann <[email protected]>
191    
192            * formed/formed/plugins/export/xls.py: Allow groups in choices.
193    
194    2009-12-02      Torsten Irländer <[email protected]>
195    
196            * formed/formed/plugins/export/typemap.py: do not ignore conditional
197              nodes on traversal.
198    
199    2009-11-17      Sascha L. Teichmann <[email protected]>
200    
201            * formed/formed/model/exprtree.py: Recognize '%' vars
202              in compilation. Does not eval it!
203    
204            * formed/formed/plugins/modify/rules.py: Generate '%' vars
205              for variables in repeat groups.
206    
207    2009-11-13      Sascha L. Teichmann <[email protected]>
208    
209            * formed/formed/plugins/export/typemap.py: Fixed to work
210            with new repeat group nodes.
211    
212    2009-10-28      Sascha L. Teichmann <[email protected]>
213    
214            * formed/formed/plugins/export/xsd.py,
215            formed/formed/plugins/export/sql.py,
216            formed/formed/plugins/export/new_sql.py: Allow groups in choices.
217    
218    2009-10-07      Frank Koormann <[email protected]>
219    
220            * formed/formed/plugins/export/latex.py:
221            Adjusted textprocessing to escape tex-active characters.
222    
223    2009-10-07      Sascha L. Teichmann <[email protected]>
224    
225            * formed/formed/plugins/export/html.py, formed/formed/plugins/export/latex.py,
226            formed/formed/plugins/export/html2.py: Adjusted to cope with
227            "semi-complete" implementation of logbook tree structure.
228    
229    2009-06-18      Torsten Irländer <[email protected]>
230    
231            * formed/formed/plugins/export/new_sql.py,
232              formed/formed/plugins/export/rg_sql.py: Fixed some sql errors, and
233              added permissions.
234    
235    2009-06-18      Torsten Irländer <[email protected]>
236    
237            * formed/formed/plugins/export/new_sql.py: Commented out generation of
238            page_views, as they do not work with rgroups.
239    
240    2009-06-17      Torsten Irländer <[email protected]>
241    
242            * formed/formed/plugins/export/new_sql.py: Fixed anonymize function
243            and rolenames.
244    
245    2009-06-17      Sascha L. Teichmann <[email protected]>
246    
247            * formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names.
248    
249    2009-05-26      Sascha L. Teichmann <[email protected]>
250    
251            * formed/formed/plugins/names/filter.py: small optimization.
252    
253    2009-05-26      Sascha L. Teichmann <[email protected]>
254    
255            * formed/formed/plugins/names/filter.py: Repaired unique filter for
256              nodecomponent names.
257    
258    2009-05-06      Sascha L. Teichmann <[email protected]>
259    
260            * formed/formed/plugins/export/rg_sql.py: Only create depending
261              repeat groups if no uuid is given. If a uuid is given then
262              the creation is triggered by an xml import.
263    
264    2009-04-28      Sascha L. Teichmann <[email protected]>
265    
266            * formed/formed/plugins/export/new_sql.py: New SQL schema generator to
267              replace the old one. The new one faciliates the new RepeatNode instead
268              of the Group.isRepeat() method to tell if something is to be repeated.
269    
270            * formed/formed/config.py: Use new SQL schema generator plug-in by default.
271              The old one is deactivated.
272    
273            * formed/formed/plugins/export/rg_sql.py: Fix 'rg_' naming of repeat groups.
274    
275    2009-04-28      Sascha L. Teichmann <[email protected]>
276    
277            * formed/formed/plugins/export/rg_sql.py: Added delete functions.
278              TODO: Adjust execution rights.
279    
280    2009-04-27      Sascha L. Teichmann <[email protected]>
281    
282            * formed/formed/plugins/export/rg_sql.py: Fixed $$$$ -> $$ template problems.
283              Add functions to create dataset.
284    
285    2009-04-24      Sascha L. Teichmann <[email protected]>
286    
287            * formed/formed/plugins/export/rg_sql.py: new plug-in to generate
288              tree structure functions in database.
289    
290            * formed/formed/config.py: load plug-in.
291    
292    2009-04-16      Sascha L. Teichmann <[email protected]>
293    
294            * formed/formed/model/data.py: Added 'digest' attribute to
295              RepeatNode. Removed needless methods
296    
297    2009-04-16      Sascha L. Teichmann <[email protected]>
298    
299            * formed/formed/model/exprtree.py: make 'equal' and 'not equal'
300              more readable with '=' and '<>'.
301    
302    2009-04-02      Sascha L. Teichmann <[email protected]>
303    
304            * formed/formed/plugins/export/sql.py: call anonymization
305              of uuid on anonymization of case.
306    
307    2009-03-31      Sascha L. Teichmann <[email protected]>
308    
309            * formed/formed/plugins/export/sql.py: Set uuid_id to NULL in
310              case_anonymize().
311    
312    2009-03-31      Sascha L. Teichmann <[email protected]>
313    
314            * formed/formed/model/exprtree.py: Add some code to pretty print
315              the trees infix.
316    
317            * formed/formed/plugins/export/rules.py: New. Exporter for human
318              readable rules.
319    
320            * formed/formed/plugins/export/html.py: Fixed HTML generation.
321    
322            * formed/formed/config.py: Added new new Rule export plug-in.
323    
324    2009-03-31      Sascha L. Teichmann <[email protected]>
325    
326            * formed/formed/model/exprtree.py: Fixes from server. Raise
327              exceptions if there is less or more than one element on stack
328              after compilation of expression.
329    
330    2009-03-20      Sascha L. Teichmann <[email protected]>
331    
332            * formed/formed/model/data.py: Removed debug output
333    
334            * formed/formed/plugins/modify/rules.py: Fixed error message.
335              Generate past and future rules.
336    
337    2009-03-16      Sascha L. Teichmann <[email protected]>
338    
339            * formed/formed/model/exprtree.py: Forget to call today with context.
340    
341    2009-03-16      Sascha L. Teichmann <[email protected]>
342    
343            * formed/formed/io/document.py: Fixed syntax typo.
344    
345    2009-03-16      Sascha L. Teichmann <[email protected]>
346    
347            * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
348    
349    2009-03-16      Sascha L. Teichmann <[email protected]>
350    
351            * formed/formed/model/data.py: Added ConditionalNode
352    
353            * formed/formed/io/document.py: Make ConditionalNode loadable.
354    
355    2009-03-13      Sascha L. Teichmann <[email protected]>
356    
357            * formed/formed/plugins/modify/rules.py: Make the error descriptions
358              in date sequence rules more precise.
359    
360    2009-03-13      Sascha L. Teichmann <[email protected]>
361    
362            * formed/formed/plugins/modify/rules.py: generate date sequence rules.
363    
364    2009-03-13      Sascha L. Teichmann <[email protected]>
365    
366            * formed/formed/model/exprtree.py: New tree based expression engine.
367    
368            * formed/formed/model/__init__.py, formed/formed/model/data.py:
369              Adjusted imports.
370    
371    2009-03-12      Torsten Irländer <[email protected]>
372    2009-06-17      Sascha L. Teichmann <[email protected]>
373    
374            * formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names.
375    
376    2009-05-26      Sascha L. Teichmann <[email protected]>
377    
378            * formed/formed/plugins/names/filter.py: small optimization.
379    
380    2009-05-26      Sascha L. Teichmann <[email protected]>
381    
382            * formed/formed/plugins/names/filter.py: Repaired unique filter for
383              nodecomponent names.
384    
385    2009-05-06      Sascha L. Teichmann <[email protected]>
386    
387            * formed/formed/plugins/export/rg_sql.py: Only create depending
388              repeat groups if no uuid is given. If a uuid is given then
389              the creation is triggered by an xml import.
390    
391    2009-04-28      Sascha L. Teichmann <[email protected]>
392    
393            * formed/formed/plugins/export/new_sql.py: New SQL schema generator to
394              replace the old one. The new one faciliates the new RepeatNode instead
395              of the Group.isRepeat() method to tell if something is to be repeated.
396    
397            * formed/formed/config.py: Use new SQL schema generator plug-in by default.
398              The old one is deactivated.
399    
400            * formed/formed/plugins/export/rg_sql.py: Fix 'rg_' naming of repeat groups.
401    
402    2009-04-28      Sascha L. Teichmann <[email protected]>
403    
404            * formed/formed/plugins/export/rg_sql.py: Added delete functions.
405              TODO: Adjust execution rights.
406    
407    2009-04-27      Sascha L. Teichmann <[email protected]>
408    
409            * formed/formed/plugins/export/rg_sql.py: Fixed $$$$ -> $$ template problems.
410              Add functions to create dataset.
411    
412    2009-04-24      Sascha L. Teichmann <[email protected]>
413    
414            * formed/formed/plugins/export/rg_sql.py: new plug-in to generate
415              tree structure functions in database.
416    
417            * formed/formed/config.py: load plug-in.
418    
419    2009-04-16      Sascha L. Teichmann <[email protected]>
420    
421            * formed/formed/model/data.py: Added 'digest' attribute to
422              RepeatNode. Removed needless methods
423    
424    2009-04-16      Sascha L. Teichmann <[email protected]>
425    
426            * formed/formed/model/exprtree.py: make 'equal' and 'not equal'
427              more readable with '=' and '<>'.
428    
429    2009-04-02      Sascha L. Teichmann <[email protected]>
430    
431            * formed/formed/plugins/export/sql.py: call anonymization
432              of uuid on anonymization of case.
433    
434    2009-03-31      Sascha L. Teichmann <[email protected]>
435    
436            * formed/formed/plugins/export/sql.py: Set uuid_id to NULL in
437              case_anonymize().
438    
439    2009-03-31      Sascha L. Teichmann <[email protected]>
440    
441            * formed/formed/model/exprtree.py: Add some code to pretty print
442              the trees infix.
443    
444            * formed/formed/plugins/export/rules.py: New. Exporter for human
445              readable rules.
446    
447            * formed/formed/plugins/export/html.py: Fixed HTML generation.
448    
449            * formed/formed/config.py: Added new new Rule export plug-in.
450    
451    2009-03-31      Sascha L. Teichmann <[email protected]>
452    
453            * formed/formed/model/exprtree.py: Fixes from server. Raise
454              exceptions if there is less or more than one element on stack
455              after compilation of expression.
456    
457    2009-03-20      Sascha L. Teichmann <[email protected]>
458    
459            * formed/formed/model/data.py: Removed debug output
460    
461            * formed/formed/plugins/modify/rules.py: Fixed error message.
462              Generate past and future rules.
463    
464    2009-03-16      Sascha L. Teichmann <[email protected]>
465    
466            * formed/formed/model/exprtree.py: Forget to call today with context.
467    
468    2009-03-16      Sascha L. Teichmann <[email protected]>
469    
470            * formed/formed/io/document.py: Fixed syntax typo.
471    
472    2009-03-16      Sascha L. Teichmann <[email protected]>
473    
474            * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
475    
476    2009-03-16      Sascha L. Teichmann <[email protected]>
477    
478            * formed/formed/model/data.py: Added ConditionalNode
479    
480            * formed/formed/io/document.py: Make ConditionalNode loadable.
481    
482    2009-03-13      Sascha L. Teichmann <[email protected]>
483    
484            * formed/formed/plugins/modify/rules.py: Make the error descriptions
485              in date sequence rules more precise.
486    
487    2009-03-13      Sascha L. Teichmann <[email protected]>
488    
489            * formed/formed/plugins/modify/rules.py: generate date sequence rules.
490    
491    2009-03-13      Sascha L. Teichmann <[email protected]>
492    
493            * formed/formed/model/exprtree.py: New tree based expression engine.
494    
495            * formed/formed/model/__init__.py, formed/formed/model/data.py:
496              Adjusted imports.
497    
498    2009-03-12      Torsten Irländer <[email protected]>
499    2009-06-17      Sascha L. Teichmann <[email protected]>
500    
501            * formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names.
502    
503    2009-05-26      Sascha L. Teichmann <[email protected]>
504    
505            * formed/formed/plugins/names/filter.py: small optimization.
506    
507    2009-05-26      Sascha L. Teichmann <[email protected]>
508    
509            * formed/formed/plugins/names/filter.py: Repaired unique filter for
510              nodecomponent names.
511    
512    2009-05-06      Sascha L. Teichmann <[email protected]>
513    
514            * formed/formed/plugins/export/rg_sql.py: Only create depending
515              repeat groups if no uuid is given. If a uuid is given then
516              the creation is triggered by an xml import.
517    
518    2009-04-28      Sascha L. Teichmann <[email protected]>
519    
520            * formed/formed/plugins/export/new_sql.py: New SQL schema generator to
521              replace the old one. The new one faciliates the new RepeatNode instead
522              of the Group.isRepeat() method to tell if something is to be repeated.
523    
524            * formed/formed/config.py: Use new SQL schema generator plug-in by default.
525              The old one is deactivated.
526    
527            * formed/formed/plugins/export/rg_sql.py: Fix 'rg_' naming of repeat groups.
528    
529    2009-04-28      Sascha L. Teichmann <[email protected]>
530    
531            * formed/formed/plugins/export/rg_sql.py: Added delete functions.
532              TODO: Adjust execution rights.
533    
534    2009-04-27      Sascha L. Teichmann <[email protected]>
535    
536            * formed/formed/plugins/export/rg_sql.py: Fixed $$$$ -> $$ template problems.
537              Add functions to create dataset.
538    
539    2009-04-24      Sascha L. Teichmann <[email protected]>
540    
541            * formed/formed/plugins/export/rg_sql.py: new plug-in to generate
542              tree structure functions in database.
543    
544            * formed/formed/config.py: load plug-in.
545    
546    2009-04-16      Sascha L. Teichmann <[email protected]>
547    
548            * formed/formed/model/data.py: Added 'digest' attribute to
549              RepeatNode. Removed needless methods
550    
551    2009-04-16      Sascha L. Teichmann <[email protected]>
552    
553            * formed/formed/model/exprtree.py: make 'equal' and 'not equal'
554              more readable with '=' and '<>'.
555    
556    2009-04-02      Sascha L. Teichmann <[email protected]>
557    
558            * formed/formed/plugins/export/sql.py: call anonymization
559              of uuid on anonymization of case.
560    
561    2009-03-31      Sascha L. Teichmann <[email protected]>
562    
563            * formed/formed/plugins/export/sql.py: Set uuid_id to NULL in
564              case_anonymize().
565    
566    2009-03-31      Sascha L. Teichmann <[email protected]>
567    
568            * formed/formed/model/exprtree.py: Add some code to pretty print
569              the trees infix.
570    
571            * formed/formed/plugins/export/rules.py: New. Exporter for human
572              readable rules.
573    
574            * formed/formed/plugins/export/html.py: Fixed HTML generation.
575    
576            * formed/formed/config.py: Added new new Rule export plug-in.
577    
578    2009-03-31      Sascha L. Teichmann <[email protected]>
579    
580            * formed/formed/model/exprtree.py: Fixes from server. Raise
581              exceptions if there is less or more than one element on stack
582              after compilation of expression.
583    
584    2009-03-20      Sascha L. Teichmann <[email protected]>
585    
586            * formed/formed/model/data.py: Removed debug output
587    
588            * formed/formed/plugins/modify/rules.py: Fixed error message.
589              Generate past and future rules.
590    
591    2009-03-16      Sascha L. Teichmann <[email protected]>
592    
593            * formed/formed/model/exprtree.py: Forget to call today with context.
594    
595    2009-03-16      Sascha L. Teichmann <[email protected]>
596    
597            * formed/formed/io/document.py: Fixed syntax typo.
598    
599    2009-03-16      Sascha L. Teichmann <[email protected]>
600    
601            * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
602    
603    2009-03-16      Sascha L. Teichmann <[email protected]>
604    
605            * formed/formed/model/data.py: Added ConditionalNode
606    
607            * formed/formed/io/document.py: Make ConditionalNode loadable.
608    
609    2009-03-13      Sascha L. Teichmann <[email protected]>
610    
611            * formed/formed/plugins/modify/rules.py: Make the error descriptions
612              in date sequence rules more precise.
613    
614    2009-03-13      Sascha L. Teichmann <[email protected]>
615    
616            * formed/formed/plugins/modify/rules.py: generate date sequence rules.
617    
618    2009-03-13      Sascha L. Teichmann <[email protected]>
619    
620            * formed/formed/model/exprtree.py: New tree based expression engine.
621    
622            * formed/formed/model/__init__.py, formed/formed/model/data.py:
623              Adjusted imports.
624    
625    2009-03-12      Torsten Irländer <[email protected]>
626    
627            Introduced new order attribute for date fields
628    
629            * formed/formed/model/data.py: Order fields can be used to define to
630            ordering of datefields withing the document. Needed for automatic
631            generation of consistency rules.
632    
633    2009-02-09      Sascha L. Teichmann <[email protected]>
634    
635            * formed/formed/model/data.py: Allow pages to be 'invisible'.
636    
637    2009-02-09      Sascha L. Teichmann <[email protected]>
638    
639            * formed/formed/plugins/export/sql.py: Fixed problem with
640              description reference tables of radio groups.
641    
642    2009-02-09      Sascha L. Teichmann <[email protected]>
643    
644            * formed/formed/plugins/export/sql.py: replace '-' in names
645              by '_'.
646              
647    2009-02-09      Sascha L. Teichmann <[email protected]>
648    
649            * formed/formed/plugins/export/sql.py: to figure ou which
650              tables are equal the insert statememnts are lower cased
651              and sorted before they are compared. This reduces the number
652              of generated referfence tables.
653    
654    2009-02-09      Sascha L. Teichmann <[email protected]>
655    
656            Repair SQL schema creation for radio groups.
657    
658            * formed/formed/plugins/export/sql.py: radio groups are handled
659              like choices now.
660    
661    2009-02-09      Sascha L. Teichmann <[email protected]>
662    
663            Make it startable again.
664    
665            * formed/formed/plugins/export/xls.py: Import pyExcelerator only
666              when plug-in is called.
667    
668            * formed/formed/model/nodecomponents.py: Event routing was messed up.
669              Rewired root node with document.
670    
671            * formed/formed/plugins/web/help.py: Removed old xml.ext import.
672              XXX: This breaks creating help by now!
673    
674            * formed/formed/io/parser.py: Replace old deprecated base class
675              by new one.
676    
677            * formed/formed/main.py: Do not crash if locale cannot be set.
678    
679            * formed/formed/ui/controls.py: Use document.getCase() instead
680              of document.case to prevent uninitialized dereferences.
681    
682    2009-01-22      Torsten Irländer <[email protected]>
683    
684            Implemented new XML-Format for formed xml files.
685    
686            * formed/formed/model/nodecomponents.py,
687              formed/formed/io/document.py,
688              formed/formed/main.py,
689              formed/formed/ui/controls.py: Introduced new "case" and "logbook"
690              node. Under case is the definition of the formular. logbook will
691              hold the defintion of logboog entrys. For now only the part under
692              "case" can be modified.  
693    
694    2009-01-21      Torsten Irländer <[email protected]>
695    
696            Changed way how XSD-Scheme is generated
697    
698            * formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support
699              logbookentrys. The scheme definiton is now hardcoded in the
700              exporter as it will rarely change. It logbookpart will not be
701              generated from the formedtree anymore.
702    
703    2009-01-20      Torsten Irländer <[email protected]>
704    
705            Support Logbook entrys in xsd schema export
706    
707            * formed/formed/model/data.py: Repeatnode are now handeld as
708              repeatgroups in xsd-export
709            * formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support
710              logbookentrys. The scheme will now validate against an xmlfile from
711              the offlineclient.
712    
713    2009-01-09      Torsten Irländer <[email protected]>
714    
715            Added new repeat node
716    
717            * formed/formed/model/data.py,
718              formed/formed/io/document.py: Added repeatnode to the formedtree.
719              TODO: Remove repeatgroup handling from the groupnode.
720    
721    2009-01-08      Torsten Irländer <[email protected]>
722    
723            Add isset operator to autogenerated rules.
724    
725            * formed/formed/plugins/modify/rules.py: Add issed operator to standard
726              autogenerated rules.
727    
728    2008-12-17      Frank Koormann <[email protected]>
729    
730            * formed/formed/plugins/export/latex.py: Export form as set of
731            latex tables to be included into a master document. The export
732            generates section marks to structure the form and placeholders for
733            help texts to be merged in by a post processing step.
734    
735    2008-12-04      Sascha L. Teichmann <[email protected]>
736    
737            * formed/formed/model/expr.py: Added 'today' which pushes the current date
738              on the stack.
739    
740    2008-12-03      Sascha L. Teichmann <[email protected]>
741    
742            * formed/formed/plugins/web/controllers.py: compute changeset more correctly in
743              storage of fields.
744    
745            * formed/formed/plugins/export/xsd.py: Added unknown int -999999 to integer
746              fields as an accepted value. Generate schema for radio groups too.
747    
748    2008-12-01      Torsten Irländer <[email protected]>
749    
750            Added autmatic generation of required rules
751    
752            * formed/formed/model/data.py,
753              formed/formed/model/expr.py,
754              formed/formed/plugins/modify/rules.py: Default rules for required
755              fields can now be generated.
756    
757    2008-11-28      Sascha L. Teichmann <[email protected]>
758    
759            * formed/formed/model/data.py, formed/formed/model/nodecomponents.py:
760              Ported WidgetCollector from Offline client.
761    
762            * formed/formed/plugins/modify/__init__.py, formed/formed/plugins/modify,
763              formed/formed/plugins/modify/rules.py: Stub for required rules generator.
764    
765            * formed/formed/config.py: Bind new filter to FormEd
766    
767    2008-11-27      Torsten Irländer <[email protected]>
768    
769            * formed/formed/model/data.py: Added new attribute mark for rules
770    
771    2008-11-10      Torsten Irländer <[email protected]>
772    
773            Implemented radio-matrix elements. radio elelement having the same
774            options can now be rendered in table form.
775    
776            * formed/formed/model/data.py,
777              formed/formed/io/document.py: Added new radio-matrix element to the
778              model and gui
779            * formed/formed/plugins/web/view_renderer.py: Write html-renderer for
780              the radio-matrix element.
781    
782    2008-11.03      Torsten Irländer <[email protected]>
783    
784            * formed/formed/model/data.py: Fixed import error
785    
786    2008-10-29      Sascha L. Teichmann <[email protected]>
787    
788            Relative paths in external choices are now possible. Relative paths are
789            relative to path of the master document.
790    
791            * formed/model/data.py: external choice are now storing the path to the
792              master document.
793    
794            * formed/formed/io/document.py: Pass context to SAX builder.
795    
796            * formed/formed/io/factories.py: For new created nodes look if there
797              is a method 'setLoadContext' and call it.
798    
799    2008-09-04      Sascha L. Teichmann <[email protected]>
800    
801            * doc/beschreibung.txt: New. Initial description of FormEd (german).
802    
803    2008-08-22      Sascha L. Teichmann <[email protected]>
804    
805            * formed/formed/model/nodecomponents.py: Added attribute 'flags'.
806    
807    2008-08-21      Sascha L. Teichmann <[email protected]>
808    
809            * formed/formed/io/document.py: Indent tree while saving
810            * formed/formed/main.py: removed needless print
811    
812    2008-08-15      Sascha L. Teichmann <[email protected]>
813    
814            * LICENSE: New GPLv3
815            * */*.py, *.sh: Added reference to LICENSE
816    
817    2008-08-15      Sascha L. Teichmann <[email protected]>
818    
819            * tools: removed because there a no tools any more.
820    
821    2008-08-15      Sascha L. Teichmann <[email protected]>
822    
823            * tools/formed: moved one level up because its the only
824              part of this project now.
825    
826    2008-08-15      Sascha L. Teichmann <[email protected]>
827    
828            * tools/anonym/*: Removed as it belongs to mpuls WASKA
829    
830  2008-08-15      Sascha L. Teichmann <[email protected]>  2008-08-15      Sascha L. Teichmann <[email protected]>
831    
832          * pdf2xfa/*: removed. It belongs to mpuls          * pdf2xfa/*: removed. It belongs to mpuls

Legend:
Removed from v.284  
changed lines
  Added in v.398

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26