/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 87 by teichmann, Fri Aug 24 10:01:41 2007 UTC revision 112 by torsten, Thu Aug 30 13:51:27 2007 UTC
# Line 1  Line 1 
1    2007-08-29 Torsten Irlaender <[email protected]>
2    
3            * tools/formed/formed/plugins/web/renderer.py: Finished implementation
4              of the getFromData interface and prepared the rederer for generating
5              nice error messages
6    
7    2007-08-28 Frank Koormann <[email protected]>
8    
9            * tools/formed/formed/plugins/export/sql.py
10            (SchemaCreator.createSchema, SchemaCreator._createGroup):
11            Fixed typo in created DDS (PRIMRAY -> PRIMARY)
12    
13    2007-08-28 Torsten Irlaender <[email protected]>
14    
15            * tools/formed/formed/plugins/export/sql.py: Added small helper
16              function to generated valid quotes within the sql statements
17    
18    2007-08-29 Sascha L. Teichmann <[email protected]>
19    
20            * tools/formed/formed/plugins/export/sql.py: Added foreign keys
21              for repeat tables.
22              
23    2007-08-29 Sascha L. Teichmann <[email protected]>
24    
25            * tools/formed/formed/plugins/export/sql.py: When generating
26              an extra table check in a table of same content exists. In
27                    this case reference the existing table.
28    
29    2007-08-29 Sascha L. Teichmann <[email protected]>
30    
31            * tools/formed/formed/plugins/export/sql.py: Rewritten to produce
32              _real_ SQL and respect repeat groups.
33    
34            * tools/formed/formed/model/data.py: Fixed bug with Group.isRepeat()
35    
36            * tools/formed/formed/plugins/web/renderer.py: Use "".join([])
37              instead of expensive += string concat in some places.
38    
39    2007-08-29 Sascha L. Teichmann <[email protected]>
40    
41            * tools/formed/formed/model/data.py: Renamed GroupNode.getRepeat()
42              to .isRepeat and return a bool. Fixed a bug in Page.allWidgets().
43    
44    2007-08-28 Torsten Irlaender <[email protected]>
45    
46            * tools/formed/plugins/web/renderer.py: Added Formdata interface.
47            * tools/formed/model/data.py: Implements Formadata interface to
48              textfields. Fieldset generated depends now on the "invisible"
49              attribute of the groupnode. Field-label generation slightly changed.
50              Added error indication to textfields
51    
52    2007-08-28 Sascha L. Teichmann <[email protected]>
53    
54            * tools/formed/formed/model/data.py,
55              tools/formed/formed/io/document.py: Removed support
56                    of logical groups.
57    
58    2007-08-28 Sascha L. Teichmann <[email protected]>
59    
60            * tools/formed/formed/io/document.py: Avoid saving empty
61              attributes.
62    
63            * tools/formed/test-data/simple.xml: Applied.
64    
65    2007-08-28 Sascha L. Teichmann <[email protected]>
66    
67            * tools/formed/formed/model/data.py: Added 'repeat' and
68              'invisible' attributes to group. TODO: remove logical group.
69    
70    2007-08-27 Torsten Irlaender <[email protected]>
71    
72            * tools/formed/plugins/web/plugin.py,
73              tools/formed/plugins/web/renderer.py: Started to  include stylesheet
74              depending tags in the html generation.
75    
76    2007-08-27 Sascha L. Teichmann <[email protected]>
77    
78            * tools/formed/formed/model/data.py,
79              tools/formed/formed/io/document.py: Added a logical group.
80                    It has an attribute 'repeat' to indicate that it might
81                    be worthy an external table in DB schema.
82    
83    2007-08-27 Sascha L. Teichmann <[email protected]>
84    
85            * tools/formed/formed/plugins/web/plugin.py: Support
86              serving of static content.
87    
88            * tools/formed/formed/plugins/web/server.py: Removed
89              old send code.
90    
91    2007-08-27 Sascha L. Teichmann <[email protected]>
92    
93            * tools/formed/formed/plugins/web/plugin.py: Use new
94              Response object. Fix typo.
95    
96            * tools/formed/formed/plugins/web/server.py: support
97              response object to serve different MIME types.
98    
99    2007-08-27 Sascha L. Teichmann <[email protected]>
100    
101            * tools/formed/formed/plugins/web/plugin.py: Add web.path
102              to FORMED environment  variable to specify the
103                    root of the static content.
104    
105    2007-08-26 Sascha L. Teichmann <[email protected]>
106    
107            * tools/formed/formed/model/data.py,
108              tools/formed/formed/model/nodecomponents.py: Fixed mode issues.
109    
110            * tools/formed/formed/plugins/web/www,
111              tools/formed/formed/plugins/web/www/main.tmpl: New. Contains
112                    a template for the HTML output.
113    
114            * tools/formed/formed/plugins/web/plugin.py: Fixes several smaller
115              mode issues. Introduces CSS support. Simplified the action
116                    handling.
117    
118            * tools/formed/formed/plugins/web/renderer.py: Removed the
119              nagivation code.
120    
121            * tools/formed/formed/plugins/web/server.py: Added missing import.
122    
123    2007-08-26 Sascha L. Teichmann <[email protected]>
124    
125            * tools/formed/formed/model/data.py: Added missing broadcast
126              parameter to setAttribute() of RuleLeaf.
127    
128            * tools/formed/formed/plugins/web/plugin.py: Factorize
129              HTTP server code out to separate module.
130    
131            * tools/formed/formed/plugins/web/renderer.py: Removed
132              needless -1 from pop()
133    
134            * tools/formed/formed/plugins/web/server.py: New. Contains
135              the HTTP server code now.
136    
137    2007-08-26 Sascha L. Teichmann <[email protected]>
138    
139            * tools/formed/test-data/simple.xml: Modified to contain a rule.
140    
141            * tools/formed/formed/model/expr.py: Added. A simple RPN
142              expression evaluator. To avoid the problem of eval()ing
143                    arbitrary python expressions I've decided to use a very
144                    basic and limited stack machine to support rule checking.
145    
146            * tools/formed/formed/model/data.py: Added a RuleLeaf.
147    
148            * tools/formed/formed/io/document.py: Added factories for rules.
149    
150            * tools/formed/formed/model/nodecomponents.py: Add a method
151              to find all items of a given type in document for a given
152                    mode. Usefull to find all rules in the tree.
153    
154            * tools/formed/formed/ui/controls.py: Added a listener mechanism
155              to attribute table to report exceptions when setting a value
156                    from GUI. Useful to report compilation errors when setting
157                    expr of rule leafs.
158    
159            * tools/formed/formed/main.py: Added a method to track exceptions
160              from the attribute table and pop up dialogs if they occur.
161                    Added a counter of rule modifications in tree. Useful if you
162                    want build cached data structures like rule sets and you want
163                    to know if they are still valid.
164    
165    2007-08-24 Torsten Irlaender <[email protected]>
166    
167            * tools/formed/formed/plugins/export/sql.py: Fixed CHECK-constraint
168              for checkbox values. (Syntax error).
169    
170            * tools/formed/formed/plugins/names/filter.py: Fixes in formularname
171              generation  
172    
173    2007-08-24 Torsten Irlaender <[email protected]>
174    
175            * tools/formed/formed/plugins/names/filter.py: Separated Class for
176              making the formularnames more database friendly. Added some more
177              checks.
178            * tools/formed/formed/plugins/export/sql.py: Make use of the fresh
179              separated class, and some fixes in sql generation.
180    
181    2007-08-24 Sascha L. Teichmann <[email protected]>
182    
183            * tools/formed/formed/plugins/export/html.py: Print lengths
184              of external choice list.
185    
186    2007-08-24 Sascha L. Teichmann <[email protected]>
187    
188            * tools/formed/formed/main.py: Little workaround for
189              mode selection if someone adds an removes a mode.
190    
191  2007-08-24 Sascha L. Teichmann <[email protected]>  2007-08-24 Sascha L. Teichmann <[email protected]>
192    
193          * tools/formed/test-data/simple.xml: Better test case for          * tools/formed/test-data/simple.xml: Better test case for

Legend:
Removed from v.87  
changed lines
  Added in v.112

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26