/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 366 by bh, Fri Jun 11 13:59:02 2010 UTC revision 436 by torsten, Tue Jan 11 14:07:00 2011 UTC
# Line 1  Line 1 
1    2011-01-11  Torsten Irlaender <[email protected]>
2    
3            * formed/formed/model/exprtree.py: Added List-Node and Contains
4            function.
5    
6    2010-12-27  Torsten Irlaender <[email protected]>
7    
8            * formed/formed/model/data.py (WidgetCollector.visitor): Removed
9            clause to ignore Repeatgroups.
10    
11    2010-12-13  Torsten Irlaender <[email protected]>
12    
13            * formed/formed/model/data.py (GroupNode.isRepeat): Issue1565: Fixed
14            isRepeat function. Check typ instead of repeat attribute. Removed
15            setRepeat function (not used anywhere)
16    
17    2010-11-24  Bernhard Herzog  <[email protected]>
18    
19            * formed/formed/plugins/export/rules_sh.py (generate_tagging):
20            Remove unused variable "inserts" and corresponding commented out
21            code.
22    
23    2010-11-24  Bernhard Herzog  <[email protected]>
24    
25            * formed/formed/plugins/export/rules_sh.py: Remove some commented
26            out code.
27    
28    2010-11-24  Bernhard Herzog  <[email protected]>
29    
30            * formed/formed/plugins/export/rules_sh.py: expand star-import.
31    
32    2010-11-24  Bernhard Herzog  <[email protected]>
33    
34            * formed/formed/plugins/export/rules_sh.py (sql_OperatorUnary):
35            Put parentheses around the comparison for the KNOWN operator in
36            the generated SQL to ensure correct evaluation order.
37    
38    2010-11-24  Bernhard Herzog  <[email protected]>
39    
40            * formed/formed/plugins/export/rules_sh.py (binary_operator_map):
41            New.  Map binary formed expr operators to their SQL counterparts.
42            (sql_OperatorBinary): Use binary_operator_map instead of a cascade
43            of if-statements with lots of code duplication.  Also, put
44            parentheses around the resulting SQL expression to make sure the
45            expression is correctly.  This fixes a problem with WASKO tagging
46            rules, where the a FormEd expression of the form like "2 1 1980
47            date 1 1 1980 date - 93 *" would be incorrectly converted to the
48            SQL expression "93 * '1980-01-02'::date - '1980-01-01'::date"
49    
50    2010-11-24  Bernhard Herzog  <[email protected]>
51    
52            * formed/formed/plugins/export/rules_sh.py: Fix formatting.
53    
54    2010-11-15  Torsten Irlaender <[email protected]>
55    
56            * formed/formed/model/data.py: Do not set attribute "repeat" for
57            Repeat-Groups.
58    
59    2010-11-10  Torsten Irlaender <[email protected]>
60    
61            * formed/formed/plugins/modify/rules.py: Fixed date sequence rule
62            checks for date in future.
63    
64    2010-11-08  Roland Geider <[email protected]>
65    
66            * formed/formed/plugins/export/xsd.py: validate formedtree.xml
67    
68    2010-11-08  Roland Geider <[email protected]>
69    
70            * formed/formed/model/data.py,
71              formed/formed/plugins/export/xsd.py,
72              formed/formed/config.py: issue1131: generate XSD for case exports
73    
74    2010-10-21  Torsten Irlaender <[email protected]>
75    
76            * formed/formed/plugins/export/rules_sh.py: Added new LE-Operator
77            * formed/formed/plugins/modify/rules.py: Add error rule to force phase
78              relevant datefields not to be "unknown".
79    
80    2010-10-12  Roland Geider <[email protected]>
81    
82            * formed/formed/plugins/export/rules_sh.py: Ignore rules if any fields
83              in the rule are in a repeat group
84    
85    2010-10-11  Roland Geider <[email protected]>
86    
87            * formed/plugins/export/rules_sh.py: Added support to more opperators
88              to be able to export the WASKO case
89    
90    2010-10-06  Torsten Irlaender <[email protected]>
91    
92            * formed/formed/plugins/export/rules_sh.py (generate_tagging): Fixed
93            gerating SQL for Rules
94            * formed/formed/plugins/export/rules_sh.py (sql_date): Fixed sql_date
95            function.
96    
97    2010-10-05  Torsten Irländer <[email protected]>
98    
99            * formed/formed/model/data.py: Fixed error when setting tag attribute.
100            * formed/formed/plugins/export/rules_sh.py: Added generating exporting
101              tagging-xml
102            * formed/formed/plugins/modify/rules.py: Do not generate automatic
103              tagids for rules.
104    
105    2010-10-04  Torsten Irländer <[email protected]>
106    
107            * formed/formed/model/data.py (RuleLeaf.__init__): Added new attribute
108            "tag" for rule-leafs
109            * formed/formed/config.py: Added export rules as XML to Menu
110            * formed/formed/plugins/modify/rules.py
111            (GenerateRequiredRules.generateDateSequenceRules): Generate automatic
112            tag ids for date-sequence rules
113    
114    2010-09-30  Torsten Irländer <[email protected]>
115    
116            * formed/formed/plugins/export/rules_sh.py
117            (ExportRulesAsSH.doExport): Filter out duplicted rules.
118    
119    2010-09-20  Frank Koormann   <[email protected]>
120    
121            * formed/formed/plugins/export/latex.py (RecursiveExporter):
122            Add "required"-field information to output and include
123            choice list contents.
124    
125    2010-09-16  Bernhard Herzog  <[email protected]>
126    
127            Avoid database deadlocks that can happen when database clients try
128            to work with the same case using two separate database
129            connections.  See mpuls/issue1145 for details.
130    
131            * formed/formed/plugins/export/rg_sql.py (SQL_TEMPLATE): Split the
132            computation of the new json structure description into the new
133            database function compute_case_structure
134            (TRIGGER_TMPL): Change the trigger functions to immediately update
135            the cached json structure description instead of just setting the
136            modified flag.  This avoids the lazy recomputation that makes what
137            seems like a read-only access (calling get_case_structure) into a
138            writing access (updates of the cache).  The writes lock the row in
139            the case_structure table which prevent other connections from
140            accessing the same case.  As part of this, the delete triggers are
141            now AFTER triggers because the repeat groups instance must have
142            been removed when the structure is recomputed.
143            (SUBSELECT_TMPL): Since the delete trigger is now an after
144            trigger, we need to change the way the master id is computed.  We
145            cannot join with the repeatgroup table in question because the row
146            has already been deleted.  However, we can use the master_id
147            column of the OLD row to select the row of the parent table.
148            (create_triggers): Avoid the inner joins with the current repeat
149            group for the above mentioned reasons.  In the very common case of
150            repeat groups which are direct children of the master_tbl, we can
151            compare the master_tbl.id directly with the row's master_id.
152    
153    2010-09-14 Roland Geider <[email protected]>
154    
155            * formed/formed/plugins/export/xsd.py: issue1131: update XSD for new
156              formedtree structure
157    
158    2010-09-01 Roland Geider <[email protected]>
159    
160            * formed/formed/plugins/modify/rules.py: issue1050: mandatory fields
161              appearing double.
162              The problem was that the way the formEditor handled fields with
163              manually created rules changed. Instead of ignoring fields (very
164              early behaviour) or always generating them (early behaviour), now the
165              formED will only ignore fields with rules which name starts with
166              'required-rule-manual'. This is helpful when the rules for mandatory
167              fields are more complex (e.g. mother's name is only required if
168              mother is known).
169    
170    2010-08-10  Torsten Irländer <[email protected]>
171    
172            * contrib/diff_formed.py: New helperscript to diff to given
173              formedtrees
174    
175    2010-08-09      Roland Geider <[email protected]>
176    
177            * formed/model/exprtree.py: fixed typo
178    
179    2010-08-04  Bernhard Herzog  <[email protected]>
180    
181            * formed/po/de_DE.po: Update translations
182    
183    2010-08-04  Bernhard Herzog  <[email protected]>
184    
185            * formed/po/formed.pot: Regenerated.
186    
187            * formed/po/de_DE.po: Update.
188    
189    2010-08-04  Bernhard Herzog  <[email protected]>
190    
191            * formed/po/Makefile: Use correct filename of the pot-file in the
192            usage message
193    
194    2010-08-04  Bernhard Herzog  <[email protected]>
195    
196            * formed/po/Makefile (LIST_POTFILES): Sort the file names to make
197            the order of entries in the .pot-file more predictable.
198    
199    2010-08-04  Bernhard Herzog  <[email protected]>
200    
201            * formed/formed/model/nodecomponents.py (RootNode.__init__)
202            (RootNode.getVersion, RootNode.setVersion): Add attribute
203            "version" and accessor methods.
204    
205            * formed/formed/main.py (MainFrame.OnSetDocumentVersion): New. Let
206            the user set the document version.
207            (MainFrame._createMenuBar): Add menu item for OnSetDocumentVersion
208    
209    2010-08-02  Bernhard Herzog  <[email protected]>
210    
211            * formed/formed.py, formed/formed/io/document.py,
212            formed/formed/io/factories.py, formed/formed/io/parser.py,
213            formed/formed/model/data.py, formed/formed/model/event.py,
214            formed/formed/model/expr.py, formed/formed/model/exprtree.py,
215            formed/formed/model/memory.py, formed/formed/model/misc.py,
216            formed/formed/model/nodecomponents.py,
217            formed/formed/model/persistent.py: Fix coding declaration to be
218            acceptable to both python and Emacs.
219    
220    2010-07-29  Torsten Irländer <[email protected]>
221    
222            * formed/formed/model/data.py: Added "invisible" attribute to
223            BoolLeafs. This can be used to hide options in choicelists. so the
224            user can not select the value in the user interface. But the db will
225            have this option so is ist still present in the db an can be used
226            * formed/formed/model/exprtree.py: Added "days" function.
227    
228    2010-07-26      Roland Geider <[email protected]>
229    
230            * formed/formed/model/nodecomponents.py,
231              formed/formed/plugins/modify/rules.py: generated date rules take
232              into consideration repeat groups
233    
234    2010-07-21  Torsten Irländer <[email protected]>
235    
236            Issue870
237    
238            * formed/formed/plugins/modify/rules.py (descriptions): Do not collect
239            all headers to the referenced fields. Only list labels of the error
240            fields, which should be distinct enough.
241    
242            Issue851
243    
244            * formed/formed/model/data.py
245              formed/formed/plugins/export/new_sql.py
246              formed/formed/plugins/web/view_renderer.py
247              formed/formed/io/document.py
248              formed/formed/config.py: Added Float-Field to Formed
249    
250  2010-06-11  Bernhard Herzog  <[email protected]>  2010-06-11  Bernhard Herzog  <[email protected]>
251    
252          * formed/formed/plugins/export/rg_sql.py          * formed/formed/plugins/export/rg_sql.py
# Line 9  Line 258 
258    
259  2010-06-02      Roland Geider <[email protected]>  2010-06-02      Roland Geider <[email protected]>
260    
261            * formed/formed/plugins/modify/rules.py: make the names of generated
262              date-sequence-rules unique
263    
264    2010-06-02      Roland Geider <[email protected]>
265    
266          * formed/plugins/export/xls.py: updated regular expression          * formed/plugins/export/xls.py: updated regular expression
267    
268  2010-05-17      Frank Koormann <[email protected]>  2010-05-17      Frank Koormann <[email protected]>

Legend:
Removed from v.366  
changed lines
  Added in v.436

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26