/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

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

Legend:
Removed from v.109  
changed lines
  Added in v.133

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26