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