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