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