/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

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

Legend:
Removed from v.69  
changed lines
  Added in v.101

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26