1 |
|
2007-09-05 Sascha L. Teichmann <[email protected]> |
2 |
|
|
3 |
|
* tools/formed/formed/model/memory.py, |
4 |
|
tools/formed/formed/model/persistent.py: Add a getValue() method |
5 |
|
to dataset abstraction. This is a bit of a workaround to bring |
6 |
|
global access across pages for rule checking to work. |
7 |
|
|
8 |
|
* tools/formed/formed/model/data.py: Fixed: When setting a new expression |
9 |
|
the compiled version was not stored in the RuleLeaf. |
10 |
|
|
11 |
|
* tools/formed/formed/model/expr.py: shlex lexer does not like unicode. |
12 |
|
convert the expression string to ascii for compilation. |
13 |
|
|
14 |
|
* tools/formed/formed/plugins/web/semantic.py: Remove the 'box' because |
15 |
|
valid data is stored to the dataset immediately now. Fixed a bug |
16 |
|
with integer handler. |
17 |
|
|
18 |
|
* tools/formed/formed/plugins/web/controllers.py: Removed the semantic 'box' |
19 |
|
stuff. When a submit is done extract the rules from the tree document |
20 |
|
that are effected by the modified variables and check them. |
21 |
|
|
22 |
|
* tools/formed/formed/plugins/web/renderer.py: Fixed exception handling |
23 |
|
when dealing with templates. |
24 |
|
|
25 |
|
2007-09-07 Torsten Irlaender <[email protected]> |
26 |
|
* tools/formed/formed/plugins/web/controllers.py, |
27 |
|
tools/formed/formed/plugins/web/renderer.py: Moved more render |
28 |
|
functions into renderer.py. New render classes are: |
29 |
|
DataSetDigestRenderer, DataSetNavigationRenderer, |
30 |
|
DataSetFormularRenderer, ConfirmationDialogRenderer |
31 |
|
|
32 |
|
Note: The new methods are only called from selected handlers. Other |
33 |
|
handlers call the renderes in the old way. |
34 |
|
|
35 |
|
2007-09-07 Torsten Irlaender <[email protected]> |
36 |
|
* tools/formed/formed/plugins/web/form_renderer.py: Renamed |
37 |
|
renderer.py to form_renderer.py. This file will contain formular |
38 |
|
specfic render methods in the future. |
39 |
|
* tools/formed/formed/plugins/web/renderer.py: Added new renderer.py |
40 |
|
which will contain general render methods. |
41 |
|
* tools/formed/formed/plugins/web/controllers.py: Began to move all |
42 |
|
rendering into renderer.py or form_renderer.py. This file will only |
43 |
|
contain teh handlers in the future. |
44 |
|
|
45 |
|
2007-09-07 Torsten Irlaender <[email protected]> |
46 |
|
* tools/formed/formed/plugins/web/renderer.py, |
47 |
|
tools/formed/formed/plugins/web/controller.py: |
48 |
|
Renderes now get an instance of the formdata object to provide |
49 |
|
access the data needed to render various infoboxes etc. Handler |
50 |
|
instanciate the formdata. |
51 |
|
|
52 |
|
2007-09-06 Torsten Irlaender <[email protected]> |
53 |
|
* tools/formed/formed/plugins/web/renderer.py: Mainly tried to get the |
54 |
|
getFormData interface to work. Added two small semantic fixes, but |
55 |
|
did not manage to get it up. Need to exime this a little bit more |
56 |
|
* tools/formed/formed/plugins/web/controllers.py: Put <div> tags |
57 |
|
around the menus on the right side to be able to assign different |
58 |
|
styles. Added dataset actions while editing a dataset. |
59 |
|
|
60 |
|
2007-09-05 Torsten Irlaender <[email protected]> |
61 |
|
* tools/formed/formed/model/memory.py: Fixed deleting datasets by |
62 |
|
removing unwanted del method |
63 |
|
* tools/formed/formed/plugins/web/controllers.py: Implemented |
64 |
|
confiration dialogs for create, delete, and select aof datasets. Started to use |
65 |
|
templates as well for larger information units like the dataset summary. |
66 |
|
|
67 |
|
2007-09-05 Sascha L. Teichmann <[email protected]> |
68 |
|
|
69 |
|
* tools/formed/formed/model/nodecomponents.py: Added a |
70 |
|
method to document to find index of page. |
71 |
|
|
72 |
|
* tools/formed/formed/plugins/web/semantic.py: Added getValue() |
73 |
|
to fetch data from semantic box. |
74 |
|
|
75 |
|
* tools/formed/formed/plugins/web/controllers.py: Added new |
76 |
|
FormData implementation to support DB and semantic box. |
77 |
|
|
78 |
|
2007-09-05 Sascha L. Teichmann <[email protected]> |
79 |
|
|
80 |
|
* tools/formed/formed/plugins/web/renderer.py: escaped |
81 |
|
error message. |
82 |
|
|
83 |
|
* tools/formed/formed/plugins/web/controllers.py: Don't fetch |
84 |
|
dataset from backend each time a page is up to edit. |
85 |
|
|
86 |
|
2007-09-05 Sascha L. Teichmann <[email protected]> |
87 |
|
|
88 |
|
* tools/formed/formed/plugins/web/renderer.py: SimplePageRenderer |
89 |
|
returns "Page not found" if given page is None. |
90 |
|
|
91 |
|
* tools/formed/formed/plugins/web/controllers.py: Added checks |
92 |
|
to avoid crashing when ask for a non-existent page. |
93 |
|
|
94 |
|
2007-09-05 Sascha L. Teichmann <[email protected]> |
95 |
|
|
96 |
|
* tools/formed/formed/plugins/web/controllers.py: Some clean-ups. |
97 |
|
|
98 |
|
2007-09-05 Sascha L. Teichmann <[email protected]> |
99 |
|
|
100 |
|
* tools/formed/formed/plugins/web/plugin.py: Remove request handlers |
101 |
|
and renderers. |
102 |
|
|
103 |
|
* tools/formed/formed/plugins/web/controllers.py: New. Contains handlers |
104 |
|
and renderers now. TODO: Move renderers to renderer.py |
105 |
|
|
106 |
|
2007-09-05 Torsten Irlaender <[email protected]> |
107 |
|
|
108 |
|
* tools/formed/formed/plugins/web/www/main.tmpl: Adopted web template |
109 |
|
and bound in the the new added functions to create, edit, delete and |
110 |
|
show formdata. |
111 |
|
|
112 |
|
2007-09-05 Sascha L. Teichmann <[email protected]> |
113 |
|
|
114 |
|
* tools/formed/formed/model/memory.py: Removed bisect and use a |
115 |
|
simple linear scan for dataset lookup now. |
116 |
|
|
117 |
|
* tools/formed/formed/plugins/web/plugin.py: Fixed various issues |
118 |
|
of different sizes. |
119 |
|
|
120 |
|
2007-09-05 Torsten Irlaender <[email protected]> |
121 |
|
|
122 |
|
* tools/formed/formed/plugins/web/memory.py: Fixed getDataSetById |
123 |
|
fuction |
124 |
|
|
125 |
|
* tools/formed/formed/plugins/web/persistent.py: Added store() method |
126 |
|
to the DataSet interface |
127 |
|
|
128 |
|
* tools/formed/formed/plugins/web/renderer.py: Added handlers and |
129 |
|
renderes for create, update, delete and show actions on formular data. |
130 |
|
|
131 |
2007-09-04 Sascha L. Teichmann <[email protected]> |
2007-09-04 Sascha L. Teichmann <[email protected]> |
132 |
|
|
133 |
* tools/formed/formed/plugins/web/server.py: The mapping |
* tools/formed/formed/plugins/web/server.py: The mapping |
151 |
* tools/formed/formed/plugins/web/cache.py: Report OSErrors |
* tools/formed/formed/plugins/web/cache.py: Report OSErrors |
152 |
and do not catch them. |
and do not catch them. |
153 |
|
|
154 |
2007-09-04 Torsten Irlaender <[email protected]> |
2007-09-04 Torsten Irlaender <[email protected]> |
155 |
|
|
156 |
* tools/formed/formed/plugins/web/renderer.py, |
* tools/formed/formed/plugins/web/renderer.py, |
157 |
* tools/formed/formed/plugins/web/plugin.py: Added Interface to |
* tools/formed/formed/plugins/web/plugin.py: Added Interface to |
194 |
* tools/formed/formed/plugins/web/plugin.py: Serves the help |
* tools/formed/formed/plugins/web/plugin.py: Serves the help |
195 |
texts now. |
texts now. |
196 |
|
|
197 |
2007-09-03 Torsten Irlaender <[email protected]> |
2007-09-03 Torsten Irlaender <[email protected]> |
198 |
|
|
199 |
* tools/formed/formed/plugins/web/plugin.py: Only visible group |
* tools/formed/formed/plugins/web/plugin.py: Only visible group |
200 |
elements will be rendered in the formular navigation. |
elements will be rendered in the formular navigation. |
201 |
Formular pages in the navigation now have their own css-style |
Formular pages in the navigation now have their own css-style |
202 |
attributes. |
attributes. |
203 |
|
|
204 |
2007-09-03 Torsten Irlaender <[email protected]> |
2007-09-03 Torsten Irlaender <[email protected]> |
205 |
|
|
206 |
* tools/formed/formed/plugins/web/www/main.tmpl: Added div area for page |
* tools/formed/formed/plugins/web/www/main.tmpl: Added div area for page |
207 |
errors in template |
errors in template |