1 |
2007-10-05 Sascha L. Teichmann <[email protected]> |
2007-10-11 Sascha L. Teichmann <[email protected]> |
2 |
|
|
3 |
|
* tools/formed/formed/plugins/export/data.py: The import/export |
4 |
|
of data is now implemented with filters (the most consequent |
5 |
|
way in terms of design of FormEd). The support of the 'persistent' |
6 |
|
FORMED env-variable support has been removed. |
7 |
|
|
8 |
|
* tools/formed/formed/plugins/ui/controls.py: Added a flag to the |
9 |
|
filter file dialog to double as import dialog. |
10 |
|
|
11 |
|
* tools/formed/formed/main.py: Removed the the FORMED-var support |
12 |
|
for persistence. |
13 |
|
|
14 |
|
* tools/formed/formed/config.py: Add the two new filters to the filters |
15 |
|
list. |
16 |
|
|
17 |
|
2007-10-11 Sascha L. Teichmann <[email protected]> |
18 |
|
|
19 |
|
* tools/formed/formed/model/memory.py: Uses XML as persistence format now. |
20 |
|
Removed pickle/unpickle stuff. |
21 |
|
|
22 |
|
* tools/formed/formed/main.py: Uses the new XML persistence. |
23 |
|
|
24 |
|
* tools/formed/formed/plugins/web/semantic.py: Fixed: choices were |
25 |
|
not converted to int indices. |
26 |
|
|
27 |
|
2007-09-11 Sascha L. Teichmann <[email protected]> |
28 |
|
|
29 |
|
* tools/formed/formed/model/memory.py: Making MemoryDataStore persistent |
30 |
|
with pickle/unpickle. |
31 |
|
|
32 |
|
* tools/formed/formed/main.py: Added a env FORMED parameter 'persistent'. |
33 |
|
Set to a file name it is tried to unpickle a MemoryDataStore from |
34 |
|
that file. When exiting the program this file is used to store the |
35 |
|
current MemoryDataStore state. The storing only works if you exit |
36 |
|
the program through the Menu File->Exit. |
37 |
|
usage: FORMED=persistent:test.db ./formed.sh |
38 |
|
|
39 |
|
2007-09-11 Torsten Irlaender <[email protected]> |
40 |
|
|
41 |
|
* tools/formed/formed/plugins/web/renderer.py: Changed Name of the |
42 |
|
application on the welcome page from "Formed" to "WASKA" |
43 |
|
|
44 |
|
2007-09-11 Torsten Irlaender <[email protected]> |
45 |
|
|
46 |
|
* tools/formed/formed/plugins/web/plugin.py, |
47 |
|
* tools/formed/formed/plugins/web/controllers.py, |
48 |
|
* tools/formed/formed/plugins/web/renderer.py: Added InfoPageHandler. |
49 |
|
The infopage provides information on all project participants. |
50 |
|
|
51 |
|
2007-09-11 Sascha L. Teichmann <[email protected]> |
52 |
|
|
53 |
|
* tools/formed/formed/plugins/web/controllers.py: Fix unicode conversion |
54 |
|
issues with error messages (once again). |
55 |
|
|
56 |
|
2007-09-11 Torsten Irlaender <[email protected]> |
57 |
|
|
58 |
|
* tools/formed/formed/plugins/web/form_renderer.py, |
59 |
|
* tools/formed/formed/plugins/web/renderer.py: Added alt tag for |
60 |
|
icons in error and confirmation dialogs. |
61 |
|
|
62 |
|
2007-09-11 Sascha L. Teichmann <[email protected]> |
63 |
|
|
64 |
|
* tools/formed/formed/plugins/web/form_renderer.py: Fixed label |
65 |
|
generation for ints, texts and textareas. Fixed h depths of infos. |
66 |
|
|
67 |
|
2007-09-11 Sascha L. Teichmann <[email protected]> |
68 |
|
|
69 |
|
* tools/formed/formed/plugins/web/form_renderer.py: Removed |
70 |
|
debug output for help. |
71 |
|
|
72 |
|
* tools/formed/formed/plugins/web/semantic.py: Added forgotten |
73 |
|
check for bools. |
74 |
|
|
75 |
|
* tools/formed/formed/plugins/web/controllers.py: Added correct |
76 |
|
HTML output of data for bools. |
77 |
|
|
78 |
|
2007-09-11 Torsten Irlaender <[email protected]> |
79 |
|
|
80 |
|
* tools/formed/formed/plugins/web/form_renderer.py: Changed size of |
81 |
|
textfields for int values. Changed Label for submitbuttons to |
82 |
|
"Speichern" |
83 |
|
|
84 |
|
* tools/formed/formed/plugins/web/plugin.py, |
85 |
|
tools/formed/formed/plugins/web/controllers.py: Added new |
86 |
|
NotImplementedHandler to show up a dummysite for not implemented |
87 |
|
functions. |
88 |
|
|
89 |
|
* tools/formed/formed/plugins/web/renderer.py: Added |
90 |
|
NotImplementedRenderer. Various small fixes. Mostly renaming the |
91 |
|
labels of some context menus. Error messages are now generated |
92 |
|
dynamically depending on num errors. Formular navigation has now |
93 |
|
colored indication for errors. |
94 |
|
|
95 |
|
2007-09-11 Torsten Irlaender <[email protected]> |
96 |
|
|
97 |
|
* tools/formed/formed/plugins/web/renderer.py: Implemented "LookAhead" |
98 |
|
algorithm for the formular navigation to get rid of the problem |
99 |
|
that some of the items within the navigation are not linked. Now |
100 |
|
structural group elements are linked with the next page found in the |
101 |
|
formular structure. |
102 |
|
|
103 |
|
2007-09-10 Torsten Irlaender <[email protected]> |
104 |
|
* tools/formed/formed/plugins/web/form_renderer.py: Changed order of |
105 |
|
div and formtag. |
106 |
|
|
107 |
|
* tools/formed/formed/plugins/web/controllers.py: Added DataSet action |
108 |
|
menu in the conformation dialog when creating a new dataset. |
109 |
|
|
110 |
|
* tools/formed/formed/plugins/web/renderer.py: Fixed error when |
111 |
|
rendering the default welcome page. Changed rendering of the |
112 |
|
overview and the digest table of the datasets. Added icon for |
113 |
|
confirmation dialog, moved the icon in the <h1> tags. |
114 |
|
|
115 |
|
2007-09-10 Torsten Irlaender <[email protected]> |
116 |
|
|
117 |
|
* tools/formed/formed/plugins/web/form_renderer.py: Some html |
118 |
|
generation cleanup. Added error icons to formelements |
119 |
|
|
120 |
|
* tools/formed/formed/plugins/web/controllers.py: Fixed initialisation |
121 |
|
of ErrorStatus. Fixed generated of the help tags in the formular |
122 |
|
|
123 |
|
* tools/formed/formed/plugins/web/renderer.py: Added error icon for |
124 |
|
pageerrors. An "!" now indicates errors on pages in the formular |
125 |
|
navigation. Added new <div> "content" around confirmation dialogss. |
126 |
|
Links in confimation dialogs are now rendered as buttons. Removed |
127 |
|
old obsolete OverviewRenderer. |
128 |
|
|
129 |
|
2007-09-10 Sascha L. Teichmann <[email protected]> |
130 |
|
|
131 |
|
* tools/formed/formed/plugins/web/renderer.py: Highlight selected |
132 |
|
page in page navigation. |
133 |
|
|
134 |
|
2007-09-10 Torsten Irlaender <[email protected]> |
135 |
|
|
136 |
|
* tools/formed/formed/plugins/web/controllers.py: Fixed issues on |
137 |
|
displaying formdata when changing datasets. Loading the right |
138 |
|
formdata was not handled in a correct way. Hope it is all fixed now. |
139 |
|
Left some commented code because not all sideeffects of the changes |
140 |
|
are tested yet. |
141 |
|
|
142 |
|
* tools/formed/formed/plugins/web/renderer.py: DataSetDigestRenderer |
143 |
|
now uses the correct data out of the formdata. |
144 |
|
|
145 |
|
2007-09-10 Sascha L. Teichmann <[email protected]> |
146 |
|
|
147 |
|
* tools/formed/formed/plugins/web/controllers.py: Pretty |
148 |
|
print format data (dates e.g) |
149 |
|
|
150 |
|
2007-09-10 Sascha L. Teichmann <[email protected]> |
151 |
|
|
152 |
|
* tools/formed/formed/plugins/web/controllers.py: Modified |
153 |
|
ErrorStats a bit to avoid mysterious extra error on page. |
154 |
|
No clue why this works. |
155 |
|
|
156 |
|
2007-09-10 Sascha L. Teichmann <[email protected]> |
157 |
|
|
158 |
|
* tools/formed/formed/plugins/web/form_renderer.py: Fixed value |
159 |
|
problem with radio groups, too. |
160 |
|
|
161 |
|
2007-09-10 Torsten Irlaender <[email protected]> |
162 |
|
* tools/formed/formed/plugins/web/controllers.py: Sessions are now |
163 |
|
really removed when deleting a dataset. |
164 |
|
|
165 |
|
2007-09-10 Torsten Irlaender <[email protected]> |
166 |
|
|
167 |
|
* tools/formed/formed/plugins/web/controllers.py: Added new Class |
168 |
|
ErrorStats which provides Information on remaining errors per page. |
169 |
|
|
170 |
|
* tools/formed/formed/plugins/web/renderers.py: Finished movement of |
171 |
|
the renderer methods from controllers.py to renderers.py. |
172 |
|
|
173 |
|
* tools/formed/formed/plugins/web/plugin.py: Removed render_session |
174 |
|
handlers |
175 |
|
|
176 |
|
2007-09-10 Sascha L. Teichmann <[email protected]> |
177 |
|
|
178 |
* tools/formed/formed/plugins/web/form_renderer.py: values for |
* tools/formed/formed/plugins/web/form_renderer.py: values for |
179 |
choices are generated from the document tree now. This brings |
choices are generated from the document tree now. This brings |
180 |
the state storage of select boxes in HTML to live. |
the state storage of select boxes in HTML to live. |
181 |
|
|
182 |
2007-10-05 Sascha L. Teichmann <[email protected]> |
2007-09-09 Sascha L. Teichmann <[email protected]> |
183 |
|
|
184 |
* tools/formed/formed/plugins/web/semantic.py: Fixed problems with |
* tools/formed/formed/plugins/web/semantic.py: Fixed problems with |
185 |
range checking of integers. |
range checking of integers. |
187 |
* tools/formed/formed/plugins/web/controllers.py: Added class |
* tools/formed/formed/plugins/web/controllers.py: Added class |
188 |
ErrorItem to track errors. They are stored in the session. |
ErrorItem to track errors. They are stored in the session. |
189 |
|
|
190 |
2007-10-05 Sascha L. Teichmann <[email protected]> |
2007-09-09 Sascha L. Teichmann <[email protected]> |
191 |
|
|
192 |
* tools/formed/formed/model/nodecomponents.py: Fixed returning |
* tools/formed/formed/model/nodecomponents.py: Fixed returning |
193 |
wrong index in Document.indexOfcomponentByClassAndName. |
wrong index in Document.indexOfcomponentByClassAndName. |
197 |
|
|
198 |
* tools/formed/formed/plugins/web/controllers.py: Some clean-ups. |
* tools/formed/formed/plugins/web/controllers.py: Some clean-ups. |
199 |
|
|
200 |
2007-10-05 Sascha L. Teichmann <[email protected]> |
2007-09-09 Sascha L. Teichmann <[email protected]> |
201 |
|
|
202 |
* tools/formed/formed/plugins/web/help.py: Added a 'hasHelp' |
* tools/formed/formed/plugins/web/help.py: Added a 'hasHelp' |
203 |
method. Could be cheaper for some implementations of help. |
method. Could be cheaper for some implementations of help. |
212 |
* tools/formed/formed/plugins/web/renderer.py: New FormData and |
* tools/formed/formed/plugins/web/renderer.py: New FormData and |
213 |
some bug fixes. |
some bug fixes. |
214 |
|
|
215 |
2007-09-05 Sascha L. Teichmann <[email protected]> |
2007-09-09 Sascha L. Teichmann <[email protected]> |
216 |
|
|
217 |
* tools/formed/formed/model/memory.py, |
* tools/formed/formed/model/memory.py, |
218 |
tools/formed/formed/model/persistent.py: Add a getValue() method |
tools/formed/formed/model/persistent.py: Add a getValue() method |