/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

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

Legend:
Removed from v.288  
changed lines
  Added in v.316

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26