1 |
|
2007-09.10 Torsten Irlaender <[email protected]> |
2 |
|
* tools/formed/formed/plugins/web/controllers.py: Added new Class |
3 |
|
ErrorStats which provides Information on remaining errors per page. |
4 |
|
* tools/formed/formed/plugins/web/renderers.py: Finished movement of |
5 |
|
the renderer methods from controllers.py to renderers.py. |
6 |
|
* tools/formed/formed/plugins/web/plugin.py: Removed render_session |
7 |
|
handlers |
8 |
|
|
9 |
|
2007-09-10 Sascha L. Teichmann <[email protected]> |
10 |
|
|
11 |
|
* tools/formed/formed/plugins/web/form_renderer.py: values for |
12 |
|
choices are generated from the document tree now. This brings |
13 |
|
the state storage of select boxes in HTML to live. |
14 |
|
|
15 |
|
2007-09-09 Sascha L. Teichmann <[email protected]> |
16 |
|
|
17 |
|
* tools/formed/formed/plugins/web/semantic.py: Fixed problems with |
18 |
|
range checking of integers. |
19 |
|
|
20 |
|
* tools/formed/formed/plugins/web/controllers.py: Added class |
21 |
|
ErrorItem to track errors. They are stored in the session. |
22 |
|
|
23 |
|
2007-09-09 Sascha L. Teichmann <[email protected]> |
24 |
|
|
25 |
|
* tools/formed/formed/model/nodecomponents.py: Fixed returning |
26 |
|
wrong index in Document.indexOfcomponentByClassAndName. |
27 |
|
|
28 |
|
* tools/formed/formed/plugins/web/form_renderer.py: 'error' was |
29 |
|
written 'errot' in renderer for textareas. |
30 |
|
|
31 |
|
* tools/formed/formed/plugins/web/controllers.py: Some clean-ups. |
32 |
|
|
33 |
|
2007-09-09 Sascha L. Teichmann <[email protected]> |
34 |
|
|
35 |
|
* tools/formed/formed/plugins/web/help.py: Added a 'hasHelp' |
36 |
|
method. Could be cheaper for some implementations of help. |
37 |
|
|
38 |
|
* tools/formed/formed/plugins/web/form_renderer.py: Modified |
39 |
|
FormData to have distinct getData(), getHelp() and getError() |
40 |
|
methods. Various bug fixes. |
41 |
|
|
42 |
|
* tools/formed/formed/plugins/web/controllers.py: Implements the |
43 |
|
new FormData (trivial by now). |
44 |
|
|
45 |
|
* tools/formed/formed/plugins/web/renderer.py: New FormData and |
46 |
|
some bug fixes. |
47 |
|
|
48 |
|
2007-09-09 Sascha L. Teichmann <[email protected]> |
49 |
|
|
50 |
|
* tools/formed/formed/model/memory.py, |
51 |
|
tools/formed/formed/model/persistent.py: Add a getValue() method |
52 |
|
to dataset abstraction. This is a bit of a workaround to bring |
53 |
|
global access across pages for rule checking to work. |
54 |
|
|
55 |
|
* tools/formed/formed/model/data.py: Fixed: When setting a new expression |
56 |
|
the compiled version was not stored in the RuleLeaf. |
57 |
|
|
58 |
|
* tools/formed/formed/model/expr.py: shlex lexer does not like unicode. |
59 |
|
convert the expression string to ascii for compilation. |
60 |
|
|
61 |
|
* tools/formed/formed/plugins/web/semantic.py: Remove the 'box' because |
62 |
|
valid data is stored to the dataset immediately now. Fixed a bug |
63 |
|
with integer handler. |
64 |
|
|
65 |
|
* tools/formed/formed/plugins/web/controllers.py: Removed the semantic 'box' |
66 |
|
stuff. When a submit is done extract the rules from the tree document |
67 |
|
that are effected by the modified variables and check them. |
68 |
|
|
69 |
|
* tools/formed/formed/plugins/web/renderer.py: Fixed exception handling |
70 |
|
when dealing with templates. |
71 |
|
|
72 |
|
2007-09-07 Torsten Irlaender <[email protected]> |
73 |
|
* tools/formed/formed/plugins/web/controllers.py, |
74 |
|
tools/formed/formed/plugins/web/renderer.py: Moved more render |
75 |
|
functions into renderer.py. New render classes are: |
76 |
|
DataSetDigestRenderer, DataSetNavigationRenderer, |
77 |
|
DataSetFormularRenderer, ConfirmationDialogRenderer |
78 |
|
|
79 |
|
Note: The new methods are only called from selected handlers. Other |
80 |
|
handlers call the renderes in the old way. |
81 |
|
|
82 |
|
2007-09-07 Torsten Irlaender <[email protected]> |
83 |
|
* tools/formed/formed/plugins/web/form_renderer.py: Renamed |
84 |
|
renderer.py to form_renderer.py. This file will contain formular |
85 |
|
specfic render methods in the future. |
86 |
|
* tools/formed/formed/plugins/web/renderer.py: Added new renderer.py |
87 |
|
which will contain general render methods. |
88 |
|
* tools/formed/formed/plugins/web/controllers.py: Began to move all |
89 |
|
rendering into renderer.py or form_renderer.py. This file will only |
90 |
|
contain teh handlers in the future. |
91 |
|
|
92 |
|
2007-09-07 Torsten Irlaender <[email protected]> |
93 |
|
* tools/formed/formed/plugins/web/renderer.py, |
94 |
|
tools/formed/formed/plugins/web/controller.py: |
95 |
|
Renderes now get an instance of the formdata object to provide |
96 |
|
access the data needed to render various infoboxes etc. Handler |
97 |
|
instanciate the formdata. |
98 |
|
|
99 |
2007-09-06 Torsten Irlaender <[email protected]> |
2007-09-06 Torsten Irlaender <[email protected]> |
100 |
* tools/formed/formed/plugins/web/renderer.py: Mainly tried to get the |
* tools/formed/formed/plugins/web/renderer.py: Mainly tried to get the |
101 |
getFormData interface to work. Added two small semantic fixes, but |
getFormData interface to work. Added two small semantic fixes, but |