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