/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

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

Legend:
Removed from v.290  
changed lines
  Added in v.317

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26