1 |
|
2007-09-03 Torsten Irlaender <[email protected]> |
2 |
|
* tools/formed/formed/plugins/web/plugin.py: Only visible group |
3 |
|
elements will be rendered in the formular navigation. |
4 |
|
Formular pages in the navigation now have their own css-style |
5 |
|
attributes. |
6 |
|
|
7 |
|
2007-09-03 Torsten Irlaender <[email protected]> |
8 |
|
* tools/formed/formed/plugins/web/www/main.tmpl: Added div area for page |
9 |
|
errors in template |
10 |
|
* tools/formed/formed/plugins/web/plugin.py: Fixed undefined |
11 |
|
pageerrors variable |
12 |
|
|
13 |
|
2007-09-03 Frank Koormann <[email protected]> |
14 |
|
|
15 |
|
* tools/formed/formed/plugins/export/html.py |
16 |
|
(RecursiveExporter): Added annotation to export |
17 |
|
(fillRow()): Renamed old fillNine to this more generic name. |
18 |
|
|
19 |
|
|
20 |
|
2007-09-03 Sascha L. Teichmann <[email protected]> |
21 |
|
|
22 |
|
* tools/formed/formed/plugins/web/renderer.py: Using the decorator |
23 |
|
from model.misc now. |
24 |
|
|
25 |
|
2007-09-03 Sascha L. Teichmann <[email protected]> |
26 |
|
|
27 |
|
* tools/formed/formed/model/nodecomponents.py: Added an |
28 |
|
'annotation' attribute to node components. This is to |
29 |
|
enable FormEd document authors to add comments to groups |
30 |
|
and fields. |
31 |
|
|
32 |
|
2007-09-03 Frank Koormann <[email protected]> |
33 |
|
|
34 |
|
* tools/formed/formed/model/nodecomponents.py |
35 |
|
(NodeComponent.getParent): New method to get node components parent. |
36 |
|
|
37 |
|
* tools/formed/formed/plugins/export/html.py: Export Choice option |
38 |
|
as simple list instead of collection of bools. |
39 |
|
|
40 |
|
2007-09-02 Sascha L. Teichmann <[email protected]> |
41 |
|
|
42 |
|
* tools/formed/formed/model/persistent.py: Interfaces to abstract |
43 |
|
from persistent storage details. |
44 |
|
|
45 |
|
* tools/formed/formed/model/memory.py: In core implementation |
46 |
|
of the persistent interfaces. |
47 |
|
|
48 |
|
* tools/formed/formed/main.py: Holds a memory data store now. |
49 |
|
|
50 |
|
2007-09-02 Sascha L. Teichmann <[email protected]> |
51 |
|
|
52 |
|
* tools/formed/formed/plugins/export/sql.py, |
53 |
|
tools/formed/formed/plugins/export/html.py: Fixed constructor chains |
54 |
|
for FileDialogFilter sub classes. |
55 |
|
|
56 |
|
2007-09-02 Sascha L. Teichmann <[email protected]> |
57 |
|
|
58 |
|
* tools/formed/formed/model/misc.py: Checking the mode in recursive |
59 |
|
tree traversals is a common task. To ease this a decorator function |
60 |
|
checkMode in union with sub classing ModeChecker can be used. |
61 |
|
To make it work simply subclass from ModeChecker and add the decorator |
62 |
|
to the methods that need mode tracking. Before you start the recursion |
63 |
|
call self.prepareDescent(). |
64 |
|
|
65 |
|
* tools/formed/formed/plugins/export/html.py: Uses the new decorator scheme |
66 |
|
now which replace the old. TODO: Make the web renderer use the new scheme |
67 |
|
too. |
68 |
|
|
69 |
|
2007-09-02 Sascha L. Teichmann <[email protected]> |
70 |
|
|
71 |
|
* tools/formed/formed/plugins/export/sql.py: Removed needless import. |
72 |
|
|
73 |
|
* tools/formed/formed/plugins/export/html.py: HTML table exporter |
74 |
|
uses new FileDialogFilter base class too. |
75 |
|
|
76 |
|
2007-09-02 Sascha L. Teichmann <[email protected]> |
77 |
|
|
78 |
|
* tools/formed/formed/plugins/ui/*: New. All file exporters |
79 |
|
need a file dialog. Till now each of them pulled up its |
80 |
|
own. This was silly code replication. Now there is an abstract |
81 |
|
base class 'FileDialogFilter' which implements the common |
82 |
|
behavior. The file exporters should subclass it. |
83 |
|
|
84 |
|
* tools/formed/formed/plugins/export/sql.py: Subclass the SQL |
85 |
|
exporters from the new base class. TODO: Subclass the HTML |
86 |
|
exporter too. |
87 |
|
|
88 |
2007-08-31 Sascha L. Teichmann <[email protected]> |
2007-08-31 Sascha L. Teichmann <[email protected]> |
89 |
|
|
90 |
* tools/formed/formed/plugins/export/html.py: Make mode check |
* tools/formed/formed/plugins/export/html.py: Make mode check |