/[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 327 by teichmann, Fri Apr 24 12:29:32 2009 UTC
# Line 1  Line 1 
1    2009-04-24      Sascha L. Teichmann <[email protected]>
2    
3            * formed/formed/plugins/export/rg_sql.py: new plug-in to generate
4              tree structure functions in database.
5    
6            * formed/formed/config.py: load plug-in.
7    
8    2009-04-16      Sascha L. Teichmann <[email protected]>
9    
10            * formed/formed/model/data.py: Added 'digest' attribute to
11              RepeatNode. Removed needless methods
12    
13    2009-04-16      Sascha L. Teichmann <[email protected]>
14    
15            * formed/formed/model/exprtree.py: make 'equal' and 'not equal'
16              more readable with '=' and '<>'.
17    
18    2009-04-02      Sascha L. Teichmann <[email protected]>
19    
20            * formed/formed/plugins/export/sql.py: call anonymization
21              of uuid on anonymization of case.
22    
23    2009-03-31      Sascha L. Teichmann <[email protected]>
24    
25            * formed/formed/plugins/export/sql.py: Set uuid_id to NULL in
26              case_anonymize().
27    
28    2009-03-31      Sascha L. Teichmann <[email protected]>
29    
30            * formed/formed/model/exprtree.py: Add some code to pretty print
31              the trees infix.
32    
33            * formed/formed/plugins/export/rules.py: New. Exporter for human
34              readable rules.
35    
36            * formed/formed/plugins/export/html.py: Fixed HTML generation.
37    
38            * formed/formed/config.py: Added new new Rule export plug-in.
39    
40    2009-03-31      Sascha L. Teichmann <[email protected]>
41    
42            * formed/formed/model/exprtree.py: Fixes from server. Raise
43              exceptions if there is less or more than one element on stack
44              after compilation of expression.
45    
46    2009-03-20      Sascha L. Teichmann <[email protected]>
47    
48            * formed/formed/model/data.py: Removed debug output
49    
50            * formed/formed/plugins/modify/rules.py: Fixed error message.
51              Generate past and future rules.
52    
53    2009-03-16      Sascha L. Teichmann <[email protected]>
54    
55            * formed/formed/model/exprtree.py: Forget to call today with context.
56    
57    2009-03-16      Sascha L. Teichmann <[email protected]>
58    
59            * formed/formed/io/document.py: Fixed syntax typo.
60    
61    2009-03-16      Sascha L. Teichmann <[email protected]>
62    
63            * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
64    
65    2009-03-16      Sascha L. Teichmann <[email protected]>
66    
67            * formed/formed/model/data.py: Added ConditionalNode
68    
69            * formed/formed/io/document.py: Make ConditionalNode loadable.
70    
71    2009-03-13      Sascha L. Teichmann <[email protected]>
72    
73            * formed/formed/plugins/modify/rules.py: Make the error descriptions
74              in date sequence rules more precise.
75    
76    2009-03-13      Sascha L. Teichmann <[email protected]>
77    
78            * formed/formed/plugins/modify/rules.py: generate date sequence rules.
79    
80    2009-03-13      Sascha L. Teichmann <[email protected]>
81    
82            * formed/formed/model/exprtree.py: New tree based expression engine.
83    
84            * formed/formed/model/__init__.py, formed/formed/model/data.py:
85              Adjusted imports.
86    
87    2009-03-12      Torsten Irländer <[email protected]>
88    
89            Introduced new order attribute for date fields
90    
91            * formed/formed/model/data.py: Order fields can be used to define to
92            ordering of datefields withing the document. Needed for automatic
93            generation of consistency rules.
94    
95    2009-02-09      Sascha L. Teichmann <[email protected]>
96    
97            * formed/formed/model/data.py: Allow pages to be 'invisible'.
98    
99    2009-02-09      Sascha L. Teichmann <[email protected]>
100    
101            * formed/formed/plugins/export/sql.py: Fixed problem with
102              description reference tables of radio groups.
103    
104    2009-02-09      Sascha L. Teichmann <[email protected]>
105    
106            * formed/formed/plugins/export/sql.py: replace '-' in names
107              by '_'.
108              
109    2009-02-09      Sascha L. Teichmann <[email protected]>
110    
111            * formed/formed/plugins/export/sql.py: to figure ou which
112              tables are equal the insert statememnts are lower cased
113              and sorted before they are compared. This reduces the number
114              of generated referfence tables.
115    
116    2009-02-09      Sascha L. Teichmann <[email protected]>
117    
118            Repair SQL schema creation for radio groups.
119    
120            * formed/formed/plugins/export/sql.py: radio groups are handled
121              like choices now.
122    
123    2009-02-09      Sascha L. Teichmann <[email protected]>
124    
125            Make it startable again.
126    
127            * formed/formed/plugins/export/xls.py: Import pyExcelerator only
128              when plug-in is called.
129    
130            * formed/formed/model/nodecomponents.py: Event routing was messed up.
131              Rewired root node with document.
132    
133            * formed/formed/plugins/web/help.py: Removed old xml.ext import.
134              XXX: This breaks creating help by now!
135    
136            * formed/formed/io/parser.py: Replace old deprecated base class
137              by new one.
138    
139            * formed/formed/main.py: Do not crash if locale cannot be set.
140    
141            * formed/formed/ui/controls.py: Use document.getCase() instead
142              of document.case to prevent uninitialized dereferences.
143    
144    2009-01-22      Torsten Irländer <[email protected]>
145    
146            Implemented new XML-Format for formed xml files.
147    
148            * formed/formed/model/nodecomponents.py,
149              formed/formed/io/document.py,
150              formed/formed/main.py,
151              formed/formed/ui/controls.py: Introduced new "case" and "logbook"
152              node. Under case is the definition of the formular. logbook will
153              hold the defintion of logboog entrys. For now only the part under
154              "case" can be modified.  
155    
156    2009-01-21      Torsten Irländer <[email protected]>
157    
158            Changed way how XSD-Scheme is generated
159    
160            * formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support
161              logbookentrys. The scheme definiton is now hardcoded in the
162              exporter as it will rarely change. It logbookpart will not be
163              generated from the formedtree anymore.
164    
165    2009-01-20      Torsten Irländer <[email protected]>
166    
167            Support Logbook entrys in xsd schema export
168    
169            * formed/formed/model/data.py: Repeatnode are now handeld as
170              repeatgroups in xsd-export
171            * formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support
172              logbookentrys. The scheme will now validate against an xmlfile from
173              the offlineclient.
174    
175    2009-01-09      Torsten Irländer <[email protected]>
176    
177            Added new repeat node
178    
179            * formed/formed/model/data.py,
180              formed/formed/io/document.py: Added repeatnode to the formedtree.
181              TODO: Remove repeatgroup handling from the groupnode.
182    
183    2009-01-08      Torsten Irländer <[email protected]>
184    
185            Add isset operator to autogenerated rules.
186    
187            * formed/formed/plugins/modify/rules.py: Add issed operator to standard
188              autogenerated rules.
189    
190    2008-12-17      Frank Koormann <[email protected]>
191    
192            * formed/formed/plugins/export/latex.py: Export form as set of
193            latex tables to be included into a master document. The export
194            generates section marks to structure the form and placeholders for
195            help texts to be merged in by a post processing step.
196    
197    2008-12-04      Sascha L. Teichmann <[email protected]>
198    
199            * formed/formed/model/expr.py: Added 'today' which pushes the current date
200              on the stack.
201    
202    2008-12-03      Sascha L. Teichmann <[email protected]>
203    
204            * formed/formed/plugins/web/controllers.py: compute changeset more correctly in
205              storage of fields.
206    
207            * formed/formed/plugins/export/xsd.py: Added unknown int -999999 to integer
208              fields as an accepted value. Generate schema for radio groups too.
209    
210    2008-12-01      Torsten Irländer <[email protected]>
211    
212            Added autmatic generation of required rules
213    
214            * formed/formed/model/data.py,
215              formed/formed/model/expr.py,
216              formed/formed/plugins/modify/rules.py: Default rules for required
217              fields can now be generated.
218    
219    2008-11-28      Sascha L. Teichmann <[email protected]>
220    
221            * formed/formed/model/data.py, formed/formed/model/nodecomponents.py:
222              Ported WidgetCollector from Offline client.
223    
224            * formed/formed/plugins/modify/__init__.py, formed/formed/plugins/modify,
225              formed/formed/plugins/modify/rules.py: Stub for required rules generator.
226    
227            * formed/formed/config.py: Bind new filter to FormEd
228    
229    2008-11-27      Torsten Irländer <[email protected]>
230    
231            * formed/formed/model/data.py: Added new attribute mark for rules
232    
233  2008-11-10      Torsten Irländer <[email protected]>  2008-11-10      Torsten Irländer <[email protected]>
234    
235          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.327

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26