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