/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 78 by teichmann, Wed Aug 22 18:21:01 2007 UTC revision 136 by torsten, Tue Sep 4 13:02:00 2007 UTC
# Line 1  Line 1 
1    2007-09-03 Torsten Irlaender <[email protected]>
2    
3            * tools/formed/formed/plugins/web/renderer.py,
4            * tools/formed/formed/plugins/web/plugin.py: Added Interface to
5              the HelpProvider and inserted help icons to the html output.
6              Added decorator for Formelemnts, so textfields, choices etc. are now
7              within a <div> tag.
8              Modified the error messages.
9    
10    2007-09-04 Sascha L. Teichmann <[email protected]>
11    
12            * tools/formed/formed/plugins/web/cache.py: New. Implements
13              the server-side caching more clean. Fixes a bug with
14                    serving static content.
15    
16            * tools/formed/formed/plugins/web/plugin.py: Use the new cache.
17    
18    2007-09-04 Sascha L. Teichmann <[email protected]>
19    
20            * tools/formed/formed/plugins/web/plugin.py: Set MIME type
21              to "application/xhtml+xml" when serving help texts.
22    
23    2007-09-03 Sascha L. Teichmann <[email protected]>
24    
25            * tools/formed/formed/plugins/export/diff.py: New. Exports
26              pairwise differences between all modes.
27    
28            * tools/formed/formed/config.py: Use new export filter.
29    
30    2007-09-03 Sascha L. Teichmann <[email protected]>
31    
32            * tools/formed/formed/plugins/web/help.py: New. Parses an
33              XHTML document for id'ed divs and builds a help lookup.
34    
35            * tools/formed/formed/plugins/web/www/help.tmpl: Template for
36              the help content frame.
37    
38            * tools/formed/formed/plugins/web/www/help.xhtml: Some simple
39              help text index.
40    
41            * tools/formed/formed/plugins/web/plugin.py: Serves the help
42              texts now.
43    
44    2007-09-03 Torsten Irlaender <[email protected]>
45    
46            * tools/formed/formed/plugins/web/plugin.py: Only visible group
47              elements will be rendered in the formular navigation.
48              Formular pages in the navigation now have their own css-style
49              attributes.
50    
51    2007-09-03 Torsten Irlaender <[email protected]>
52    
53            * tools/formed/formed/plugins/web/www/main.tmpl: Added div area for page
54              errors in template
55            * tools/formed/formed/plugins/web/plugin.py: Fixed undefined
56              pageerrors variable
57    
58    2007-09-03 Frank Koormann <[email protected]>
59    
60            * tools/formed/formed/plugins/export/html.py
61            (RecursiveExporter): Added annotation to export
62            (fillRow()): Renamed old fillNine to this more generic name.
63            
64    
65    2007-09-03 Sascha L. Teichmann <[email protected]>
66    
67            * tools/formed/formed/plugins/web/renderer.py: Using the decorator
68              from model.misc now.
69    
70    2007-09-03 Sascha L. Teichmann <[email protected]>
71    
72            * tools/formed/formed/model/nodecomponents.py: Added an
73              'annotation' attribute to node components. This is to
74                    enable FormEd document authors to add comments to groups
75                    and fields.
76    
77    2007-09-03 Frank Koormann <[email protected]>
78    
79            * tools/formed/formed/model/nodecomponents.py
80            (NodeComponent.getParent): New method to get node components parent.
81    
82            * tools/formed/formed/plugins/export/html.py: Export Choice option
83            as simple list instead of collection of bools.
84    
85    2007-09-02 Sascha L. Teichmann <[email protected]>
86    
87            * tools/formed/formed/model/persistent.py: Interfaces to abstract
88              from persistent storage details.
89    
90            * tools/formed/formed/model/memory.py: In core implementation
91              of the persistent interfaces.
92    
93            * tools/formed/formed/main.py: Holds a memory data store now.
94    
95    2007-09-02 Sascha L. Teichmann <[email protected]>
96    
97            * tools/formed/formed/plugins/export/sql.py,
98              tools/formed/formed/plugins/export/html.py: Fixed constructor chains
99                    for FileDialogFilter sub classes.
100    
101    2007-09-02 Sascha L. Teichmann <[email protected]>
102    
103            * tools/formed/formed/model/misc.py: Checking the mode in recursive
104              tree traversals is a common task. To ease this a decorator function
105                    checkMode in union with sub classing ModeChecker can be used.
106                    To make it work simply subclass from ModeChecker and add the decorator
107                    to the methods that need mode tracking. Before you start the recursion
108                    call self.prepareDescent().
109    
110            * tools/formed/formed/plugins/export/html.py: Uses the new decorator scheme
111              now which replace the old. TODO: Make the web renderer use the new scheme
112                    too.
113    
114    2007-09-02 Sascha L. Teichmann <[email protected]>
115    
116            * tools/formed/formed/plugins/export/sql.py: Removed needless import.
117    
118            * tools/formed/formed/plugins/export/html.py: HTML table exporter
119              uses new FileDialogFilter base class too.
120    
121    2007-09-02 Sascha L. Teichmann <[email protected]>
122    
123            * tools/formed/formed/plugins/ui/*: New. All file exporters
124              need a file dialog. Till now each of them pulled up its
125                    own. This was silly code replication. Now there is an abstract
126                    base class 'FileDialogFilter' which implements the common
127                    behavior. The file exporters should subclass it.
128    
129            * tools/formed/formed/plugins/export/sql.py: Subclass the SQL
130              exporters from the new base class. TODO: Subclass the HTML
131                    exporter too.
132    
133    2007-08-31 Sascha L. Teichmann <[email protected]>
134    
135            * tools/formed/formed/plugins/export/html.py: Make mode check
136              work (again).
137    
138    2007-08-31 Torsten Irlaender <[email protected]>
139    
140            * tools/formed/formed/plugins/export/html.py: Rendering of the HTML
141              exprt works now in a recursive way. This change was needed because
142              the structure of the formedtree has changed to be able to render
143              full hirachically document stuctures. (nested lists)
144              TODO: Fix modechecking
145    
146    2007-08-31 Torsten Irlaender <[email protected]>
147    
148            * tools/formed/formed/plugins/web/plugin.py: Navigation rendering works
149              now in recursive way. This change was needed because the structure
150              of the formedtree has changed to be able to render full hirachically
151              document stuctures. (nested lists)
152    
153    2007-08-31 Sascha L. Teichmann <[email protected]>
154    
155            * tools/formed/formed/model/nodecomponents.py: use discard()
156              instead of remove on sets.
157    
158            * tools/formed/formed/plugins/export/sql.py: Added an
159              exporter for table views.
160    
161            * tools/formed/formed/config.py: Added the new exporter
162              to the list of export filters.
163    
164    2007-08-30 Sascha L. Teichmann <[email protected]>
165    
166            * tools/formed/formed/model/data.py: Fixed a bug in
167              Page.allWidgets()
168    
169            * tools/formed/formed/plugins/export/sql.py: Added an exporter
170              for stored procudeures.
171    
172            * tools/formed/formed/config.py: Add the new SP exporter.
173    
174    2007-08-29 Torsten Irlaender <[email protected]>
175    
176            * tools/formed/formed/plugins/web/plugin.py,
177              tools/formed/formed/plugins/web/error_renderer.py: Added interface
178              to get the errors for a whole page in te formular. These errors can
179              now be displayed on the top of the formular.
180    
181    2007-08-29 Torsten Irlaender <[email protected]>
182    
183            * tools/formed/formed/plugins/web/renderer.py: Finished implementation
184              of the getFromData interface and prepared the rederer for generating
185              nice error messages
186    
187    2007-08-28 Frank Koormann <[email protected]>
188    
189            * tools/formed/formed/plugins/export/sql.py
190            (SchemaCreator.createSchema, SchemaCreator._createGroup):
191            Fixed typo in created DDS (PRIMRAY -> PRIMARY)
192    
193    2007-08-28 Torsten Irlaender <[email protected]>
194    
195            * tools/formed/formed/plugins/export/sql.py: Added small helper
196              function to generated valid quotes within the sql statements
197    
198    2007-08-29 Sascha L. Teichmann <[email protected]>
199    
200            * tools/formed/formed/plugins/export/sql.py: Added foreign keys
201              for repeat tables.
202              
203    2007-08-29 Sascha L. Teichmann <[email protected]>
204    
205            * tools/formed/formed/plugins/export/sql.py: When generating
206              an extra table check in a table of same content exists. In
207                    this case reference the existing table.
208    
209    2007-08-29 Sascha L. Teichmann <[email protected]>
210    
211            * tools/formed/formed/plugins/export/sql.py: Rewritten to produce
212              _real_ SQL and respect repeat groups.
213    
214            * tools/formed/formed/model/data.py: Fixed bug with Group.isRepeat()
215    
216            * tools/formed/formed/plugins/web/renderer.py: Use "".join([])
217              instead of expensive += string concat in some places.
218    
219    2007-08-29 Sascha L. Teichmann <[email protected]>
220    
221            * tools/formed/formed/model/data.py: Renamed GroupNode.getRepeat()
222              to .isRepeat and return a bool. Fixed a bug in Page.allWidgets().
223    
224    2007-08-28 Torsten Irlaender <[email protected]>
225    
226            * tools/formed/plugins/web/renderer.py: Added Formdata interface.
227            * tools/formed/model/data.py: Implements Formadata interface to
228              textfields. Fieldset generated depends now on the "invisible"
229              attribute of the groupnode. Field-label generation slightly changed.
230              Added error indication to textfields
231    
232    2007-08-28 Sascha L. Teichmann <[email protected]>
233    
234            * tools/formed/formed/model/data.py,
235              tools/formed/formed/io/document.py: Removed support
236                    of logical groups.
237    
238    2007-08-28 Sascha L. Teichmann <[email protected]>
239    
240            * tools/formed/formed/io/document.py: Avoid saving empty
241              attributes.
242    
243            * tools/formed/test-data/simple.xml: Applied.
244    
245    2007-08-28 Sascha L. Teichmann <[email protected]>
246    
247            * tools/formed/formed/model/data.py: Added 'repeat' and
248              'invisible' attributes to group. TODO: remove logical group.
249    
250    2007-08-27 Torsten Irlaender <[email protected]>
251    
252            * tools/formed/plugins/web/plugin.py,
253              tools/formed/plugins/web/renderer.py: Started to  include stylesheet
254              depending tags in the html generation.
255    
256    2007-08-27 Sascha L. Teichmann <[email protected]>
257    
258            * tools/formed/formed/model/data.py,
259              tools/formed/formed/io/document.py: Added a logical group.
260                    It has an attribute 'repeat' to indicate that it might
261                    be worthy an external table in DB schema.
262    
263    2007-08-27 Sascha L. Teichmann <[email protected]>
264    
265            * tools/formed/formed/plugins/web/plugin.py: Support
266              serving of static content.
267    
268            * tools/formed/formed/plugins/web/server.py: Removed
269              old send code.
270    
271    2007-08-27 Sascha L. Teichmann <[email protected]>
272    
273            * tools/formed/formed/plugins/web/plugin.py: Use new
274              Response object. Fix typo.
275    
276            * tools/formed/formed/plugins/web/server.py: support
277              response object to serve different MIME types.
278    
279    2007-08-27 Sascha L. Teichmann <[email protected]>
280    
281            * tools/formed/formed/plugins/web/plugin.py: Add web.path
282              to FORMED environment  variable to specify the
283                    root of the static content.
284    
285    2007-08-26 Sascha L. Teichmann <[email protected]>
286    
287            * tools/formed/formed/model/data.py,
288              tools/formed/formed/model/nodecomponents.py: Fixed mode issues.
289    
290            * tools/formed/formed/plugins/web/www,
291              tools/formed/formed/plugins/web/www/main.tmpl: New. Contains
292                    a template for the HTML output.
293    
294            * tools/formed/formed/plugins/web/plugin.py: Fixes several smaller
295              mode issues. Introduces CSS support. Simplified the action
296                    handling.
297    
298            * tools/formed/formed/plugins/web/renderer.py: Removed the
299              nagivation code.
300    
301            * tools/formed/formed/plugins/web/server.py: Added missing import.
302    
303    2007-08-26 Sascha L. Teichmann <[email protected]>
304    
305            * tools/formed/formed/model/data.py: Added missing broadcast
306              parameter to setAttribute() of RuleLeaf.
307    
308            * tools/formed/formed/plugins/web/plugin.py: Factorize
309              HTTP server code out to separate module.
310    
311            * tools/formed/formed/plugins/web/renderer.py: Removed
312              needless -1 from pop()
313    
314            * tools/formed/formed/plugins/web/server.py: New. Contains
315              the HTTP server code now.
316    
317    2007-08-26 Sascha L. Teichmann <[email protected]>
318    
319            * tools/formed/test-data/simple.xml: Modified to contain a rule.
320    
321            * tools/formed/formed/model/expr.py: Added. A simple RPN
322              expression evaluator. To avoid the problem of eval()ing
323                    arbitrary python expressions I've decided to use a very
324                    basic and limited stack machine to support rule checking.
325    
326            * tools/formed/formed/model/data.py: Added a RuleLeaf.
327    
328            * tools/formed/formed/io/document.py: Added factories for rules.
329    
330            * tools/formed/formed/model/nodecomponents.py: Add a method
331              to find all items of a given type in document for a given
332                    mode. Usefull to find all rules in the tree.
333    
334            * tools/formed/formed/ui/controls.py: Added a listener mechanism
335              to attribute table to report exceptions when setting a value
336                    from GUI. Useful to report compilation errors when setting
337                    expr of rule leafs.
338    
339            * tools/formed/formed/main.py: Added a method to track exceptions
340              from the attribute table and pop up dialogs if they occur.
341                    Added a counter of rule modifications in tree. Useful if you
342                    want build cached data structures like rule sets and you want
343                    to know if they are still valid.
344    
345    2007-08-24 Torsten Irlaender <[email protected]>
346    
347            * tools/formed/formed/plugins/export/sql.py: Fixed CHECK-constraint
348              for checkbox values. (Syntax error).
349    
350            * tools/formed/formed/plugins/names/filter.py: Fixes in formularname
351              generation  
352    
353    2007-08-24 Torsten Irlaender <[email protected]>
354    
355            * tools/formed/formed/plugins/names/filter.py: Separated Class for
356              making the formularnames more database friendly. Added some more
357              checks.
358            * tools/formed/formed/plugins/export/sql.py: Make use of the fresh
359              separated class, and some fixes in sql generation.
360    
361    2007-08-24 Sascha L. Teichmann <[email protected]>
362    
363            * tools/formed/formed/plugins/export/html.py: Print lengths
364              of external choice list.
365    
366    2007-08-24 Sascha L. Teichmann <[email protected]>
367    
368            * tools/formed/formed/main.py: Little workaround for
369              mode selection if someone adds an removes a mode.
370    
371    2007-08-24 Sascha L. Teichmann <[email protected]>
372    
373            * tools/formed/test-data/simple.xml: Better test case for
374              mode depended leaf items.
375    
376            * tools/formed/formed/model/nodecomponents.py: Added a method
377              to calculate the effective mode of an item.
378    
379            * tools/formed/formed/plugins/export/html.py: Use effective
380              mode. TODO: the 'all' modus return false results sometimes.
381                    Cause: The modes are only cumulated over time. Removal is
382                    not done.
383    
384    2007-08-24 Sascha L. Teichmann <[email protected]>
385    
386            * tools/formed/formed/plugins/export/html.py: Dump the items
387              of radio groups and choices too.
388    
389    2007-08-24 Torsten Irlaender <[email protected]>
390    
391            * tools/formed/formed/plugins/names/filter.py: Modified the renaming
392              by formular names to make the naming more database friendly.
393              Now only alphanumeric and underscore chars is allowed.
394    
395    2007-08-24 Sascha L. Teichmann <[email protected]>
396    
397            * tools/formed/formed/plugins/export/html.py: Tweaked
398              HTML table exporter a bit to be on par with the XSLT
399                    script. TODO: Dump items in radio and choice groups.
400    
401    2007-08-23 Sascha L. Teichmann <[email protected]>
402    
403            * tools/formed/formed/plugins/names/filter.py: Removed
404              HTML and SQL exporters.
405    
406            * tools/formed/formed/plugins/export,
407              tools/formed/formed/plugins/export/__init__.py,
408              tools/formed/formed/plugins/export/sql.py,
409              tools/formed/formed/plugins/export/html.py: New: Contain
410                    the HTML and the SQL exporters now.
411    
412            * tools/formed/formed/config.py: Use exporters from different
413              package now.
414    
415    2007-08-23 Torsten Irlaender <[email protected]>
416    
417            * tools/formed/formed/plugins/names/filter.py: Added an
418              pseudo SQL export filters. TODO: Move HTML and SQL filter
419              in a new file (formed/plugins/export/htmlexport.py and
420              sqlexport.py?)
421    
422            * tools/formed/formed/config.py: Install the new SQL filter.
423    
424    2007-08-23 Sascha L. Teichmann <[email protected]>
425    
426            * tools/formed/formed/model/nodecomponents.py: Added a depth()
427              method to determine the depth of particular tree item.
428    
429            * tools/formed/formed/plugins/names/filter.py: Added an
430              HTML export filters. TODO: needs more work.
431    
432            * tools/formed/formed/config.py: Install the new HTML filter.
433    
434    2007-08-23 Torsten Irlaender <[email protected]>
435    
436            * contrib/extract-xfa-fields_and_options.xsl: Added small xsl script
437              to extract fields and options in the XFA Data in teh PDF. This
438              script might me handy to indicate changes between the different
439              formular versions.
440            
441    2007-08-23 Sascha L. Teichmann <[email protected]>
442    
443            * tools/formed/formed/main.py: Add an 'all' mode to
444              select all modes. ;-)
445    
446  2007-08-22 Sascha L. Teichmann <[email protected]>  2007-08-22 Sascha L. Teichmann <[email protected]>
447    
448          * tools/formed/test-data/simple.xml,          * tools/formed/test-data/simple.xml,

Legend:
Removed from v.78  
changed lines
  Added in v.136

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26