/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 107 by teichmann, Wed Aug 29 10:32:33 2007 UTC revision 128 by teichmann, Mon Sep 3 10:40:59 2007 UTC
# Line 1  Line 1 
1    2007-09-03 Sascha L. Teichmann <[email protected]>
2    
3            * tools/formed/formed/plugins/web/renderer.py: Using the decorator
4              from model.misc now.
5    
6    2007-09-03 Sascha L. Teichmann <[email protected]>
7    
8            * tools/formed/formed/model/nodecomponents.py: Added an
9              'annotation' attribute to node components. This is to
10                    enable FormEd document authors to add comments to groups
11                    and fields.
12    
13    2007-09-03 Frank Koormann <[email protected]>
14    
15            * tools/formed/formed/model/nodecomponents.py
16            (NodeComponent.getParent): New method to get node components parent.
17    
18            * tools/formed/formed/plugins/export/html.py: Export Choice option
19            as simple list instead of collection of bools.
20    
21    2007-09-02 Sascha L. Teichmann <[email protected]>
22    
23            * tools/formed/formed/model/persistent.py: Interfaces to abstract
24              from persistent storage details.
25    
26            * tools/formed/formed/model/memory.py: In core implementation
27              of the persistent interfaces.
28    
29            * tools/formed/formed/main.py: Holds a memory data store now.
30    
31    2007-09-02 Sascha L. Teichmann <[email protected]>
32    
33            * tools/formed/formed/plugins/export/sql.py,
34              tools/formed/formed/plugins/export/html.py: Fixed constructor chains
35                    for FileDialogFilter sub classes.
36    
37    2007-09-02 Sascha L. Teichmann <[email protected]>
38    
39            * tools/formed/formed/model/misc.py: Checking the mode in recursive
40              tree traversals is a common task. To ease this a decorator function
41                    checkMode in union with sub classing ModeChecker can be used.
42                    To make it work simply subclass from ModeChecker and add the decorator
43                    to the methods that need mode tracking. Before you start the recursion
44                    call self.prepareDescent().
45    
46            * tools/formed/formed/plugins/export/html.py: Uses the new decorator scheme
47              now which replace the old. TODO: Make the web renderer use the new scheme
48                    too.
49    
50    2007-09-02 Sascha L. Teichmann <[email protected]>
51    
52            * tools/formed/formed/plugins/export/sql.py: Removed needless import.
53    
54            * tools/formed/formed/plugins/export/html.py: HTML table exporter
55              uses new FileDialogFilter base class too.
56    
57    2007-09-02 Sascha L. Teichmann <[email protected]>
58    
59            * tools/formed/formed/plugins/ui/*: New. All file exporters
60              need a file dialog. Till now each of them pulled up its
61                    own. This was silly code replication. Now there is an abstract
62                    base class 'FileDialogFilter' which implements the common
63                    behavior. The file exporters should subclass it.
64    
65            * tools/formed/formed/plugins/export/sql.py: Subclass the SQL
66              exporters from the new base class. TODO: Subclass the HTML
67                    exporter too.
68    
69    2007-08-31 Sascha L. Teichmann <[email protected]>
70    
71            * tools/formed/formed/plugins/export/html.py: Make mode check
72              work (again).
73    
74    2007-08-31 Torsten Irlaender <[email protected]>
75    
76            * tools/formed/formed/plugins/export/html.py: Rendering of the HTML
77              exprt works now in a recursive way. This change was needed because
78              the structure of the formedtree has changed to be able to render
79              full hirachically document stuctures. (nested lists)
80              TODO: Fix modechecking
81    
82    2007-08-31 Torsten Irlaender <[email protected]>
83    
84            * tools/formed/formed/plugins/web/plugin.py: Navigation rendering works
85              now in recursive way. This change was needed because the structure
86              of the formedtree has changed to be able to render full hirachically
87              document stuctures. (nested lists)
88    
89    2007-08-31 Sascha L. Teichmann <[email protected]>
90    
91            * tools/formed/formed/model/nodecomponents.py: use discard()
92              instead of remove on sets.
93    
94            * tools/formed/formed/plugins/export/sql.py: Added an
95              exporter for table views.
96    
97            * tools/formed/formed/config.py: Added the new exporter
98              to the list of export filters.
99    
100    2007-08-30 Sascha L. Teichmann <[email protected]>
101    
102            * tools/formed/formed/model/data.py: Fixed a bug in
103              Page.allWidgets()
104    
105            * tools/formed/formed/plugins/export/sql.py: Added an exporter
106              for stored procudeures.
107    
108            * tools/formed/formed/config.py: Add the new SP exporter.
109    
110    2007-08-29 Torsten Irlaender <[email protected]>
111    
112            * tools/formed/formed/plugins/web/plugin.py,
113              tools/formed/formed/plugins/web/error_renderer.py: Added interface
114              to get the errors for a whole page in te formular. These errors can
115              now be displayed on the top of the formular.
116    
117    2007-08-29 Torsten Irlaender <[email protected]>
118    
119            * tools/formed/formed/plugins/web/renderer.py: Finished implementation
120              of the getFromData interface and prepared the rederer for generating
121              nice error messages
122    
123    2007-08-28 Frank Koormann <[email protected]>
124    
125            * tools/formed/formed/plugins/export/sql.py
126            (SchemaCreator.createSchema, SchemaCreator._createGroup):
127            Fixed typo in created DDS (PRIMRAY -> PRIMARY)
128    
129    2007-08-28 Torsten Irlaender <[email protected]>
130    
131            * tools/formed/formed/plugins/export/sql.py: Added small helper
132              function to generated valid quotes within the sql statements
133    
134    2007-08-29 Sascha L. Teichmann <[email protected]>
135    
136            * tools/formed/formed/plugins/export/sql.py: Added foreign keys
137              for repeat tables.
138              
139    2007-08-29 Sascha L. Teichmann <[email protected]>
140    
141            * tools/formed/formed/plugins/export/sql.py: When generating
142              an extra table check in a table of same content exists. In
143                    this case reference the existing table.
144    
145  2007-08-29 Sascha L. Teichmann <[email protected]>  2007-08-29 Sascha L. Teichmann <[email protected]>
146    
147          * tools/formed/formed/plugins/export/sql.py: Rewritten to produce          * tools/formed/formed/plugins/export/sql.py: Rewritten to produce

Legend:
Removed from v.107  
changed lines
  Added in v.128

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26