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