/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 357 by roland, Wed Apr 28 07:10:33 2010 UTC revision 408 by torsten, Tue Oct 5 16:30:38 2010 UTC
# Line 1  Line 1 
1    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]>  2010-04-28      Roland Geider <[email protected]>
185    
186          * formed/plugins/export/xls.py: Radiogroups are exported          * 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]>  2010-04-08  Torsten Irländer <[email protected]>
191    
192          * formed/formed/plugins/modify/rules.py          * formed/formed/plugins/modify/rules.py

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26