1 |
|
2007-09-03 Sascha L. Teichmann <[email protected]> |
2 |
|
|
3 |
|
* tools/formed/formed/model/nodecomponents.py: Added an |
4 |
|
'annotation' attribute to node components. This is to |
5 |
|
enable FormEd document authors to add comments to groups |
6 |
|
and fields. |
7 |
|
|
8 |
|
2007-09-03 Frank Koormann <[email protected]> |
9 |
|
|
10 |
|
* tools/formed/formed/model/nodecomponents.py |
11 |
|
(NodeComponent.getParent): New method to get node components parent. |
12 |
|
|
13 |
|
* tools/formed/formed/plugins/export/html.py: Export Choice option |
14 |
|
as simple list instead of collection of bools. |
15 |
|
|
16 |
|
2007-09-02 Sascha L. Teichmann <[email protected]> |
17 |
|
|
18 |
|
* tools/formed/formed/model/persistent.py: Interfaces to abstract |
19 |
|
from persistent storage details. |
20 |
|
|
21 |
|
* tools/formed/formed/model/memory.py: In core implementation |
22 |
|
of the persistent interfaces. |
23 |
|
|
24 |
|
* tools/formed/formed/main.py: Holds a memory data store now. |
25 |
|
|
26 |
|
2007-09-02 Sascha L. Teichmann <[email protected]> |
27 |
|
|
28 |
|
* tools/formed/formed/plugins/export/sql.py, |
29 |
|
tools/formed/formed/plugins/export/html.py: Fixed constructor chains |
30 |
|
for FileDialogFilter sub classes. |
31 |
|
|
32 |
|
2007-09-02 Sascha L. Teichmann <[email protected]> |
33 |
|
|
34 |
|
* tools/formed/formed/model/misc.py: Checking the mode in recursive |
35 |
|
tree traversals is a common task. To ease this a decorator function |
36 |
|
checkMode in union with sub classing ModeChecker can be used. |
37 |
|
To make it work simply subclass from ModeChecker and add the decorator |
38 |
|
to the methods that need mode tracking. Before you start the recursion |
39 |
|
call self.prepareDescent(). |
40 |
|
|
41 |
|
* tools/formed/formed/plugins/export/html.py: Uses the new decorator scheme |
42 |
|
now which replace the old. TODO: Make the web renderer use the new scheme |
43 |
|
too. |
44 |
|
|
45 |
|
2007-09-02 Sascha L. Teichmann <[email protected]> |
46 |
|
|
47 |
|
* tools/formed/formed/plugins/export/sql.py: Removed needless import. |
48 |
|
|
49 |
|
* tools/formed/formed/plugins/export/html.py: HTML table exporter |
50 |
|
uses new FileDialogFilter base class too. |
51 |
|
|
52 |
|
2007-09-02 Sascha L. Teichmann <[email protected]> |
53 |
|
|
54 |
|
* tools/formed/formed/plugins/ui/*: New. All file exporters |
55 |
|
need a file dialog. Till now each of them pulled up its |
56 |
|
own. This was silly code replication. Now there is an abstract |
57 |
|
base class 'FileDialogFilter' which implements the common |
58 |
|
behavior. The file exporters should subclass it. |
59 |
|
|
60 |
|
* tools/formed/formed/plugins/export/sql.py: Subclass the SQL |
61 |
|
exporters from the new base class. TODO: Subclass the HTML |
62 |
|
exporter too. |
63 |
|
|
64 |
|
2007-08-31 Sascha L. Teichmann <[email protected]> |
65 |
|
|
66 |
|
* tools/formed/formed/plugins/export/html.py: Make mode check |
67 |
|
work (again). |
68 |
|
|
69 |
|
2007-08-31 Torsten Irlaender <[email protected]> |
70 |
|
|
71 |
|
* tools/formed/formed/plugins/export/html.py: Rendering of the HTML |
72 |
|
exprt works now in a recursive way. This change was needed because |
73 |
|
the structure of the formedtree has changed to be able to render |
74 |
|
full hirachically document stuctures. (nested lists) |
75 |
|
TODO: Fix modechecking |
76 |
|
|
77 |
2007-08-31 Torsten Irlaender <[email protected]> |
2007-08-31 Torsten Irlaender <[email protected]> |
78 |
|
|
79 |
* tools/formed/formed/plugins/web/plugin.py: Navigation rendering works |
* tools/formed/formed/plugins/web/plugin.py: Navigation rendering works |