/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 313 by teichmann, Fri Mar 13 09:50:05 2009 UTC revision 408 by torsten, Tue Oct 5 16:30:38 2010 UTC
# Line 1  Line 1 
1  2009-03-13      Torsten Irländer <[email protected]>  2010-10-05  Torsten Irländer <[email protected]>
2    
3            * formed/formed/model/data.py: Fixed error when setting tag attribute.
4            * formed/formed/plugins/export/rules_sh.py: Added generating exporting
5              tagging-xml
6            * formed/formed/plugins/modify/rules.py: Do not generate automatic
7              tagids for rules.
8    
9    2010-10-04  Torsten Irländer <[email protected]>
10    
11            * formed/formed/model/data.py (RuleLeaf.__init__): Added new attribute
12            "tag" for rule-leafs
13            * formed/formed/config.py: Added export rules as XML to Menu
14            * formed/formed/plugins/modify/rules.py
15            (GenerateRequiredRules.generateDateSequenceRules): Generate automatic
16            tag ids for date-sequence rules
17    
18    2010-09-30  Torsten Irländer <[email protected]>
19    
20            * formed/formed/plugins/export/rules_sh.py
21            (ExportRulesAsSH.doExport): Filter out duplicted rules.
22    
23    2010-09-20  Frank Koormann   <[email protected]>
24    
25            * formed/formed/plugins/export/latex.py (RecursiveExporter):
26            Add "required"-field information to output and include
27            choice list contents.
28    
29    2010-09-16  Bernhard Herzog  <[email protected]>
30    
31            Avoid database deadlocks that can happen when database clients try
32            to work with the same case using two separate database
33            connections.  See mpuls/issue1145 for details.
34    
35            * formed/formed/plugins/export/rg_sql.py (SQL_TEMPLATE): Split the
36            computation of the new json structure description into the new
37            database function compute_case_structure
38            (TRIGGER_TMPL): Change the trigger functions to immediately update
39            the cached json structure description instead of just setting the
40            modified flag.  This avoids the lazy recomputation that makes what
41            seems like a read-only access (calling get_case_structure) into a
42            writing access (updates of the cache).  The writes lock the row in
43            the case_structure table which prevent other connections from
44            accessing the same case.  As part of this, the delete triggers are
45            now AFTER triggers because the repeat groups instance must have
46            been removed when the structure is recomputed.
47            (SUBSELECT_TMPL): Since the delete trigger is now an after
48            trigger, we need to change the way the master id is computed.  We
49            cannot join with the repeatgroup table in question because the row
50            has already been deleted.  However, we can use the master_id
51            column of the OLD row to select the row of the parent table.
52            (create_triggers): Avoid the inner joins with the current repeat
53            group for the above mentioned reasons.  In the very common case of
54            repeat groups which are direct children of the master_tbl, we can
55            compare the master_tbl.id directly with the row's master_id.
56    
57    2010-09-14 Roland Geider <[email protected]>
58    
59            * formed/formed/plugins/export/xsd.py: issue1131: update XSD for new
60              formedtree structure
61    
62    2010-09-01 Roland Geider <[email protected]>
63    
64            * formed/formed/plugins/modify/rules.py: issue1050: mandatory fields
65              appearing double.
66              The problem was that the way the formEditor handled fields with
67              manually created rules changed. Instead of ignoring fields (very
68              early behaviour) or always generating them (early behaviour), now the
69              formED will only ignore fields with rules which name starts with
70              'required-rule-manual'. This is helpful when the rules for mandatory
71              fields are more complex (e.g. mother's name is only required if
72              mother is known).
73    
74    2010-08-10  Torsten Irländer <[email protected]>
75    
76            * contrib/diff_formed.py: New helperscript to diff to given
77              formedtrees
78    
79    2010-08-09      Roland Geider <[email protected]>
80    
81            * formed/model/exprtree.py: fixed typo
82    
83    2010-08-04  Bernhard Herzog  <[email protected]>
84    
85            * formed/po/de_DE.po: Update translations
86    
87    2010-08-04  Bernhard Herzog  <[email protected]>
88    
89            * formed/po/formed.pot: Regenerated.
90    
91            * formed/po/de_DE.po: Update.
92    
93    2010-08-04  Bernhard Herzog  <[email protected]>
94    
95            * formed/po/Makefile: Use correct filename of the pot-file in the
96            usage message
97    
98    2010-08-04  Bernhard Herzog  <[email protected]>
99    
100            * formed/po/Makefile (LIST_POTFILES): Sort the file names to make
101            the order of entries in the .pot-file more predictable.
102    
103    2010-08-04  Bernhard Herzog  <[email protected]>
104    
105            * formed/formed/model/nodecomponents.py (RootNode.__init__)
106            (RootNode.getVersion, RootNode.setVersion): Add attribute
107            "version" and accessor methods.
108    
109            * formed/formed/main.py (MainFrame.OnSetDocumentVersion): New. Let
110            the user set the document version.
111            (MainFrame._createMenuBar): Add menu item for OnSetDocumentVersion
112    
113    2010-08-02  Bernhard Herzog  <[email protected]>
114    
115            * formed/formed.py, formed/formed/io/document.py,
116            formed/formed/io/factories.py, formed/formed/io/parser.py,
117            formed/formed/model/data.py, formed/formed/model/event.py,
118            formed/formed/model/expr.py, formed/formed/model/exprtree.py,
119            formed/formed/model/memory.py, formed/formed/model/misc.py,
120            formed/formed/model/nodecomponents.py,
121            formed/formed/model/persistent.py: Fix coding declaration to be
122            acceptable to both python and Emacs.
123    
124    2010-07-29  Torsten Irländer <[email protected]>
125    
126            * formed/formed/model/data.py: Added "invisible" attribute to
127            BoolLeafs. This can be used to hide options in choicelists. so the
128            user can not select the value in the user interface. But the db will
129            have this option so is ist still present in the db an can be used
130            * formed/formed/model/exprtree.py: Added "days" function.
131    
132    2010-07-26      Roland Geider <[email protected]>
133    
134            * formed/formed/model/nodecomponents.py,
135              formed/formed/plugins/modify/rules.py: generated date rules take
136              into consideration repeat groups
137    
138    2010-07-21  Torsten Irländer <[email protected]>
139    
140            Issue870
141    
142            * formed/formed/plugins/modify/rules.py (descriptions): Do not collect
143            all headers to the referenced fields. Only list labels of the error
144            fields, which should be distinct enough.
145    
146            Issue851
147    
148            * formed/formed/model/data.py
149              formed/formed/plugins/export/new_sql.py
150              formed/formed/plugins/web/view_renderer.py
151              formed/formed/io/document.py
152              formed/formed/config.py: Added Float-Field to Formed
153    
154    2010-06-11  Bernhard Herzog  <[email protected]>
155    
156            * formed/formed/plugins/export/rg_sql.py
157            (CREATE_DELETE_MASTER_TMPL): In create_master_tbl, call
158            create_master_ds to create the master tbl entry.  This way we can
159            add SQL code that's specific to an MPuls instance to
160            create_master_ds and still have create_master_tbl use that new
161            code.  This is useful for e.g. the JMD-Struktur part.
162    
163    2010-06-02      Roland Geider <[email protected]>
164    
165            * formed/formed/plugins/modify/rules.py: make the names of generated
166              date-sequence-rules unique
167    
168    2010-06-02      Roland Geider <[email protected]>
169    
170            * formed/plugins/export/xls.py: updated regular expression
171    
172    2010-05-17      Frank Koormann <[email protected]>
173    
174            * formed/formed/plugins/export/latex.py: Improved section labeling.
175    
176            * formed/formed/plugins/export/xls.py:
177              Export references (ie where are the lists used).
178    
179    2010-04-30  Torsten Irländer <[email protected]>
180    
181            * formed/formed/plugins/modify/rules.py (VariableType.substitute): Do
182            not generate "%"-rules for required fields in repeat-groups.
183    
184    2010-04-28      Roland Geider <[email protected]>
185    
186            * formed/plugins/export/xls.py: Radiogroups are exported
187            * formed/plugins/export/xsd.py: WASKA formedtree.xml validates XSD
188              JMD formedtree.xml validates XSD
189    
190    2010-04-08  Torsten Irländer <[email protected]>
191    
192            * formed/formed/plugins/modify/rules.py
193            (GenerateRequiredRules.generateDateSequenceRules): Add error mark to
194            rules. Generete each rule twice to be able to render errors at both
195            datefields.
196    
197    2010-04-07  Torsten Irländer <[email protected]>
198    
199            * formed/formed/plugins/export/rg_sql.py: Added "Revision"-Tag.
200    
201    2010-04-06  Torsten Irländer <[email protected]>
202    
203            * formed/formed/io/document.py (_toXML): Added comment with
204            "$Revision"-tag. This tag will/can then be substituted by the VCS.
205            * formed/formed/plugins/export/new_sql.py
206            (ExportAsSQLFilter.doExport): Added comment with
207            "$Revision"-tag. This tag will/can then be substituted by the VCS.
208            * formed/formed/model/exprtree.py: Added years operator.
209    
210    2010-03-30      Roland Geider <[email protected]>
211    
212            * formed/formed/plugins/export/latex.py: Added filter
213    
214    2010-03-25      Roland Geider <[email protected]>
215    
216            * formed/formed/plugins/export/xsd.py: Generate valid XML
217    
218    2010-02-11      Frank Koormann <[email protected]>
219    
220            * formed/formed/plugins/export/xls.py: Allow groups in choices.
221    
222    2009-12-02      Torsten Irländer <[email protected]>
223    
224            * formed/formed/plugins/export/typemap.py: do not ignore conditional
225              nodes on traversal.
226    
227    2009-11-17      Sascha L. Teichmann <[email protected]>
228    
229            * formed/formed/model/exprtree.py: Recognize '%' vars
230              in compilation. Does not eval it!
231    
232            * formed/formed/plugins/modify/rules.py: Generate '%' vars
233              for variables in repeat groups.
234    
235    2009-11-13      Sascha L. Teichmann <[email protected]>
236    
237            * formed/formed/plugins/export/typemap.py: Fixed to work
238            with new repeat group nodes.
239    
240    2009-10-28      Sascha L. Teichmann <[email protected]>
241    
242            * formed/formed/plugins/export/xsd.py,
243            formed/formed/plugins/export/sql.py,
244            formed/formed/plugins/export/new_sql.py: Allow groups in choices.
245    
246    2009-10-07      Frank Koormann <[email protected]>
247    
248            * formed/formed/plugins/export/latex.py:
249            Adjusted textprocessing to escape tex-active characters.
250    
251    2009-10-07      Sascha L. Teichmann <[email protected]>
252    
253            * formed/formed/plugins/export/html.py, formed/formed/plugins/export/latex.py,
254            formed/formed/plugins/export/html2.py: Adjusted to cope with
255            "semi-complete" implementation of logbook tree structure.
256    
257    2009-06-18      Torsten Irländer <[email protected]>
258    
259            * formed/formed/plugins/export/new_sql.py,
260              formed/formed/plugins/export/rg_sql.py: Fixed some sql errors, and
261              added permissions.
262    
263    2009-06-18      Torsten Irländer <[email protected]>
264    
265            * formed/formed/plugins/export/new_sql.py: Commented out generation of
266            page_views, as they do not work with rgroups.
267    
268    2009-06-17      Torsten Irländer <[email protected]>
269    
270            * formed/formed/plugins/export/new_sql.py: Fixed anonymize function
271            and rolenames.
272    
273    2009-06-17      Sascha L. Teichmann <[email protected]>
274    
275            * formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names.
276    
277    2009-05-26      Sascha L. Teichmann <[email protected]>
278    
279            * formed/formed/plugins/names/filter.py: small optimization.
280    
281    2009-05-26      Sascha L. Teichmann <[email protected]>
282    
283            * formed/formed/plugins/names/filter.py: Repaired unique filter for
284              nodecomponent names.
285    
286    2009-05-06      Sascha L. Teichmann <[email protected]>
287    
288            * formed/formed/plugins/export/rg_sql.py: Only create depending
289              repeat groups if no uuid is given. If a uuid is given then
290              the creation is triggered by an xml import.
291    
292    2009-04-28      Sascha L. Teichmann <[email protected]>
293    
294            * formed/formed/plugins/export/new_sql.py: New SQL schema generator to
295              replace the old one. The new one faciliates the new RepeatNode instead
296              of the Group.isRepeat() method to tell if something is to be repeated.
297    
298            * formed/formed/config.py: Use new SQL schema generator plug-in by default.
299              The old one is deactivated.
300    
301            * formed/formed/plugins/export/rg_sql.py: Fix 'rg_' naming of repeat groups.
302    
303    2009-04-28      Sascha L. Teichmann <[email protected]>
304    
305            * formed/formed/plugins/export/rg_sql.py: Added delete functions.
306              TODO: Adjust execution rights.
307    
308    2009-04-27      Sascha L. Teichmann <[email protected]>
309    
310            * formed/formed/plugins/export/rg_sql.py: Fixed $$$$ -> $$ template problems.
311              Add functions to create dataset.
312    
313    2009-04-24      Sascha L. Teichmann <[email protected]>
314    
315            * formed/formed/plugins/export/rg_sql.py: new plug-in to generate
316              tree structure functions in database.
317    
318            * formed/formed/config.py: load plug-in.
319    
320    2009-04-16      Sascha L. Teichmann <[email protected]>
321    
322            * formed/formed/model/data.py: Added 'digest' attribute to
323              RepeatNode. Removed needless methods
324    
325    2009-04-16      Sascha L. Teichmann <[email protected]>
326    
327            * formed/formed/model/exprtree.py: make 'equal' and 'not equal'
328              more readable with '=' and '<>'.
329    
330    2009-04-02      Sascha L. Teichmann <[email protected]>
331    
332            * formed/formed/plugins/export/sql.py: call anonymization
333              of uuid on anonymization of case.
334    
335    2009-03-31      Sascha L. Teichmann <[email protected]>
336    
337            * formed/formed/plugins/export/sql.py: Set uuid_id to NULL in
338              case_anonymize().
339    
340    2009-03-31      Sascha L. Teichmann <[email protected]>
341    
342            * formed/formed/model/exprtree.py: Add some code to pretty print
343              the trees infix.
344    
345            * formed/formed/plugins/export/rules.py: New. Exporter for human
346              readable rules.
347    
348            * formed/formed/plugins/export/html.py: Fixed HTML generation.
349    
350            * formed/formed/config.py: Added new new Rule export plug-in.
351    
352    2009-03-31      Sascha L. Teichmann <[email protected]>
353    
354            * formed/formed/model/exprtree.py: Fixes from server. Raise
355              exceptions if there is less or more than one element on stack
356              after compilation of expression.
357    
358    2009-03-20      Sascha L. Teichmann <[email protected]>
359    
360            * formed/formed/model/data.py: Removed debug output
361    
362            * formed/formed/plugins/modify/rules.py: Fixed error message.
363              Generate past and future rules.
364    
365    2009-03-16      Sascha L. Teichmann <[email protected]>
366    
367            * formed/formed/model/exprtree.py: Forget to call today with context.
368    
369    2009-03-16      Sascha L. Teichmann <[email protected]>
370    
371            * formed/formed/io/document.py: Fixed syntax typo.
372    
373    2009-03-16      Sascha L. Teichmann <[email protected]>
374    
375            * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
376    
377    2009-03-16      Sascha L. Teichmann <[email protected]>
378    
379            * formed/formed/model/data.py: Added ConditionalNode
380    
381            * formed/formed/io/document.py: Make ConditionalNode loadable.
382    
383    2009-03-13      Sascha L. Teichmann <[email protected]>
384    
385            * formed/formed/plugins/modify/rules.py: Make the error descriptions
386              in date sequence rules more precise.
387    
388    2009-03-13      Sascha L. Teichmann <[email protected]>
389    
390            * formed/formed/plugins/modify/rules.py: generate date sequence rules.
391    
392    2009-03-13      Sascha L. Teichmann <[email protected]>
393    
394            * formed/formed/model/exprtree.py: New tree based expression engine.
395    
396            * formed/formed/model/__init__.py, formed/formed/model/data.py:
397              Adjusted imports.
398    
399    2009-03-12      Torsten Irländer <[email protected]>
400    2009-06-17      Sascha L. Teichmann <[email protected]>
401    
402            * formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names.
403    
404    2009-05-26      Sascha L. Teichmann <[email protected]>
405    
406            * formed/formed/plugins/names/filter.py: small optimization.
407    
408    2009-05-26      Sascha L. Teichmann <[email protected]>
409    
410            * formed/formed/plugins/names/filter.py: Repaired unique filter for
411              nodecomponent names.
412    
413    2009-05-06      Sascha L. Teichmann <[email protected]>
414    
415            * formed/formed/plugins/export/rg_sql.py: Only create depending
416              repeat groups if no uuid is given. If a uuid is given then
417              the creation is triggered by an xml import.
418    
419    2009-04-28      Sascha L. Teichmann <[email protected]>
420    
421            * formed/formed/plugins/export/new_sql.py: New SQL schema generator to
422              replace the old one. The new one faciliates the new RepeatNode instead
423              of the Group.isRepeat() method to tell if something is to be repeated.
424    
425            * formed/formed/config.py: Use new SQL schema generator plug-in by default.
426              The old one is deactivated.
427    
428            * formed/formed/plugins/export/rg_sql.py: Fix 'rg_' naming of repeat groups.
429    
430    2009-04-28      Sascha L. Teichmann <[email protected]>
431    
432            * formed/formed/plugins/export/rg_sql.py: Added delete functions.
433              TODO: Adjust execution rights.
434    
435    2009-04-27      Sascha L. Teichmann <[email protected]>
436    
437            * formed/formed/plugins/export/rg_sql.py: Fixed $$$$ -> $$ template problems.
438              Add functions to create dataset.
439    
440    2009-04-24      Sascha L. Teichmann <[email protected]>
441    
442            * formed/formed/plugins/export/rg_sql.py: new plug-in to generate
443              tree structure functions in database.
444    
445            * formed/formed/config.py: load plug-in.
446    
447    2009-04-16      Sascha L. Teichmann <[email protected]>
448    
449            * formed/formed/model/data.py: Added 'digest' attribute to
450              RepeatNode. Removed needless methods
451    
452    2009-04-16      Sascha L. Teichmann <[email protected]>
453    
454            * formed/formed/model/exprtree.py: make 'equal' and 'not equal'
455              more readable with '=' and '<>'.
456    
457    2009-04-02      Sascha L. Teichmann <[email protected]>
458    
459            * formed/formed/plugins/export/sql.py: call anonymization
460              of uuid on anonymization of case.
461    
462    2009-03-31      Sascha L. Teichmann <[email protected]>
463    
464            * formed/formed/plugins/export/sql.py: Set uuid_id to NULL in
465              case_anonymize().
466    
467    2009-03-31      Sascha L. Teichmann <[email protected]>
468    
469            * formed/formed/model/exprtree.py: Add some code to pretty print
470              the trees infix.
471    
472            * formed/formed/plugins/export/rules.py: New. Exporter for human
473              readable rules.
474    
475            * formed/formed/plugins/export/html.py: Fixed HTML generation.
476    
477            * formed/formed/config.py: Added new new Rule export plug-in.
478    
479    2009-03-31      Sascha L. Teichmann <[email protected]>
480    
481            * formed/formed/model/exprtree.py: Fixes from server. Raise
482              exceptions if there is less or more than one element on stack
483              after compilation of expression.
484    
485    2009-03-20      Sascha L. Teichmann <[email protected]>
486    
487            * formed/formed/model/data.py: Removed debug output
488    
489            * formed/formed/plugins/modify/rules.py: Fixed error message.
490              Generate past and future rules.
491    
492    2009-03-16      Sascha L. Teichmann <[email protected]>
493    
494            * formed/formed/model/exprtree.py: Forget to call today with context.
495    
496    2009-03-16      Sascha L. Teichmann <[email protected]>
497    
498            * formed/formed/io/document.py: Fixed syntax typo.
499    
500    2009-03-16      Sascha L. Teichmann <[email protected]>
501    
502            * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
503    
504    2009-03-16      Sascha L. Teichmann <[email protected]>
505    
506            * formed/formed/model/data.py: Added ConditionalNode
507    
508            * formed/formed/io/document.py: Make ConditionalNode loadable.
509    
510    2009-03-13      Sascha L. Teichmann <[email protected]>
511    
512            * formed/formed/plugins/modify/rules.py: Make the error descriptions
513              in date sequence rules more precise.
514    
515    2009-03-13      Sascha L. Teichmann <[email protected]>
516    
517            * formed/formed/plugins/modify/rules.py: generate date sequence rules.
518    
519    2009-03-13      Sascha L. Teichmann <[email protected]>
520    
521            * formed/formed/model/exprtree.py: New tree based expression engine.
522    
523            * formed/formed/model/__init__.py, formed/formed/model/data.py:
524              Adjusted imports.
525    
526    2009-03-12      Torsten Irländer <[email protected]>
527    2009-06-17      Sascha L. Teichmann <[email protected]>
528    
529            * formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names.
530    
531    2009-05-26      Sascha L. Teichmann <[email protected]>
532    
533            * formed/formed/plugins/names/filter.py: small optimization.
534    
535    2009-05-26      Sascha L. Teichmann <[email protected]>
536    
537            * formed/formed/plugins/names/filter.py: Repaired unique filter for
538              nodecomponent names.
539    
540    2009-05-06      Sascha L. Teichmann <[email protected]>
541    
542            * formed/formed/plugins/export/rg_sql.py: Only create depending
543              repeat groups if no uuid is given. If a uuid is given then
544              the creation is triggered by an xml import.
545    
546    2009-04-28      Sascha L. Teichmann <[email protected]>
547    
548            * formed/formed/plugins/export/new_sql.py: New SQL schema generator to
549              replace the old one. The new one faciliates the new RepeatNode instead
550              of the Group.isRepeat() method to tell if something is to be repeated.
551    
552            * formed/formed/config.py: Use new SQL schema generator plug-in by default.
553              The old one is deactivated.
554    
555            * formed/formed/plugins/export/rg_sql.py: Fix 'rg_' naming of repeat groups.
556    
557    2009-04-28      Sascha L. Teichmann <[email protected]>
558    
559            * formed/formed/plugins/export/rg_sql.py: Added delete functions.
560              TODO: Adjust execution rights.
561    
562    2009-04-27      Sascha L. Teichmann <[email protected]>
563    
564            * formed/formed/plugins/export/rg_sql.py: Fixed $$$$ -> $$ template problems.
565              Add functions to create dataset.
566    
567    2009-04-24      Sascha L. Teichmann <[email protected]>
568    
569            * formed/formed/plugins/export/rg_sql.py: new plug-in to generate
570              tree structure functions in database.
571    
572            * formed/formed/config.py: load plug-in.
573    
574    2009-04-16      Sascha L. Teichmann <[email protected]>
575    
576            * formed/formed/model/data.py: Added 'digest' attribute to
577              RepeatNode. Removed needless methods
578    
579    2009-04-16      Sascha L. Teichmann <[email protected]>
580    
581            * formed/formed/model/exprtree.py: make 'equal' and 'not equal'
582              more readable with '=' and '<>'.
583    
584    2009-04-02      Sascha L. Teichmann <[email protected]>
585    
586            * formed/formed/plugins/export/sql.py: call anonymization
587              of uuid on anonymization of case.
588    
589    2009-03-31      Sascha L. Teichmann <[email protected]>
590    
591            * formed/formed/plugins/export/sql.py: Set uuid_id to NULL in
592              case_anonymize().
593    
594    2009-03-31      Sascha L. Teichmann <[email protected]>
595    
596            * formed/formed/model/exprtree.py: Add some code to pretty print
597              the trees infix.
598    
599            * formed/formed/plugins/export/rules.py: New. Exporter for human
600              readable rules.
601    
602            * formed/formed/plugins/export/html.py: Fixed HTML generation.
603    
604            * formed/formed/config.py: Added new new Rule export plug-in.
605    
606    2009-03-31      Sascha L. Teichmann <[email protected]>
607    
608            * formed/formed/model/exprtree.py: Fixes from server. Raise
609              exceptions if there is less or more than one element on stack
610              after compilation of expression.
611    
612    2009-03-20      Sascha L. Teichmann <[email protected]>
613    
614            * formed/formed/model/data.py: Removed debug output
615    
616            * formed/formed/plugins/modify/rules.py: Fixed error message.
617              Generate past and future rules.
618    
619    2009-03-16      Sascha L. Teichmann <[email protected]>
620    
621            * formed/formed/model/exprtree.py: Forget to call today with context.
622    
623    2009-03-16      Sascha L. Teichmann <[email protected]>
624    
625            * formed/formed/io/document.py: Fixed syntax typo.
626    
627    2009-03-16      Sascha L. Teichmann <[email protected]>
628    
629            * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
630    
631    2009-03-16      Sascha L. Teichmann <[email protected]>
632    
633            * formed/formed/model/data.py: Added ConditionalNode
634    
635            * formed/formed/io/document.py: Make ConditionalNode loadable.
636    
637    2009-03-13      Sascha L. Teichmann <[email protected]>
638    
639            * formed/formed/plugins/modify/rules.py: Make the error descriptions
640              in date sequence rules more precise.
641    
642    2009-03-13      Sascha L. Teichmann <[email protected]>
643    
644            * formed/formed/plugins/modify/rules.py: generate date sequence rules.
645    
646    2009-03-13      Sascha L. Teichmann <[email protected]>
647    
648          * formed/formed/model/exprtree.py: New tree based expression engine.          * formed/formed/model/exprtree.py: New tree based expression engine.
649    

Legend:
Removed from v.313  
changed lines
  Added in v.408

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26