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