/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

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

Legend:
Removed from v.294  
changed lines
  Added in v.412

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26