/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 66 by teichmann, Tue Aug 21 13:05:23 2007 UTC revision 107 by teichmann, Wed Aug 29 10:32:33 2007 UTC
# Line 1  Line 1 
1    2007-08-29 Sascha L. Teichmann <[email protected]>
2    
3            * tools/formed/formed/plugins/export/sql.py: Rewritten to produce
4              _real_ SQL and respect repeat groups.
5    
6            * tools/formed/formed/model/data.py: Fixed bug with Group.isRepeat()
7    
8            * tools/formed/formed/plugins/web/renderer.py: Use "".join([])
9              instead of expensive += string concat in some places.
10    
11    2007-08-29 Sascha L. Teichmann <[email protected]>
12    
13            * tools/formed/formed/model/data.py: Renamed GroupNode.getRepeat()
14              to .isRepeat and return a bool. Fixed a bug in Page.allWidgets().
15    
16    2007-08-28 Torsten Irlaender <[email protected]>
17    
18            * tools/formed/plugins/web/renderer.py: Added Formdata interface.
19            * tools/formed/model/data.py: Implements Formadata interface to
20              textfields. Fieldset generated depends now on the "invisible"
21              attribute of the groupnode. Field-label generation slightly changed.
22              Added error indication to textfields
23    
24    2007-08-28 Sascha L. Teichmann <[email protected]>
25    
26            * tools/formed/formed/model/data.py,
27              tools/formed/formed/io/document.py: Removed support
28                    of logical groups.
29    
30    2007-08-28 Sascha L. Teichmann <[email protected]>
31    
32            * tools/formed/formed/io/document.py: Avoid saving empty
33              attributes.
34    
35            * tools/formed/test-data/simple.xml: Applied.
36    
37    2007-08-28 Sascha L. Teichmann <[email protected]>
38    
39            * tools/formed/formed/model/data.py: Added 'repeat' and
40              'invisible' attributes to group. TODO: remove logical group.
41    
42    2007-08-27 Torsten Irlaender <[email protected]>
43    
44            * tools/formed/plugins/web/plugin.py,
45              tools/formed/plugins/web/renderer.py: Started to  include stylesheet
46              depending tags in the html generation.
47    
48    2007-08-27 Sascha L. Teichmann <[email protected]>
49    
50            * tools/formed/formed/model/data.py,
51              tools/formed/formed/io/document.py: Added a logical group.
52                    It has an attribute 'repeat' to indicate that it might
53                    be worthy an external table in DB schema.
54    
55    2007-08-27 Sascha L. Teichmann <[email protected]>
56    
57            * tools/formed/formed/plugins/web/plugin.py: Support
58              serving of static content.
59    
60            * tools/formed/formed/plugins/web/server.py: Removed
61              old send code.
62    
63    2007-08-27 Sascha L. Teichmann <[email protected]>
64    
65            * tools/formed/formed/plugins/web/plugin.py: Use new
66              Response object. Fix typo.
67    
68            * tools/formed/formed/plugins/web/server.py: support
69              response object to serve different MIME types.
70    
71    2007-08-27 Sascha L. Teichmann <[email protected]>
72    
73            * tools/formed/formed/plugins/web/plugin.py: Add web.path
74              to FORMED environment  variable to specify the
75                    root of the static content.
76    
77    2007-08-26 Sascha L. Teichmann <[email protected]>
78    
79            * tools/formed/formed/model/data.py,
80              tools/formed/formed/model/nodecomponents.py: Fixed mode issues.
81    
82            * tools/formed/formed/plugins/web/www,
83              tools/formed/formed/plugins/web/www/main.tmpl: New. Contains
84                    a template for the HTML output.
85    
86            * tools/formed/formed/plugins/web/plugin.py: Fixes several smaller
87              mode issues. Introduces CSS support. Simplified the action
88                    handling.
89    
90            * tools/formed/formed/plugins/web/renderer.py: Removed the
91              nagivation code.
92    
93            * tools/formed/formed/plugins/web/server.py: Added missing import.
94    
95    2007-08-26 Sascha L. Teichmann <[email protected]>
96    
97            * tools/formed/formed/model/data.py: Added missing broadcast
98              parameter to setAttribute() of RuleLeaf.
99    
100            * tools/formed/formed/plugins/web/plugin.py: Factorize
101              HTTP server code out to separate module.
102    
103            * tools/formed/formed/plugins/web/renderer.py: Removed
104              needless -1 from pop()
105    
106            * tools/formed/formed/plugins/web/server.py: New. Contains
107              the HTTP server code now.
108    
109    2007-08-26 Sascha L. Teichmann <[email protected]>
110    
111            * tools/formed/test-data/simple.xml: Modified to contain a rule.
112    
113            * tools/formed/formed/model/expr.py: Added. A simple RPN
114              expression evaluator. To avoid the problem of eval()ing
115                    arbitrary python expressions I've decided to use a very
116                    basic and limited stack machine to support rule checking.
117    
118            * tools/formed/formed/model/data.py: Added a RuleLeaf.
119    
120            * tools/formed/formed/io/document.py: Added factories for rules.
121    
122            * tools/formed/formed/model/nodecomponents.py: Add a method
123              to find all items of a given type in document for a given
124                    mode. Usefull to find all rules in the tree.
125    
126            * tools/formed/formed/ui/controls.py: Added a listener mechanism
127              to attribute table to report exceptions when setting a value
128                    from GUI. Useful to report compilation errors when setting
129                    expr of rule leafs.
130    
131            * tools/formed/formed/main.py: Added a method to track exceptions
132              from the attribute table and pop up dialogs if they occur.
133                    Added a counter of rule modifications in tree. Useful if you
134                    want build cached data structures like rule sets and you want
135                    to know if they are still valid.
136    
137    2007-08-24 Torsten Irlaender <[email protected]>
138    
139            * tools/formed/formed/plugins/export/sql.py: Fixed CHECK-constraint
140              for checkbox values. (Syntax error).
141    
142            * tools/formed/formed/plugins/names/filter.py: Fixes in formularname
143              generation  
144    
145    2007-08-24 Torsten Irlaender <[email protected]>
146    
147            * tools/formed/formed/plugins/names/filter.py: Separated Class for
148              making the formularnames more database friendly. Added some more
149              checks.
150            * tools/formed/formed/plugins/export/sql.py: Make use of the fresh
151              separated class, and some fixes in sql generation.
152    
153    2007-08-24 Sascha L. Teichmann <[email protected]>
154    
155            * tools/formed/formed/plugins/export/html.py: Print lengths
156              of external choice list.
157    
158    2007-08-24 Sascha L. Teichmann <[email protected]>
159    
160            * tools/formed/formed/main.py: Little workaround for
161              mode selection if someone adds an removes a mode.
162    
163    2007-08-24 Sascha L. Teichmann <[email protected]>
164    
165            * tools/formed/test-data/simple.xml: Better test case for
166              mode depended leaf items.
167    
168            * tools/formed/formed/model/nodecomponents.py: Added a method
169              to calculate the effective mode of an item.
170    
171            * tools/formed/formed/plugins/export/html.py: Use effective
172              mode. TODO: the 'all' modus return false results sometimes.
173                    Cause: The modes are only cumulated over time. Removal is
174                    not done.
175    
176    2007-08-24 Sascha L. Teichmann <[email protected]>
177    
178            * tools/formed/formed/plugins/export/html.py: Dump the items
179              of radio groups and choices too.
180    
181    2007-08-24 Torsten Irlaender <[email protected]>
182    
183            * tools/formed/formed/plugins/names/filter.py: Modified the renaming
184              by formular names to make the naming more database friendly.
185              Now only alphanumeric and underscore chars is allowed.
186    
187    2007-08-24 Sascha L. Teichmann <[email protected]>
188    
189            * tools/formed/formed/plugins/export/html.py: Tweaked
190              HTML table exporter a bit to be on par with the XSLT
191                    script. TODO: Dump items in radio and choice groups.
192    
193    2007-08-23 Sascha L. Teichmann <[email protected]>
194    
195            * tools/formed/formed/plugins/names/filter.py: Removed
196              HTML and SQL exporters.
197    
198            * tools/formed/formed/plugins/export,
199              tools/formed/formed/plugins/export/__init__.py,
200              tools/formed/formed/plugins/export/sql.py,
201              tools/formed/formed/plugins/export/html.py: New: Contain
202                    the HTML and the SQL exporters now.
203    
204            * tools/formed/formed/config.py: Use exporters from different
205              package now.
206    
207    2007-08-23 Torsten Irlaender <[email protected]>
208    
209            * tools/formed/formed/plugins/names/filter.py: Added an
210              pseudo SQL export filters. TODO: Move HTML and SQL filter
211              in a new file (formed/plugins/export/htmlexport.py and
212              sqlexport.py?)
213    
214            * tools/formed/formed/config.py: Install the new SQL filter.
215    
216    2007-08-23 Sascha L. Teichmann <[email protected]>
217    
218            * tools/formed/formed/model/nodecomponents.py: Added a depth()
219              method to determine the depth of particular tree item.
220    
221            * tools/formed/formed/plugins/names/filter.py: Added an
222              HTML export filters. TODO: needs more work.
223    
224            * tools/formed/formed/config.py: Install the new HTML filter.
225    
226    2007-08-23 Torsten Irlaender <[email protected]>
227    
228            * contrib/extract-xfa-fields_and_options.xsl: Added small xsl script
229              to extract fields and options in the XFA Data in teh PDF. This
230              script might me handy to indicate changes between the different
231              formular versions.
232            
233    2007-08-23 Sascha L. Teichmann <[email protected]>
234    
235            * tools/formed/formed/main.py: Add an 'all' mode to
236              select all modes. ;-)
237    
238    2007-08-22 Sascha L. Teichmann <[email protected]>
239    
240            * tools/formed/test-data/simple.xml,
241              tools/formed/formed/model/data.py,
242              tools/formed/formed/plugins/web/plugin.py,
243              tools/formed/formed/plugins/web/renderer.py,
244              tools/formed/formed/io/document.py,
245              tools/formed/formed/main.py: Removed support for switch nodes.
246              BEWARE: This breaks compatibility with older documents!
247    
248    2007-08-22 Sascha L. Teichmann <[email protected]>
249    
250            * tools/formed/formed/plugins/web/plugin.py: Uses the
251              getSelectedMode() from main now.
252    
253            * tools/formed/formed/main.py: selected mode is now hold
254              in main.
255    
256            * tools/formed/formed/config.py: removed selected mode from
257              env configuration.
258    
259    2007-08-22 Sascha L. Teichmann <[email protected]>
260    
261            * tools/formed/formed/ui/controls.py: Attributes in GUI attribute
262              table are now alphabetically sorted.
263    
264    2007-08-22 Sascha L. Teichmann <[email protected]>
265    
266            * tools/formed/formed/model/nodecomponents.py: Added code to
267              establish the new 'modes' recursively.
268    
269            * tools/formed/formed/plugins/plugin.py: Pass main instead
270              of cfg on plug-in start-up.
271    
272            * tools/formed/formed/plugins/web/plugin.py: Use the new
273              'modes' attribute for rendering.
274    
275            * tools/formed/formed/plugins/web/renderer.py: Use decorators
276              to check the new modes.
277    
278            * tools/formed/formed/main.py: Adjusted to new infrastructure.
279    
280    2007-08-22 Sascha L. Teichmann <[email protected]>
281    
282            * tools/formed/formed/model/nodecomponents.py: Added an
283              attribute 'modes' to NodeComponents.
284    
285    2007-08-22 Sascha L. Teichmann <[email protected]>
286    
287            * tools/formed/formed/model/data.py: Small cosmetic cleanups
288    
289    2007-08-21 Sascha L. Teichmann <[email protected]>
290    
291            * tools/formed/formed/plugins/web/renderer.py: Another fix
292              for the hidden field. Argh!
293    
294    2007-08-21 Sascha L. Teichmann <[email protected]>
295    
296            * tools/formed/formed/plugins/web/renderer.py: Fixed double
297              generation of hidden page field.
298    
299    2007-08-21 Sascha L. Teichmann <[email protected]>
300    
301            * tools/formed/formed/plugins/web/semantic.py: Added semantic
302              checks for radio groups.
303    
304    2007-08-21 Sascha L. Teichmann <[email protected]>
305    
306            * tools/formed/formed/plugins/web/semantic.py: Added semantic
307              checks for choices.
308    
309    2007-08-21      Frank Koormann <[email protected]>
310    
311            * contrib/convert-formedtree2html.xsl: Display switch nodes as
312            alternatives.
313            
314    2007-08-21      Frank Koormann <[email protected]>
315    
316            * contrib/convert-formedtree2html.xsl:
317            Replace technical types with readable descriptions
318    
319  2007-08-21 Sascha L. Teichmann <[email protected]>  2007-08-21 Sascha L. Teichmann <[email protected]>
320    
321          * tools/formed/formed/plugins/web/plugin.py: Fix a few smaller          * tools/formed/formed/plugins/web/plugin.py: Fix a few smaller

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26