/[formed]/trunk/ChangeLog
ViewVC logotype

Annotation of /trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 403 - (hide annotations)
Mon Oct 4 16:19:17 2010 UTC (14 years, 4 months ago) by torsten
File size: 105907 byte(s)
Updated ChangeLog

1 torsten 403 2010-10-04 Torsten Irländer <[email protected]>
2    
3     * formed/formed/model/data.py (RuleLeaf.__init__): Added new attribute
4     "tag" for rule-leafs
5    
6 torsten 401 2010-09-30 Torsten Irländer <[email protected]>
7    
8     * formed/formed/plugins/export/rules_sh.py
9     (ExportRulesAsSH.doExport): Filter out duplicted rules.
10    
11 frank 399 2010-09-20 Frank Koormann <[email protected]>
12    
13     * formed/formed/plugins/export/latex.py (RecursiveExporter):
14     Add "required"-field information to output and include
15     choice list contents.
16    
17 bh 398 2010-09-16 Bernhard Herzog <[email protected]>
18    
19     Avoid database deadlocks that can happen when database clients try
20     to work with the same case using two separate database
21     connections. See mpuls/issue1145 for details.
22    
23     * formed/formed/plugins/export/rg_sql.py (SQL_TEMPLATE): Split the
24     computation of the new json structure description into the new
25     database function compute_case_structure
26     (TRIGGER_TMPL): Change the trigger functions to immediately update
27     the cached json structure description instead of just setting the
28     modified flag. This avoids the lazy recomputation that makes what
29     seems like a read-only access (calling get_case_structure) into a
30     writing access (updates of the cache). The writes lock the row in
31     the case_structure table which prevent other connections from
32     accessing the same case. As part of this, the delete triggers are
33     now AFTER triggers because the repeat groups instance must have
34     been removed when the structure is recomputed.
35     (SUBSELECT_TMPL): Since the delete trigger is now an after
36     trigger, we need to change the way the master id is computed. We
37     cannot join with the repeatgroup table in question because the row
38     has already been deleted. However, we can use the master_id
39     column of the OLD row to select the row of the parent table.
40     (create_triggers): Avoid the inner joins with the current repeat
41     group for the above mentioned reasons. In the very common case of
42     repeat groups which are direct children of the master_tbl, we can
43     compare the master_tbl.id directly with the row's master_id.
44    
45 roland 397 2010-09-14 Roland Geider <[email protected]>
46    
47     * formed/formed/plugins/export/xsd.py: issue1131: update XSD for new
48     formedtree structure
49    
50 roland 396 2010-09-01 Roland Geider <[email protected]>
51    
52     * formed/formed/plugins/modify/rules.py: issue1050: mandatory fields
53     appearing double.
54     The problem was that the way the formEditor handled fields with
55     manually created rules changed. Instead of ignoring fields (very
56     early behaviour) or always generating them (early behaviour), now the
57     formED will only ignore fields with rules which name starts with
58     'required-rule-manual'. This is helpful when the rules for mandatory
59     fields are more complex (e.g. mother's name is only required if
60     mother is known).
61    
62 torsten 393 2010-08-10 Torsten Irländer <[email protected]>
63    
64     * contrib/diff_formed.py: New helperscript to diff to given
65     formedtrees
66    
67 roland 386 2010-08-09 Roland Geider <[email protected]>
68    
69     * formed/model/exprtree.py: fixed typo
70    
71 bh 378 2010-08-04 Bernhard Herzog <[email protected]>
72    
73 bh 382 * formed/po/de_DE.po: Update translations
74    
75     2010-08-04 Bernhard Herzog <[email protected]>
76    
77 bh 381 * formed/po/formed.pot: Regenerated.
78    
79     * formed/po/de_DE.po: Update.
80    
81     2010-08-04 Bernhard Herzog <[email protected]>
82    
83 bh 380 * formed/po/Makefile: Use correct filename of the pot-file in the
84     usage message
85    
86     2010-08-04 Bernhard Herzog <[email protected]>
87    
88 bh 379 * formed/po/Makefile (LIST_POTFILES): Sort the file names to make
89     the order of entries in the .pot-file more predictable.
90    
91     2010-08-04 Bernhard Herzog <[email protected]>
92    
93 bh 378 * formed/formed/model/nodecomponents.py (RootNode.__init__)
94     (RootNode.getVersion, RootNode.setVersion): Add attribute
95     "version" and accessor methods.
96    
97     * formed/formed/main.py (MainFrame.OnSetDocumentVersion): New. Let
98     the user set the document version.
99     (MainFrame._createMenuBar): Add menu item for OnSetDocumentVersion
100    
101 bh 377 2010-08-02 Bernhard Herzog <[email protected]>
102    
103     * formed/formed.py, formed/formed/io/document.py,
104     formed/formed/io/factories.py, formed/formed/io/parser.py,
105     formed/formed/model/data.py, formed/formed/model/event.py,
106     formed/formed/model/expr.py, formed/formed/model/exprtree.py,
107     formed/formed/model/memory.py, formed/formed/model/misc.py,
108     formed/formed/model/nodecomponents.py,
109     formed/formed/model/persistent.py: Fix coding declaration to be
110     acceptable to both python and Emacs.
111    
112 torsten 374 2010-07-29 Torsten Irländer <[email protected]>
113    
114     * formed/formed/model/data.py: Added "invisible" attribute to
115     BoolLeafs. This can be used to hide options in choicelists. so the
116     user can not select the value in the user interface. But the db will
117     have this option so is ist still present in the db an can be used
118 torsten 376 * formed/formed/model/exprtree.py: Added "days" function.
119 torsten 374
120 roland 371 2010-07-26 Roland Geider <[email protected]>
121    
122     * formed/formed/model/nodecomponents.py,
123     formed/formed/plugins/modify/rules.py: generated date rules take
124     into consideration repeat groups
125    
126 torsten 369 2010-07-21 Torsten Irländer <[email protected]>
127    
128     Issue870
129    
130     * formed/formed/plugins/modify/rules.py (descriptions): Do not collect
131     all headers to the referenced fields. Only list labels of the error
132     fields, which should be distinct enough.
133    
134 torsten 370 Issue851
135    
136     * formed/formed/model/data.py
137     formed/formed/plugins/export/new_sql.py
138     formed/formed/plugins/web/view_renderer.py
139     formed/formed/io/document.py
140     formed/formed/config.py: Added Float-Field to Formed
141    
142 bh 366 2010-06-11 Bernhard Herzog <[email protected]>
143    
144     * formed/formed/plugins/export/rg_sql.py
145     (CREATE_DELETE_MASTER_TMPL): In create_master_tbl, call
146     create_master_ds to create the master tbl entry. This way we can
147     add SQL code that's specific to an MPuls instance to
148     create_master_ds and still have create_master_tbl use that new
149     code. This is useful for e.g. the JMD-Struktur part.
150    
151 roland 365 2010-06-02 Roland Geider <[email protected]>
152    
153 roland 367 * formed/formed/plugins/modify/rules.py: make the names of generated
154     date-sequence-rules unique
155    
156     2010-06-02 Roland Geider <[email protected]>
157    
158 roland 365 * formed/plugins/export/xls.py: updated regular expression
159    
160 frank 363 2010-05-17 Frank Koormann <[email protected]>
161    
162     * formed/formed/plugins/export/latex.py: Improved section labeling.
163    
164 frank 364 * formed/formed/plugins/export/xls.py:
165     Export references (ie where are the lists used).
166    
167 torsten 361 2010-04-30 Torsten Irländer <[email protected]>
168    
169     * formed/formed/plugins/modify/rules.py (VariableType.substitute): Do
170     not generate "%"-rules for required fields in repeat-groups.
171    
172 roland 357 2010-04-28 Roland Geider <[email protected]>
173    
174     * formed/plugins/export/xls.py: Radiogroups are exported
175 frank 363 * formed/plugins/export/xsd.py: WASKA formedtree.xml validates XSD
176     JMD formedtree.xml validates XSD
177    
178 torsten 356 2010-04-08 Torsten Irländer <[email protected]>
179    
180     * formed/formed/plugins/modify/rules.py
181     (GenerateRequiredRules.generateDateSequenceRules): Add error mark to
182     rules. Generete each rule twice to be able to render errors at both
183     datefields.
184    
185 torsten 354 2010-04-07 Torsten Irländer <[email protected]>
186    
187     * formed/formed/plugins/export/rg_sql.py: Added "Revision"-Tag.
188    
189 torsten 349 2010-04-06 Torsten Irländer <[email protected]>
190    
191     * formed/formed/io/document.py (_toXML): Added comment with
192     "$Revision"-tag. This tag will/can then be substituted by the VCS.
193     * formed/formed/plugins/export/new_sql.py
194     (ExportAsSQLFilter.doExport): Added comment with
195     "$Revision"-tag. This tag will/can then be substituted by the VCS.
196 torsten 352 * formed/formed/model/exprtree.py: Added years operator.
197 torsten 349
198 roland 346 2010-03-30 Roland Geider <[email protected]>
199    
200     * formed/formed/plugins/export/latex.py: Added filter
201    
202     2010-03-25 Roland Geider <[email protected]>
203    
204     * formed/formed/plugins/export/xsd.py: Generate valid XML
205    
206 frank 344 2010-02-11 Frank Koormann <[email protected]>
207    
208     * formed/formed/plugins/export/xls.py: Allow groups in choices.
209    
210 torsten 343 2009-12-02 Torsten Irländer <[email protected]>
211    
212     * formed/formed/plugins/export/typemap.py: do not ignore conditional
213     nodes on traversal.
214    
215 teichmann 342 2009-11-17 Sascha L. Teichmann <[email protected]>
216    
217     * formed/formed/model/exprtree.py: Recognize '%' vars
218     in compilation. Does not eval it!
219    
220     * formed/formed/plugins/modify/rules.py: Generate '%' vars
221     for variables in repeat groups.
222    
223 teichmann 341 2009-11-13 Sascha L. Teichmann <[email protected]>
224    
225     * formed/formed/plugins/export/typemap.py: Fixed to work
226     with new repeat group nodes.
227    
228 teichmann 340 2009-10-28 Sascha L. Teichmann <[email protected]>
229    
230     * formed/formed/plugins/export/xsd.py,
231     formed/formed/plugins/export/sql.py,
232     formed/formed/plugins/export/new_sql.py: Allow groups in choices.
233    
234 frank 339 2009-10-07 Frank Koormann <[email protected]>
235    
236     * formed/formed/plugins/export/latex.py:
237     Adjusted textprocessing to escape tex-active characters.
238    
239 teichmann 338 2009-10-07 Sascha L. Teichmann <[email protected]>
240    
241     * formed/formed/plugins/export/html.py, formed/formed/plugins/export/latex.py,
242     formed/formed/plugins/export/html2.py: Adjusted to cope with
243     "semi-complete" implementation of logbook tree structure.
244    
245 torsten 336 2009-06-18 Torsten Irländer <[email protected]>
246    
247 torsten 337 * formed/formed/plugins/export/new_sql.py,
248     formed/formed/plugins/export/rg_sql.py: Fixed some sql errors, and
249     added permissions.
250    
251     2009-06-18 Torsten Irländer <[email protected]>
252    
253 torsten 336 * formed/formed/plugins/export/new_sql.py: Commented out generation of
254     page_views, as they do not work with rgroups.
255    
256 torsten 335 2009-06-17 Torsten Irländer <[email protected]>
257    
258     * formed/formed/plugins/export/new_sql.py: Fixed anonymize function
259     and rolenames.
260    
261 teichmann 334 2009-06-17 Sascha L. Teichmann <[email protected]>
262    
263     * formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names.
264    
265 teichmann 332 2009-05-26 Sascha L. Teichmann <[email protected]>
266    
267 teichmann 333 * formed/formed/plugins/names/filter.py: small optimization.
268    
269     2009-05-26 Sascha L. Teichmann <[email protected]>
270    
271 teichmann 332 * formed/formed/plugins/names/filter.py: Repaired unique filter for
272     nodecomponent names.
273    
274 teichmann 331 2009-05-06 Sascha L. Teichmann <[email protected]>
275    
276     * formed/formed/plugins/export/rg_sql.py: Only create depending
277     repeat groups if no uuid is given. If a uuid is given then
278     the creation is triggered by an xml import.
279    
280 teichmann 329 2009-04-28 Sascha L. Teichmann <[email protected]>
281 teichmann 327
282 teichmann 330 * formed/formed/plugins/export/new_sql.py: New SQL schema generator to
283     replace the old one. The new one faciliates the new RepeatNode instead
284     of the Group.isRepeat() method to tell if something is to be repeated.
285    
286     * formed/formed/config.py: Use new SQL schema generator plug-in by default.
287     The old one is deactivated.
288    
289     * formed/formed/plugins/export/rg_sql.py: Fix 'rg_' naming of repeat groups.
290    
291     2009-04-28 Sascha L. Teichmann <[email protected]>
292    
293 teichmann 329 * formed/formed/plugins/export/rg_sql.py: Added delete functions.
294     TODO: Adjust execution rights.
295    
296     2009-04-27 Sascha L. Teichmann <[email protected]>
297    
298 teichmann 328 * formed/formed/plugins/export/rg_sql.py: Fixed $$$$ -> $$ template problems.
299     Add functions to create dataset.
300    
301     2009-04-24 Sascha L. Teichmann <[email protected]>
302    
303 teichmann 327 * formed/formed/plugins/export/rg_sql.py: new plug-in to generate
304     tree structure functions in database.
305    
306     * formed/formed/config.py: load plug-in.
307    
308 teichmann 325 2009-04-16 Sascha L. Teichmann <[email protected]>
309    
310 teichmann 326 * formed/formed/model/data.py: Added 'digest' attribute to
311     RepeatNode. Removed needless methods
312 torsten 335
313     2009-04-16 Sascha L. Teichmann <[email protected]>
314    
315     * formed/formed/model/exprtree.py: make 'equal' and 'not equal'
316     more readable with '=' and '<>'.
317    
318     2009-04-02 Sascha L. Teichmann <[email protected]>
319    
320     * formed/formed/plugins/export/sql.py: call anonymization
321     of uuid on anonymization of case.
322    
323     2009-03-31 Sascha L. Teichmann <[email protected]>
324    
325     * formed/formed/plugins/export/sql.py: Set uuid_id to NULL in
326     case_anonymize().
327    
328     2009-03-31 Sascha L. Teichmann <[email protected]>
329    
330     * formed/formed/model/exprtree.py: Add some code to pretty print
331     the trees infix.
332    
333     * formed/formed/plugins/export/rules.py: New. Exporter for human
334     readable rules.
335    
336     * formed/formed/plugins/export/html.py: Fixed HTML generation.
337    
338     * formed/formed/config.py: Added new new Rule export plug-in.
339    
340     2009-03-31 Sascha L. Teichmann <[email protected]>
341    
342     * formed/formed/model/exprtree.py: Fixes from server. Raise
343     exceptions if there is less or more than one element on stack
344     after compilation of expression.
345    
346     2009-03-20 Sascha L. Teichmann <[email protected]>
347    
348     * formed/formed/model/data.py: Removed debug output
349    
350     * formed/formed/plugins/modify/rules.py: Fixed error message.
351     Generate past and future rules.
352    
353     2009-03-16 Sascha L. Teichmann <[email protected]>
354    
355     * formed/formed/model/exprtree.py: Forget to call today with context.
356    
357     2009-03-16 Sascha L. Teichmann <[email protected]>
358    
359     * formed/formed/io/document.py: Fixed syntax typo.
360    
361     2009-03-16 Sascha L. Teichmann <[email protected]>
362    
363     * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
364    
365     2009-03-16 Sascha L. Teichmann <[email protected]>
366    
367     * formed/formed/model/data.py: Added ConditionalNode
368    
369     * formed/formed/io/document.py: Make ConditionalNode loadable.
370    
371     2009-03-13 Sascha L. Teichmann <[email protected]>
372    
373     * formed/formed/plugins/modify/rules.py: Make the error descriptions
374     in date sequence rules more precise.
375    
376     2009-03-13 Sascha L. Teichmann <[email protected]>
377    
378     * formed/formed/plugins/modify/rules.py: generate date sequence rules.
379    
380     2009-03-13 Sascha L. Teichmann <[email protected]>
381    
382     * formed/formed/model/exprtree.py: New tree based expression engine.
383    
384     * formed/formed/model/__init__.py, formed/formed/model/data.py:
385     Adjusted imports.
386    
387     2009-03-12 Torsten Irländer <[email protected]>
388     2009-06-17 Sascha L. Teichmann <[email protected]>
389    
390     * formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names.
391    
392     2009-05-26 Sascha L. Teichmann <[email protected]>
393    
394     * formed/formed/plugins/names/filter.py: small optimization.
395    
396     2009-05-26 Sascha L. Teichmann <[email protected]>
397    
398     * formed/formed/plugins/names/filter.py: Repaired unique filter for
399     nodecomponent names.
400    
401     2009-05-06 Sascha L. Teichmann <[email protected]>
402    
403     * formed/formed/plugins/export/rg_sql.py: Only create depending
404     repeat groups if no uuid is given. If a uuid is given then
405     the creation is triggered by an xml import.
406    
407     2009-04-28 Sascha L. Teichmann <[email protected]>
408    
409     * formed/formed/plugins/export/new_sql.py: New SQL schema generator to
410     replace the old one. The new one faciliates the new RepeatNode instead
411     of the Group.isRepeat() method to tell if something is to be repeated.
412    
413     * formed/formed/config.py: Use new SQL schema generator plug-in by default.
414     The old one is deactivated.
415    
416     * formed/formed/plugins/export/rg_sql.py: Fix 'rg_' naming of repeat groups.
417    
418     2009-04-28 Sascha L. Teichmann <[email protected]>
419    
420     * formed/formed/plugins/export/rg_sql.py: Added delete functions.
421     TODO: Adjust execution rights.
422    
423     2009-04-27 Sascha L. Teichmann <[email protected]>
424    
425     * formed/formed/plugins/export/rg_sql.py: Fixed $$$$ -> $$ template problems.
426     Add functions to create dataset.
427    
428     2009-04-24 Sascha L. Teichmann <[email protected]>
429    
430     * formed/formed/plugins/export/rg_sql.py: new plug-in to generate
431     tree structure functions in database.
432    
433     * formed/formed/config.py: load plug-in.
434    
435     2009-04-16 Sascha L. Teichmann <[email protected]>
436    
437     * formed/formed/model/data.py: Added 'digest' attribute to
438     RepeatNode. Removed needless methods
439    
440     2009-04-16 Sascha L. Teichmann <[email protected]>
441    
442     * formed/formed/model/exprtree.py: make 'equal' and 'not equal'
443     more readable with '=' and '<>'.
444    
445     2009-04-02 Sascha L. Teichmann <[email protected]>
446    
447     * formed/formed/plugins/export/sql.py: call anonymization
448     of uuid on anonymization of case.
449    
450     2009-03-31 Sascha L. Teichmann <[email protected]>
451    
452     * formed/formed/plugins/export/sql.py: Set uuid_id to NULL in
453     case_anonymize().
454    
455     2009-03-31 Sascha L. Teichmann <[email protected]>
456    
457     * formed/formed/model/exprtree.py: Add some code to pretty print
458     the trees infix.
459    
460     * formed/formed/plugins/export/rules.py: New. Exporter for human
461     readable rules.
462    
463     * formed/formed/plugins/export/html.py: Fixed HTML generation.
464    
465     * formed/formed/config.py: Added new new Rule export plug-in.
466    
467     2009-03-31 Sascha L. Teichmann <[email protected]>
468    
469     * formed/formed/model/exprtree.py: Fixes from server. Raise
470     exceptions if there is less or more than one element on stack
471     after compilation of expression.
472    
473     2009-03-20 Sascha L. Teichmann <[email protected]>
474    
475     * formed/formed/model/data.py: Removed debug output
476    
477     * formed/formed/plugins/modify/rules.py: Fixed error message.
478     Generate past and future rules.
479    
480     2009-03-16 Sascha L. Teichmann <[email protected]>
481    
482     * formed/formed/model/exprtree.py: Forget to call today with context.
483    
484     2009-03-16 Sascha L. Teichmann <[email protected]>
485    
486     * formed/formed/io/document.py: Fixed syntax typo.
487    
488     2009-03-16 Sascha L. Teichmann <[email protected]>
489    
490     * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
491    
492     2009-03-16 Sascha L. Teichmann <[email protected]>
493    
494     * formed/formed/model/data.py: Added ConditionalNode
495    
496     * formed/formed/io/document.py: Make ConditionalNode loadable.
497    
498     2009-03-13 Sascha L. Teichmann <[email protected]>
499    
500     * formed/formed/plugins/modify/rules.py: Make the error descriptions
501     in date sequence rules more precise.
502    
503     2009-03-13 Sascha L. Teichmann <[email protected]>
504    
505     * formed/formed/plugins/modify/rules.py: generate date sequence rules.
506    
507     2009-03-13 Sascha L. Teichmann <[email protected]>
508    
509     * formed/formed/model/exprtree.py: New tree based expression engine.
510    
511     * formed/formed/model/__init__.py, formed/formed/model/data.py:
512     Adjusted imports.
513    
514     2009-03-12 Torsten Irländer <[email protected]>
515     2009-06-17 Sascha L. Teichmann <[email protected]>
516    
517     * formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names.
518    
519     2009-05-26 Sascha L. Teichmann <[email protected]>
520    
521     * formed/formed/plugins/names/filter.py: small optimization.
522    
523     2009-05-26 Sascha L. Teichmann <[email protected]>
524    
525     * formed/formed/plugins/names/filter.py: Repaired unique filter for
526     nodecomponent names.
527    
528     2009-05-06 Sascha L. Teichmann <[email protected]>
529    
530     * formed/formed/plugins/export/rg_sql.py: Only create depending
531     repeat groups if no uuid is given. If a uuid is given then
532     the creation is triggered by an xml import.
533    
534     2009-04-28 Sascha L. Teichmann <[email protected]>
535    
536     * formed/formed/plugins/export/new_sql.py: New SQL schema generator to
537     replace the old one. The new one faciliates the new RepeatNode instead
538     of the Group.isRepeat() method to tell if something is to be repeated.
539    
540     * formed/formed/config.py: Use new SQL schema generator plug-in by default.
541     The old one is deactivated.
542    
543     * formed/formed/plugins/export/rg_sql.py: Fix 'rg_' naming of repeat groups.
544    
545     2009-04-28 Sascha L. Teichmann <[email protected]>
546    
547     * formed/formed/plugins/export/rg_sql.py: Added delete functions.
548     TODO: Adjust execution rights.
549    
550     2009-04-27 Sascha L. Teichmann <[email protected]>
551    
552     * formed/formed/plugins/export/rg_sql.py: Fixed $$$$ -> $$ template problems.
553     Add functions to create dataset.
554    
555     2009-04-24 Sascha L. Teichmann <[email protected]>
556    
557     * formed/formed/plugins/export/rg_sql.py: new plug-in to generate
558     tree structure functions in database.
559    
560     * formed/formed/config.py: load plug-in.
561    
562     2009-04-16 Sascha L. Teichmann <[email protected]>
563    
564     * formed/formed/model/data.py: Added 'digest' attribute to
565     RepeatNode. Removed needless methods
566 teichmann 326
567     2009-04-16 Sascha L. Teichmann <[email protected]>
568    
569 teichmann 325 * formed/formed/model/exprtree.py: make 'equal' and 'not equal'
570     more readable with '=' and '<>'.
571    
572 teichmann 324 2009-04-02 Sascha L. Teichmann <[email protected]>
573    
574     * formed/formed/plugins/export/sql.py: call anonymization
575     of uuid on anonymization of case.
576    
577 teichmann 321 2009-03-31 Sascha L. Teichmann <[email protected]>
578    
579 teichmann 323 * formed/formed/plugins/export/sql.py: Set uuid_id to NULL in
580     case_anonymize().
581    
582     2009-03-31 Sascha L. Teichmann <[email protected]>
583    
584 teichmann 322 * formed/formed/model/exprtree.py: Add some code to pretty print
585     the trees infix.
586    
587     * formed/formed/plugins/export/rules.py: New. Exporter for human
588     readable rules.
589    
590     * formed/formed/plugins/export/html.py: Fixed HTML generation.
591    
592     * formed/formed/config.py: Added new new Rule export plug-in.
593    
594     2009-03-31 Sascha L. Teichmann <[email protected]>
595    
596 teichmann 321 * formed/formed/model/exprtree.py: Fixes from server. Raise
597     exceptions if there is less or more than one element on stack
598     after compilation of expression.
599    
600 teichmann 320 2009-03-20 Sascha L. Teichmann <[email protected]>
601    
602     * formed/formed/model/data.py: Removed debug output
603    
604     * formed/formed/plugins/modify/rules.py: Fixed error message.
605     Generate past and future rules.
606    
607 teichmann 316 2009-03-16 Sascha L. Teichmann <[email protected]>
608    
609 teichmann 319 * formed/formed/model/exprtree.py: Forget to call today with context.
610    
611     2009-03-16 Sascha L. Teichmann <[email protected]>
612    
613 teichmann 318 * formed/formed/io/document.py: Fixed syntax typo.
614    
615     2009-03-16 Sascha L. Teichmann <[email protected]>
616    
617 teichmann 317 * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
618    
619     2009-03-16 Sascha L. Teichmann <[email protected]>
620    
621 teichmann 316 * formed/formed/model/data.py: Added ConditionalNode
622    
623     * formed/formed/io/document.py: Make ConditionalNode loadable.
624    
625 teichmann 314 2009-03-13 Sascha L. Teichmann <[email protected]>
626 teichmann 313
627 teichmann 315 * formed/formed/plugins/modify/rules.py: Make the error descriptions
628     in date sequence rules more precise.
629    
630     2009-03-13 Sascha L. Teichmann <[email protected]>
631    
632 teichmann 314 * formed/formed/plugins/modify/rules.py: generate date sequence rules.
633    
634     2009-03-13 Sascha L. Teichmann <[email protected]>
635    
636 teichmann 313 * formed/formed/model/exprtree.py: New tree based expression engine.
637    
638     * formed/formed/model/__init__.py, formed/formed/model/data.py:
639     Adjusted imports.
640    
641 torsten 312 2009-03-12 Torsten Irländer <[email protected]>
642    
643     Introduced new order attribute for date fields
644    
645     * formed/formed/model/data.py: Order fields can be used to define to
646     ordering of datefields withing the document. Needed for automatic
647     generation of consistency rules.
648    
649 teichmann 311 2009-02-09 Sascha L. Teichmann <[email protected]>
650 teichmann 307
651 teichmann 311 * formed/formed/model/data.py: Allow pages to be 'invisible'.
652    
653     2009-02-09 Sascha L. Teichmann <[email protected]>
654    
655 teichmann 310 * formed/formed/plugins/export/sql.py: Fixed problem with
656     description reference tables of radio groups.
657    
658 teichmann 311 2009-02-09 Sascha L. Teichmann <[email protected]>
659 teichmann 310
660 teichmann 309 * formed/formed/plugins/export/sql.py: replace '-' in names
661     by '_'.
662    
663 teichmann 311 2009-02-09 Sascha L. Teichmann <[email protected]>
664 teichmann 309
665 teichmann 308 * formed/formed/plugins/export/sql.py: to figure ou which
666     tables are equal the insert statememnts are lower cased
667     and sorted before they are compared. This reduces the number
668     of generated referfence tables.
669    
670 teichmann 311 2009-02-09 Sascha L. Teichmann <[email protected]>
671 teichmann 308
672 teichmann 307 Repair SQL schema creation for radio groups.
673    
674     * formed/formed/plugins/export/sql.py: radio groups are handled
675     like choices now.
676    
677 teichmann 311 2009-02-09 Sascha L. Teichmann <[email protected]>
678 teichmann 307
679     Make it startable again.
680    
681     * formed/formed/plugins/export/xls.py: Import pyExcelerator only
682     when plug-in is called.
683    
684     * formed/formed/model/nodecomponents.py: Event routing was messed up.
685     Rewired root node with document.
686    
687     * formed/formed/plugins/web/help.py: Removed old xml.ext import.
688     XXX: This breaks creating help by now!
689    
690     * formed/formed/io/parser.py: Replace old deprecated base class
691     by new one.
692    
693     * formed/formed/main.py: Do not crash if locale cannot be set.
694    
695     * formed/formed/ui/controls.py: Use document.getCase() instead
696     of document.case to prevent uninitialized dereferences.
697    
698 torsten 305 2009-01-22 Torsten Irländer <[email protected]>
699    
700     Implemented new XML-Format for formed xml files.
701    
702     * formed/formed/model/nodecomponents.py,
703     formed/formed/io/document.py,
704     formed/formed/main.py,
705     formed/formed/ui/controls.py: Introduced new "case" and "logbook"
706     node. Under case is the definition of the formular. logbook will
707     hold the defintion of logboog entrys. For now only the part under
708     "case" can be modified.
709    
710 torsten 304 2009-01-21 Torsten Irländer <[email protected]>
711    
712     Changed way how XSD-Scheme is generated
713    
714     * formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support
715     logbookentrys. The scheme definiton is now hardcoded in the
716     exporter as it will rarely change. It logbookpart will not be
717     generated from the formedtree anymore.
718    
719     2009-01-20 Torsten Irländer <[email protected]>
720    
721     Support Logbook entrys in xsd schema export
722    
723     * formed/formed/model/data.py: Repeatnode are now handeld as
724     repeatgroups in xsd-export
725     * formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support
726     logbookentrys. The scheme will now validate against an xmlfile from
727     the offlineclient.
728    
729 torsten 302 2009-01-09 Torsten Irländer <[email protected]>
730    
731     Added new repeat node
732    
733     * formed/formed/model/data.py,
734     formed/formed/io/document.py: Added repeatnode to the formedtree.
735     TODO: Remove repeatgroup handling from the groupnode.
736    
737 torsten 301 2009-01-08 Torsten Irländer <[email protected]>
738    
739     Add isset operator to autogenerated rules.
740    
741     * formed/formed/plugins/modify/rules.py: Add issed operator to standard
742     autogenerated rules.
743    
744 frank 300 2008-12-17 Frank Koormann <[email protected]>
745    
746     * formed/formed/plugins/export/latex.py: Export form as set of
747     latex tables to be included into a master document. The export
748     generates section marks to structure the form and placeholders for
749     help texts to be merged in by a post processing step.
750    
751 teichmann 299 2008-12-04 Sascha L. Teichmann <[email protected]>
752    
753     * formed/formed/model/expr.py: Added 'today' which pushes the current date
754     on the stack.
755    
756 teichmann 298 2008-12-03 Sascha L. Teichmann <[email protected]>
757    
758     * formed/formed/plugins/web/controllers.py: compute changeset more correctly in
759     storage of fields.
760    
761     * formed/formed/plugins/export/xsd.py: Added unknown int -999999 to integer
762     fields as an accepted value. Generate schema for radio groups too.
763    
764 torsten 297 2008-12-01 Torsten Irländer <[email protected]>
765    
766     Added autmatic generation of required rules
767    
768     * formed/formed/model/data.py,
769     formed/formed/model/expr.py,
770     formed/formed/plugins/modify/rules.py: Default rules for required
771     fields can now be generated.
772    
773 teichmann 296 2008-11-28 Sascha L. Teichmann <[email protected]>
774    
775     * formed/formed/model/data.py, formed/formed/model/nodecomponents.py:
776     Ported WidgetCollector from Offline client.
777    
778     * formed/formed/plugins/modify/__init__.py, formed/formed/plugins/modify,
779     formed/formed/plugins/modify/rules.py: Stub for required rules generator.
780    
781     * formed/formed/config.py: Bind new filter to FormEd
782    
783 torsten 295 2008-11-27 Torsten Irländer <[email protected]>
784    
785     * formed/formed/model/data.py: Added new attribute mark for rules
786    
787 torsten 294 2008-11-10 Torsten Irländer <[email protected]>
788    
789     Implemented radio-matrix elements. radio elelement having the same
790     options can now be rendered in table form.
791    
792     * formed/formed/model/data.py,
793     formed/formed/io/document.py: Added new radio-matrix element to the
794     model and gui
795     * formed/formed/plugins/web/view_renderer.py: Write html-renderer for
796     the radio-matrix element.
797    
798 torsten 293 2008-11.03 Torsten Irländer <[email protected]>
799    
800     * formed/formed/model/data.py: Fixed import error
801    
802 teichmann 292 2008-10-29 Sascha L. Teichmann <[email protected]>
803    
804     Relative paths in external choices are now possible. Relative paths are
805     relative to path of the master document.
806    
807     * formed/model/data.py: external choice are now storing the path to the
808     master document.
809    
810     * formed/formed/io/document.py: Pass context to SAX builder.
811    
812     * formed/formed/io/factories.py: For new created nodes look if there
813     is a method 'setLoadContext' and call it.
814    
815 teichmann 291 2008-09-04 Sascha L. Teichmann <[email protected]>
816    
817     * doc/beschreibung.txt: New. Initial description of FormEd (german).
818    
819 teichmann 290 2008-08-22 Sascha L. Teichmann <[email protected]>
820    
821     * formed/formed/model/nodecomponents.py: Added attribute 'flags'.
822    
823 teichmann 289 2008-08-21 Sascha L. Teichmann <[email protected]>
824    
825     * formed/formed/io/document.py: Indent tree while saving
826     * formed/formed/main.py: removed needless print
827    
828 teichmann 284 2008-08-15 Sascha L. Teichmann <[email protected]>
829 teichmann 281
830 teichmann 288 * LICENSE: New GPLv3
831     * */*.py, *.sh: Added reference to LICENSE
832    
833     2008-08-15 Sascha L. Teichmann <[email protected]>
834    
835 teichmann 287 * tools: removed because there a no tools any more.
836    
837     2008-08-15 Sascha L. Teichmann <[email protected]>
838    
839 teichmann 286 * tools/formed: moved one level up because its the only
840     part of this project now.
841    
842     2008-08-15 Sascha L. Teichmann <[email protected]>
843    
844 teichmann 285 * tools/anonym/*: Removed as it belongs to mpuls WASKA
845    
846     2008-08-15 Sascha L. Teichmann <[email protected]>
847    
848 teichmann 284 * pdf2xfa/*: removed. It belongs to mpuls
849    
850     2008-08-13 L. Teichmann <[email protected]>
851    
852 teichmann 283 i18n of the plug-ins:
853     * tools/formed/formed/plugins/export/diff.py,
854     tools/formed/formed/plugins/export/data.py,
855     tools/formed/formed/plugins/export/old_sql.py,
856     tools/formed/formed/plugins/export/latex.py,
857     tools/formed/formed/plugins/export/xsd.py,
858     tools/formed/formed/plugins/export/sql.py,
859     tools/formed/formed/plugins/export/typemap.py,
860     tools/formed/formed/plugins/export/html.py,
861     tools/formed/formed/plugins/export/mode.py,
862     tools/formed/formed/plugins/export/html2.py,
863     tools/formed/formed/plugins/export/xls.py,
864     tools/formed/formed/plugins/names/filter.py,
865     tools/formed/formed/plugins/plugin.py,
866     tools/formed/formed/plugins/web/help.py,
867     tools/formed/formed/plugins/web/form_renderer.py,
868     tools/formed/formed/plugins/web/plugin.py,
869     tools/formed/formed/plugins/web/error_renderer.py,
870     tools/formed/formed/plugins/web/view_renderer.py,
871     tools/formed/formed/plugins/web/semantic.py,
872     tools/formed/formed/plugins/web/cache.py,
873     tools/formed/formed/plugins/web/server.py,
874     tools/formed/formed/plugins/web/controllers.py,
875     tools/formed/formed/plugins/web/renderer.py,
876     tools/formed/formed/plugins/ui/controls.py,
877     tools/formed/formed/config.py: _("")s the stuff
878     tools/formed/po/formed.pot, tools/formed/po/de_DE.po:
879     extracted and translated.
880    
881     2008-08-08 Sascha L. Teichmann <[email protected]>
882    
883 teichmann 282 First version of FormEd i18n. After checkout go to tools/formed/po/ and
884     say 'make mo'. Afterwards you can start FormEd as usual.
885    
886     * tools/formed/resources: New. Place to places ressources like *.mo files
887     * tools/formed/formed/main.py, tools/formed/formed/ui/controls.py: Add _("")s
888    
889     * tools/formed/po,
890     tools/formed/po/Makefile,
891     tools/formed/po/formed.pot,
892     tools/formed/po/de_DE.po: i18n stuff.
893    
894     2008-08-08 Sascha L. Teichmann <[email protected]>
895    
896 teichmann 281 * tools/anonym/xmlexport.py: Only export cases which are not
897     'schwebend geloescht'.
898    
899 teichmann 280 2008-07-23 Sascha L. Teichmann <[email protected]>
900    
901     Fixed issue472
902    
903     * tools/anonym/xmlimport.py: Regenerate dicts from current form ed tree.
904    
905 teichmann 279 2008-07-17 Sascha L. Teichmann <[email protected]>
906    
907     * tools/anonym/xmlimport.py: removed marking of invalid cases
908     * tools/anonym/cron.importAnonXml.sh: re-inserted here.
909    
910 torsten 278 2008-07.07 Torsten Irländer <[email protected]>
911    
912     * tools/formed/formed/plugins/export/latex.py
913     tools/formed/formed/config.py: Added new LaTex Export. Beware this
914     is even more ugly the HTML Export.
915     * tools/formed/formed/plugins/export/html.py: Added information on
916     anonymisation to the html export.
917    
918 teichmann 275 2008-07-07 Sascha L. Teichmann <[email protected]>
919    
920 teichmann 276 * tools/anonym/xmlimport.py: Mark cases if they are inconsistent.
921    
922     2008-07-07 Sascha L. Teichmann <[email protected]>
923    
924 teichmann 275 * tools/anonym/xmlimport.py: Updated to schema 1.5. (Which is incompatible to 1.4)
925    
926 teichmann 274 2008-07-07 Sascha L. Teichmann <[email protected]>
927 torsten 277
928     * tools/formed/formed/plugins/export/html.py: Added additional column
929     to the html export with information how each field will get
930     anonymized.
931 teichmann 274
932 torsten 277 2008-07-07 Sascha L. Teichmann <[email protected]>
933    
934 teichmann 274 * tools/anonym/xmlimport.py: sync with productive version.
935    
936 torsten 272 2008-06-10 Torsten Irländer <[email protected]>
937    
938     * tools/formed/formed/plugins/export/sql.py: grant admin permission to
939     call anonymize function
940    
941 frank 271 2008-05-21 Sascha L. Teichmann <[email protected]>
942 teichmann 270
943     * tools/formed/formed/plugins/export/xsd.py: Brought encoding
944     back to UTF-8.
945    
946 frank 271 2008-05-21 Frank Koormann <[email protected]>
947 frank 269
948 frank 271 * tools/formed/formed/plugins/export/xls.py: New, export key value
949     tables as excel workbook with one sheet per table.
950    
951     * tools/formed/formed/config.py: ExportKeyValueTableAsXLS added.
952    
953     2008-05-21 Frank Koormann <[email protected]>
954    
955 frank 269 * tools/formed/formed/plugins/export/xsd.py
956     (SchemaCreator._createChoice): Fix use of choices name.
957    
958 teichmann 264 2008-04-29 Sascha L. Teichmann <[email protected]>
959    
960 teichmann 268 * tools/formed/formed/plugins/export/xsd.py: Use substitution group
961     to allow arbitrary order of repeat groups.
962    
963     2008-04-29 Sascha L. Teichmann <[email protected]>
964    
965 teichmann 267 * tools/formed/formed/plugins/export/xsd.py: Removed a needless
966     character.
967    
968     2008-04-29 Sascha L. Teichmann <[email protected]>
969    
970 teichmann 266 * tools/formed/formed/plugins/export/xsd.py: Added annotations
971     to fields.
972    
973     2008-04-29 Sascha L. Teichmann <[email protected]>
974    
975 teichmann 265 * tools/formed/formed/plugins/export/xsd.py: Added for
976     choice fields.
977    
978     2008-04-29 Sascha L. Teichmann <[email protected]>
979    
980 teichmann 264 * tools/formed/formed/plugins/export/xsd.py: Added support for
981     boolean fields based on enumerations.
982    
983 teichmann 261 2008-04-28 Sascha L. Teichmann <[email protected]>
984    
985 teichmann 262 * tools/formed/formed/plugins/export/xsd.py: Added support for
986 teichmann 263 date, text and textarea fields.
987    
988     2008-04-28 Sascha L. Teichmann <[email protected]>
989    
990     * tools/formed/formed/plugins/export/xsd.py: Added support for
991 teichmann 262 repeat groups and integer fields.
992    
993     2008-04-28 Sascha L. Teichmann <[email protected]>
994    
995 teichmann 261 * tools/formed/formed/plugins/export/xsd.py: New. plug-in for
996     exporting as XML schema. not ready, yet.
997    
998     * tools/formed/formed/config.py: Use new plug-in.
999    
1000     * tools/formed/formed/plugins/export/sql.py: Fixed wrong GUI text.
1001    
1002 torsten 260 2008-04-17 Torsten Irländer <[email protected]>
1003    
1004     * tools/formed/formed/plugins/export/sql.py: Changed WHERE clause in
1005     for the views because of the new group permissions.
1006    
1007 teichmann 259 2008-04-09 Sascha L. Teichmann <[email protected]>
1008    
1009     * tools/anonym/cron.deleteOldAnonymized.sh: New. cron job to delete
1010     old anonymized cases.
1011    
1012 teichmann 258 2008-04-01 Sascha L. Teichmann <[email protected]>
1013    
1014     * tools/anonym/xmlexport.py: Removed "WHERE einverstaendniserklaerung = 1"
1015     from clause to select datasets.
1016     Replace ']]>' in CDATA sections with correct splitted replacement.
1017    
1018 teichmann 256 2008-03-12 Sascha L. Teichmann <[email protected]>
1019 torsten 257
1020     * tools/anonym/cron.importAnonXml.sh: Added absolut path to xmlimport
1021     script.
1022 teichmann 256
1023 torsten 257 * tools/anonym/xmlimport.py: commented out database port from
1024     connectionstring.
1025    
1026     2008-03-12 Sascha L. Teichmann <[email protected]>
1027    
1028 teichmann 256 * tools/formed/formed/plugins/export/sql.py: Fixed bug in generation
1029     of anonymization of repeat groups (wrong id was given).
1030    
1031 teichmann 252 2008-03-11 Sascha L. Teichmann <[email protected]>
1032    
1033 teichmann 255 * tools/formed/formed/plugins/export/sql.py: Generate no update
1034     statements for relations which have no anonym functions applied.
1035    
1036     2008-03-11 Sascha L. Teichmann <[email protected]>
1037    
1038 teichmann 254 * tools/formed/formed/plugins/export/sql.py: Added a newline after
1039     'COMMIT;' in the last line.
1040    
1041     2008-03-11 Sascha L. Teichmann <[email protected]>
1042    
1043 teichmann 253 * tools/formed/formed/plugins/export/sql.py: Fixed syntax of
1044     generated anonymize_case() function.
1045    
1046     2008-03-11 Sascha L. Teichmann <[email protected]>
1047    
1048 teichmann 252 * tools/formed/formed/plugins/export/sql.py: Added code to
1049     generate a plpgsql function anonymize_case() that anonymized
1050     a given case and all of its depending repeat groups.
1051    
1052 teichmann 251 2008-03-06 Sascha L. Teichmann <[email protected]>
1053    
1054     * tools/anonym/xmlimport.py: remove print of insert statement.
1055    
1056     * tools/formed/formed/plugins/export/sql.py: Print generation date in ISO.
1057    
1058 torsten 247 2008-03-03 Torsten Irländer <[email protected]>
1059    
1060     * anonym/cron.sendAnonXml.sh,
1061     anonym/getDbList.sh: Modified script to be used directly in the
1062     production environment (Copied running scripts from production
1063     server)
1064    
1065 torsten 257 * cron.importAnonXml.sh: Added deleting of ols cases. Modified script
1066     to be used in a production environment (Cpoied running script from
1067     production server)
1068    
1069     * tools/anonym/xmlexport.py: Added "WHERE" clause to SQL-Statement to
1070     ensure that only valid cases get exported
1071    
1072 teichmann 242 2008-02-27 Sascha L. Teichmann <[email protected]>
1073 teichmann 244
1074 teichmann 245 * tools/anonym/xmlimport.py: Fixed bug in date converter.
1075    
1076     2008-02-27 Sascha L. Teichmann <[email protected]>
1077    
1078 teichmann 244 * tools/anonym/xmlimport.py: Simpilied version
1079    
1080     2008-02-27 Sascha L. Teichmann <[email protected]>
1081    
1082 teichmann 242 * tools/anonym/cron.importAnonXml.sh: Add sudo call for
1083     xmlimport.py and parameters.
1084    
1085     * tools/anonym/xmlimport.py: Various bug fixes. Not working yet. :-/
1086    
1087     * tools/anonym/xmlexport.py: Use python interpreter without env
1088     because of sudo context.
1089    
1090 teichmann 240 2008-02-26 Sascha L. Teichmann <[email protected]>
1091    
1092 teichmann 241 * tools/anonym/xmlimport.py: added support for getopt. add
1093     support to force in fkz in import of case.
1094    
1095     2008-02-26 Sascha L. Teichmann <[email protected]>
1096    
1097 teichmann 240 * tools/anonym/xmlimport.py: Implemented logic to create/update cases.
1098    
1099     * tools/anonym/html.awk: produces valid HTML.
1100    
1101 teichmann 239 2008-02-25 Sascha L. Teichmann <[email protected]>
1102    
1103     * tools/anonym/joincsv.py: Fix a logic bug.
1104    
1105 teichmann 238 2008-02-25 Torsten Irlaender <[email protected]>
1106 torsten 237
1107     * tools/anonym/cron.importAnonXml.sh: Added shellscript for importing
1108     exportted cases. It will read all files from a directory and import
1109     the files into the DB. After that the script will cleanup the
1110     directory.
1111    
1112 torsten 247 2008-02-25 Torsten Irländer <[email protected]>
1113    
1114     * tools/anonym/cron.sendAnonXml.sh,
1115     tools/anonym/xmlexport.py,
1116     tools/anonym/getDbList.sh: Added shell-scripts for exporting cases
1117    
1118 teichmann 233 2008-02-25 Sascha L. Teichmann <[email protected]>
1119    
1120 teichmann 238 * tools/anonym/joincsv.py: Fixed typo which generated wrong number of cols.
1121    
1122     2008-02-25 Sascha L. Teichmann <[email protected]>
1123    
1124 teichmann 236 * tools/anonym/joincsv.py: New. Joins CSV files.
1125    
1126     * tools/anonym/html.awk: New. Converts CSV to HTML
1127    
1128     2008-02-25 Sascha L. Teichmann <[email protected]>
1129    
1130 teichmann 234 * tools/anonym/xmlimport.py: New. Added generation of
1131     update statements.
1132    
1133     2008-02-25 Sascha L. Teichmann <[email protected]>
1134    
1135 teichmann 233 * tools/anonym/xmlimport.py: New. Base for importing
1136     XML from cron.
1137    
1138 teichmann 232 2008-02-24 Sascha L. Teichmann <[email protected]>
1139 teichmann 233
1140 teichmann 232 * tools/formed/formed/plugins/export/html2.py: New. plug-in
1141     for a simplified HTML output
1142    
1143     * tools/formed/formed/plugins/export/typemap.py: New. plug-in
1144     for dump schema as python dictionary.
1145    
1146     * tools/formed/formed/config.py: Enable new plug-ins. Out comment
1147     old stored procedure and view generators.
1148    
1149 teichmann 231 2008-02-19 Sascha L. Teichmann <[email protected]>
1150    
1151     * tools/anonym/xmlexport.py: New. Export all cases in database
1152     as XML.
1153    
1154 teichmann 230 2008-02-18 Sascha L. Teichmann <[email protected]>
1155    
1156     * tools/anonym/anoymncsv.py: separate field with '\t' now.
1157     all '\t's are replaced by ' ' before. '\r\n' are removed too.
1158    
1159 teichmann 229 2008-02-15 Sascha L. Teichmann <[email protected]>
1160    
1161     * tools/anonym/anoymncsv.py: simple script to fetch anonymous
1162     data from database.
1163    
1164 teichmann 228 2008-02-14 Sascha L. Teichmann <[email protected]>
1165    
1166     * tools/formed/formed/plugins/export/sql.py: Exchanged name
1167     erase_value with suppress_value/suppress_value2.
1168    
1169 teichmann 224 2008-02-13 Sascha L. Teichmann <[email protected]>
1170    
1171 teichmann 226 * tools/formed/formed/plugins/export/sql.py: output id, master_id
1172 teichmann 227 substitute 'erase_value' with NULL value.
1173    
1174     2008-02-13 Sascha L. Teichmann <[email protected]>
1175    
1176     * tools/formed/formed/plugins/export/sql.py: output id, master_id
1177 teichmann 226 and uuid_id in anonymiziation views too.
1178    
1179     2008-02-13 Sascha L. Teichmann <[email protected]>
1180    
1181 teichmann 225 * tools/formed/formed/plugins/export/sql.py: Added generation
1182     of anonymiziation views for master table views and repeat group
1183     views.
1184    
1185     2008-02-13 Sascha L. Teichmann <[email protected]>
1186    
1187 teichmann 224 * tools/formed/formed/model/nodecomponents.py: Added attribute
1188     "function"
1189    
1190     * tools/formed/formed/io/document.py: Save attributes in
1191     alphabetical order.
1192    
1193 teichmann 223 2008-02-02 Sascha L. Teichmann <[email protected]>
1194    
1195     * tools/formed/formed/plugins/export/sql.py: Added update rule
1196     for master table and repeat groups views. Granted update right
1197     to :cm_ka_group.
1198    
1199 teichmann 222 2008-02-01 Sascha L. Teichmann <[email protected]>
1200    
1201     * tools/formed/formed/plugins/export/sql.py: Added a column 'uuid_id'
1202     for master table and repeat groups. Also added unique constraints
1203     to these columns.
1204    
1205 teichmann 221 2007-12-10 Sascha L. Teichmann <[email protected]>
1206    
1207     * pdf2xfa/src/de/intevation/pdfimport/ClientHandler.java: Added a system
1208     property 'root.element' to specify the name of the XML root.
1209    
1210     * pdf2xfa/startup/pdf2xfa.sh, pdf2xfa/README.TXT: Adjusted.
1211    
1212 teichmann 220 2007-11-22 Sascha L. Teichmann <[email protected]>
1213    
1214     * pdf2xfa/startup, */pdf2xfa.sh, */pdf2xfa.init: boot scripts
1215     for GNU/Linux (tested Debian 'Etch' 4.0) by Sascha Wilde.
1216    
1217     * pdf2xfa/README.TXT: Add a remark to new boot scripts.
1218    
1219 teichmann 219 2007-11-21 Sascha L. Teichmann <[email protected]>
1220    
1221     * pdf2xfa/src/de/intevation/pdfimport/Log.java: New.
1222     Sends logging to file.
1223    
1224     * pdf2xfa/src/de/intevation/pdfimport/Server.java,
1225     pdf2xfa/src/de/intevation/pdfimport/ClientHandler.java: Adjusted
1226     to use new logging.
1227    
1228     * pdf2xfa/README.TXT: Added remark how to use logging.
1229    
1230 frank 217 2007-11-16 Frank Koormann <[email protected]>
1231    
1232     * tools/formed/formed/plugins/export/sql.py (createSchema):
1233     Append only column "bearbeiter_id", standins are modelled by a
1234     separate table.
1235    
1236 teichmann 218 2007-11-16 Sascha L. Teichmann <[email protected]>
1237    
1238     * tools/formed/formed/model/data.py,
1239     tools/formed/formed/plugins/web/view_renderer.py:
1240     Added an invisible flag for info fields.
1241    
1242 teichmann 216 2007-11-07 Sascha L. Teichmann <[email protected]>
1243 teichmann 215
1244 teichmann 216 * tools/formed/formed/model/nodecomponents.py: Fixed a few small bugs
1245     (calling a wrong method).
1246    
1247     2007-11-07 Sascha L. Teichmann <[email protected]>
1248    
1249 teichmann 215 * tools/formed/formed/model/nodecomponents.py: Added a field
1250     'alternative' to all node components. This might be of help to
1251     match PDF imports where the descriptions do not match.
1252    
1253 frank 213 2007-10-23 Frank Koormann <[email protected]>
1254    
1255 frank 214 * tools/formed/formed/plugins/export/sql.py: New WHERE-Clause for views
1256    
1257     2007-10-23 Frank Koormann <[email protected]>
1258    
1259 frank 213 * tools/formed/formed/plugins/export/sql.py: Set default
1260     value (-1) for choices and bools.
1261    
1262 frank 211 2007-10-21 Frank Koormann <[email protected]>
1263 frank 212
1264     * tools/formed/formed/plugins/export/sql.py: Grant statements for
1265     descriptive tables added.
1266     (Table.getName): new
1267    
1268     2007-10-21 Frank Koormann <[email protected]>
1269    
1270 frank 211 * tools/formed/formed/plugins/export/sql.py: "CREATE OR REPLACE"
1271     statements for views and roles to make updates easier.
1272     Add "admin_ka" membership as third option to VIEW_WHERE_CLAUSE.
1273    
1274 frank 210 2007-10-19 Frank Koormann <[email protected]>
1275 frank 212
1276 frank 210 * tools/formed/formed/plugins/export/sql.py: Added GRANT statements
1277     for views. The statements are prepared for variable substitution
1278     when executing the SQL-scripts by psql.
1279    
1280 teichmann 209 2007-10-18 Sascha L. Teichmann <[email protected]>
1281    
1282     * pdf2xfa/src/de/intevation/pdfimport/ClientHandler.java: Fixed:
1283     End of result XML was truncated because of an unflushed buffer.
1284    
1285 teichmann 208 2007-10-17 Sascha L. Teichmann <[email protected]>
1286    
1287     * pdf2xfa/bin/build-jar.sh: New. Build production jar file.
1288    
1289     * pdf2xfa/README.TXT: Adjusted how to build production jar file
1290     and how to use it.
1291    
1292     * pdf2xfa/etc, pdf2xfa/etc/manifest.txt: New. Defines main class
1293     and iText dependency.
1294    
1295 teichmann 207 2007-10-16 Sascha L. Teichmann <[email protected]>
1296    
1297     * tools/formed/formed/plugins/export/sql.py: Model 'Ja, Nein, Keine Angabe'
1298     are not modeled as BOOLEANs any more. That simpifies the conversion
1299     process web vs. db.
1300    
1301 teichmann 202 2007-10-07 Sascha L. Teichmann <[email protected]>
1302    
1303 teichmann 206 * tools/formed/formed/plugins/export/sql.py: Added the remaining
1304     UPDATE rules.
1305    
1306     2007-10-07 Sascha L. Teichmann <[email protected]>
1307    
1308 teichmann 205 * tools/formed/formed/plugins/export/sql.py: Added UPDATE rules for some
1309     views. TODO: Test'em and implement the rest.
1310    
1311     2007-10-07 Sascha L. Teichmann <[email protected]>
1312    
1313 teichmann 204 * tools/formed/formed/plugins/export/sql.py: Bug fix. DELETE and INSERT
1314     rules referenced none existing views.
1315    
1316     2007-10-07 Sascha L. Teichmann <[email protected]>
1317    
1318 teichmann 203 * tools/formed/formed/plugins/export/sql.py: Added DELETE and INSERT
1319     rules for views. TODO: add UPDATE rules.
1320    
1321     2007-10-07 Sascha L. Teichmann <[email protected]>
1322    
1323 teichmann 202 * tools/formed/formed/plugins/export/old_sql.py: New. Contains
1324     the legacy SQL export filters.
1325    
1326     * tools/formed/formed/plugins/export/sql.py: Factored out the
1327     legacy SQL export filters to old_sql.
1328    
1329     * tools/formed/formed/config.py: Adjusted to fetch legacy
1330     filters from old_sql.
1331    
1332 teichmann 201 2007-10-06 Sascha L. Teichmann <[email protected]>
1333 teichmann 197
1334 teichmann 201 * pdf2xfa/**: Initial import of the PDF to XFA server.
1335    
1336     2007-10-06 Sascha L. Teichmann <[email protected]>
1337    
1338 teichmann 200 * tools/formed/formed/plugins/export/sql.py: Fixed bug
1339     that made choices of three elements to booleans if
1340     they have other meanings than 'Ja', 'Nein', 'keine Angabe'.
1341    
1342 teichmann 201 2007-10-05 Sascha L. Teichmann <[email protected]>
1343 teichmann 200
1344 teichmann 199 * tools/formed/formed/plugins/export/sql.py: Select ids of
1345     underlaying tables in views too.
1346    
1347     2007-10-04 Sascha L. Teichmann <[email protected]>
1348    
1349 teichmann 198 * tools/formed/formed/plugins/export/sql.py: Create schema inside transaction.
1350     Various bug fixes.
1351    
1352     2007-10-04 Sascha L. Teichmann <[email protected]>
1353    
1354 teichmann 197 * tools/formed/formed/model/data.py: Added GroupNode.allWidgets()
1355     to extract fields from embedded repeat groups.
1356    
1357     * tools/formed/formed/plugins/export/sql.py: The SQL exporter exports
1358     views per page too. Result not tested yet.
1359    
1360 teichmann 195 2007-10-01 Sascha L. Teichmann <[email protected]>
1361    
1362 teichmann 196 * tools/formed/formed/plugins/web/view_renderer.py: Ignore
1363     in-page repeat groups while rendering pages.
1364    
1365     2007-10-01 Sascha L. Teichmann <[email protected]>
1366    
1367 teichmann 195 * tools/formed/formed/model/nodecomponents.py: Added visitor
1368     traversals for document trees.
1369    
1370     * tools/formed/formed/model/data.py: Rewrote the
1371     Page.allWidgets() method to use new visitor for
1372     tree traversal.
1373    
1374 torsten 194 2007-09-27 Torsten Irlaender <[email protected]>
1375 teichmann 195
1376 torsten 194 * tools/formed/formed/plugins/names/filter.py: Pages are now included
1377     in the rename by formular name algorithm
1378    
1379 teichmann 192 2007-09-26 Sascha L. Teichmann <[email protected]>
1380    
1381 teichmann 193 * tools/formed/formed/model/data.py: Removed old {next|prev}Page()
1382     TODO: rewrite Page.allWidgets().
1383    
1384     * tools/formed/formed/model/nodecomponents.py: Added a method
1385     Node.firstLevel(criterion) to walk a defined line in the tree.
1386    
1387     * tools/formed/formed/plugins/export/sql.py: Extract data suitable to
1388     build views and respective joins.
1389    
1390     2007-09-26 Sascha L. Teichmann <[email protected]>
1391    
1392 teichmann 192 * tools/formed/formed/plugins/web/plugin.py: add 'web.tidy:' flag to
1393     FORMED environment variable. If set to true tidylib is used to
1394     filter HTML content to be W3C valid. To use this feature install
1395     uTidylib.
1396    
1397     * tools/formed/formed/plugins/web/server.py: Check if MIME type is
1398     text/html and filters content through tidy if requested.
1399    
1400 torsten 191 2007-09-25 Torsten Irlaender <[email protected]>
1401 teichmann 192
1402 torsten 191 * tools/formed/formed/plugins/web/view_renderer.py: Small fix and
1403     cleanup of the form generation code.
1404    
1405 teichmann 190 2007-09-21 Sascha L. Teichmann <[email protected]>
1406    
1407     * tools/formed/formed/plugins/export/sql.py: Added generation time
1408     and DROP TABLE statements to schema export.
1409    
1410 teichmann 188 2007-09-20 Sascha L. Teichmann <[email protected]>
1411    
1412 teichmann 189 * tools/formed/formed/plugins/export/sql.py: The tables are generated
1413     in correct topolocial order now.
1414    
1415     2007-09-20 Sascha L. Teichmann <[email protected]>
1416    
1417 teichmann 188 * tools/formed/formed/plugins/export/mode.py: New. Filter to export
1418     a document with items that are in given mode.
1419    
1420     * tools/formed/formed/model/nodecomponents.py: Added methods to clone
1421     trees depending on selected modes.
1422    
1423     * tools/formed/formed/model/data.py, tools/formed/formed/model/expr.py:
1424     Fixed clone issue with RuleNodes.
1425    
1426     * tools/formed/formed/config.py: Use new plug-in.
1427    
1428 teichmann 187 2007-09-17 Sascha L. Teichmann <[email protected]>
1429    
1430     * tools/formed/formed/plugins/web/view_renderer.py: Make the
1431     view renderer a real view renderer. It takes a list of
1432     items now and not only a single page.
1433    
1434     * tools/formed/formed/plugins/web/renderer.py: Feed a list
1435     of items to the view renderer.
1436    
1437 torsten 186 2007-09-17 Torsten Irlaender <[email protected]>
1438 teichmann 187
1439 torsten 186 * tools/formed/formed/plugins/web/view_renderer.py:
1440     Small tweaks in rendering bools.
1441     RadioNodes (with all its children) can now be placed in a container.
1442     The radiobools will not get a surrounding <div> anymore.
1443     I am not sure if the new way results in the wanted behaivor, but the
1444     rendering results are much better now :)
1445     Maybe we need a similar approach for checkboxes?
1446     Rendering groups is still broken in some way.
1447    
1448 teichmann 183 2007-09-17 Sascha L. Teichmann <[email protected]>
1449    
1450 teichmann 185 * tools/formed/formed/plugins/web/view_renderer.py: Fixed
1451     a few bugs: Do not render empty containers, do not
1452 teichmann 187 generate misplaced <br class="newline"> in choices.
1453     Add a nameless container to catch the items that are
1454     nor explicitly assigned to a target. Removed FormData.
1455 teichmann 185
1456     * tools/formed/formed/plugins/web/renderer.py: Removed
1457     a needless import
1458    
1459     2007-09-17 Sascha L. Teichmann <[email protected]>
1460    
1461 teichmann 184 * tools/formed/formed/plugins/web/view_renderer.py: Implemented
1462     usage of 'containers' and 'target' attributes.
1463    
1464     * tools/formed/formed/plugins/web/controllers.py: Modified import.
1465    
1466     * tools/formed/formed/plugins/web/renderer.py: Use
1467     new ViewRenderer.
1468    
1469     2007-09-17 Sascha L. Teichmann <[email protected]>
1470    
1471 teichmann 183 * tools/formed/formed/model/nodecomponents.py: Added attributes
1472     'target' to NodeComponent and 'containers' to Node.
1473    
1474     * tools/formed/formed/plugins/web/view_renderer.py: New. Aimed
1475     to be a replacement for form_renderer. Not ready yet!
1476    
1477     * ChangeLog: Fixed some indention glitches.
1478    
1479     2007-09-13 Torsten Irlaender <[email protected]>
1480    
1481 torsten 182 * tools/formed/formed/plugins/names/filter.py: Fixed bug in the
1482     renaming algorithm.
1483    
1484 teichmann 183 2007-09-12 Torsten Irlaender <[email protected]>
1485    
1486 torsten 181 * tools/formed/formed/plugins/web/form_renderer.py: Renamed header
1487     from formular navigation to "Fallakte Inhalt"
1488    
1489 teichmann 183 2007-09-12 Torsten Irlaender <[email protected]>
1490    
1491 torsten 180 * tools/formed/formed/plugins/ui/controls.py: Fixed bug that bad
1492     values (dates) were not pretty printed.
1493 teichmann 183
1494 torsten 180 * tools/formed/formed/plugins/web/form_renderer.py: Added errormsg to
1495     label rendering for choicelists.
1496    
1497 teichmann 183 2007-09-12 Torsten Irlaender <[email protected]>
1498    
1499 torsten 179 * tools/formed/formed/plugins/ui/controls.py: Fixed bug that
1500     choicelist did not get selected when the value is set to "0"
1501    
1502 teichmann 183 2007-09-12 Torsten Irlaender <[email protected]>
1503    
1504 torsten 178 * tools/formed/formed/plugins/web/form_renderer.py: Added
1505     "getPrintableData" method, for the formdata Class which will return
1506     the description rather than the value of element in the ID. This is
1507     need for displaying the choises in a right way.
1508    
1509     * tools/formed/formed/plugins/web/renderer.py: Changed string
1510     "Fallnummer" into "Kundennummer" in the templates. Added
1511     Kundennummer to the dataset digest output. Bound in the new
1512     "getPrintableData" call for the digest.
1513    
1514 teichmann 183 2007-10-11 Sascha L. Teichmann <[email protected]>
1515 teichmann 176
1516 teichmann 177 * tools/formed/formed/plugins/export/data.py: The import/export
1517     of data is now implemented with filters (the most consequent
1518 teichmann 183 way in terms of design of FormEd). The support of the 'persistent'
1519     FORMED env-variable support has been removed.
1520    
1521 teichmann 177 * tools/formed/formed/plugins/ui/controls.py: Added a flag to the
1522     filter file dialog to double as import dialog.
1523    
1524     * tools/formed/formed/main.py: Removed the the FORMED-var support
1525     for persistence.
1526    
1527     * tools/formed/formed/config.py: Add the two new filters to the filters
1528     list.
1529    
1530 teichmann 183 2007-10-11 Sascha L. Teichmann <[email protected]>
1531 teichmann 177
1532 teichmann 176 * tools/formed/formed/model/memory.py: Uses XML as persistence format now.
1533     Removed pickle/unpickle stuff.
1534    
1535     * tools/formed/formed/main.py: Uses the new XML persistence.
1536    
1537     * tools/formed/formed/plugins/web/semantic.py: Fixed: choices were
1538     not converted to int indices.
1539    
1540 teichmann 183 2007-09-11 Sascha L. Teichmann <[email protected]>
1541 teichmann 175
1542     * tools/formed/formed/model/memory.py: Making MemoryDataStore persistent
1543     with pickle/unpickle.
1544    
1545     * tools/formed/formed/main.py: Added a env FORMED parameter 'persistent'.
1546     Set to a file name it is tried to unpickle a MemoryDataStore from
1547 teichmann 183 that file. When exiting the program this file is used to store the
1548     current MemoryDataStore state. The storing only works if you exit
1549     the program through the Menu File->Exit.
1550     usage: FORMED=persistent:test.db ./formed.sh
1551 teichmann 175
1552 teichmann 183 2007-09-11 Torsten Irlaender <[email protected]>
1553 teichmann 175
1554 torsten 174 * tools/formed/formed/plugins/web/renderer.py: Changed Name of the
1555     application on the welcome page from "Formed" to "WASKA"
1556    
1557 teichmann 183 2007-09-11 Torsten Irlaender <[email protected]>
1558 teichmann 175
1559 torsten 172 * tools/formed/formed/plugins/web/plugin.py,
1560     * tools/formed/formed/plugins/web/controllers.py,
1561     * tools/formed/formed/plugins/web/renderer.py: Added InfoPageHandler.
1562     The infopage provides information on all project participants.
1563    
1564 teichmann 183 2007-09-11 Sascha L. Teichmann <[email protected]>
1565 teichmann 171
1566     * tools/formed/formed/plugins/web/controllers.py: Fix unicode conversion
1567     issues with error messages (once again).
1568    
1569 teichmann 183 2007-09-11 Torsten Irlaender <[email protected]>
1570 teichmann 171
1571 torsten 170 * tools/formed/formed/plugins/web/form_renderer.py,
1572     * tools/formed/formed/plugins/web/renderer.py: Added alt tag for
1573     icons in error and confirmation dialogs.
1574    
1575 teichmann 183 2007-09-11 Sascha L. Teichmann <[email protected]>
1576 teichmann 168
1577 teichmann 169 * tools/formed/formed/plugins/web/form_renderer.py: Fixed label
1578     generation for ints, texts and textareas. Fixed h depths of infos.
1579    
1580 teichmann 183 2007-09-11 Sascha L. Teichmann <[email protected]>
1581 teichmann 169
1582 teichmann 168 * tools/formed/formed/plugins/web/form_renderer.py: Removed
1583     debug output for help.
1584    
1585     * tools/formed/formed/plugins/web/semantic.py: Added forgotten
1586     check for bools.
1587    
1588     * tools/formed/formed/plugins/web/controllers.py: Added correct
1589     HTML output of data for bools.
1590    
1591 teichmann 183 2007-09-11 Torsten Irlaender <[email protected]>
1592 teichmann 168
1593 torsten 167 * tools/formed/formed/plugins/web/form_renderer.py: Changed size of
1594     textfields for int values. Changed Label for submitbuttons to
1595     "Speichern"
1596 teichmann 168
1597 torsten 167 * tools/formed/formed/plugins/web/plugin.py,
1598     tools/formed/formed/plugins/web/controllers.py: Added new
1599     NotImplementedHandler to show up a dummysite for not implemented
1600     functions.
1601 teichmann 168
1602 torsten 167 * tools/formed/formed/plugins/web/renderer.py: Added
1603     NotImplementedRenderer. Various small fixes. Mostly renaming the
1604     labels of some context menus. Error messages are now generated
1605     dynamically depending on num errors. Formular navigation has now
1606     colored indication for errors.
1607    
1608 teichmann 183 2007-09-11 Torsten Irlaender <[email protected]>
1609 teichmann 168
1610 torsten 166 * tools/formed/formed/plugins/web/renderer.py: Implemented "LookAhead"
1611     algorithm for the formular navigation to get rid of the problem
1612     that some of the items within the navigation are not linked. Now
1613     structural group elements are linked with the next page found in the
1614     formular structure.
1615    
1616 teichmann 183 2007-09-10 Torsten Irlaender <[email protected]>
1617 torsten 165 * tools/formed/formed/plugins/web/form_renderer.py: Changed order of
1618     div and formtag.
1619 teichmann 168
1620 torsten 165 * tools/formed/formed/plugins/web/controllers.py: Added DataSet action
1621     menu in the conformation dialog when creating a new dataset.
1622 teichmann 168
1623 torsten 165 * tools/formed/formed/plugins/web/renderer.py: Fixed error when
1624     rendering the default welcome page. Changed rendering of the
1625     overview and the digest table of the datasets. Added icon for
1626     confirmation dialog, moved the icon in the <h1> tags.
1627    
1628 teichmann 183 2007-09-10 Torsten Irlaender <[email protected]>
1629 teichmann 168
1630 torsten 164 * tools/formed/formed/plugins/web/form_renderer.py: Some html
1631     generation cleanup. Added error icons to formelements
1632 teichmann 168
1633 torsten 164 * tools/formed/formed/plugins/web/controllers.py: Fixed initialisation
1634     of ErrorStatus. Fixed generated of the help tags in the formular
1635 teichmann 168
1636 torsten 164 * tools/formed/formed/plugins/web/renderer.py: Added error icon for
1637     pageerrors. An "!" now indicates errors on pages in the formular
1638     navigation. Added new <div> "content" around confirmation dialogss.
1639     Links in confimation dialogs are now rendered as buttons. Removed
1640     old obsolete OverviewRenderer.
1641    
1642 teichmann 183 2007-09-10 Sascha L. Teichmann <[email protected]>
1643 teichmann 163
1644     * tools/formed/formed/plugins/web/renderer.py: Highlight selected
1645     page in page navigation.
1646    
1647 teichmann 183 2007-09-10 Torsten Irlaender <[email protected]>
1648 teichmann 163
1649 torsten 162 * tools/formed/formed/plugins/web/controllers.py: Fixed issues on
1650     displaying formdata when changing datasets. Loading the right
1651     formdata was not handled in a correct way. Hope it is all fixed now.
1652     Left some commented code because not all sideeffects of the changes
1653     are tested yet.
1654 teichmann 163
1655 torsten 162 * tools/formed/formed/plugins/web/renderer.py: DataSetDigestRenderer
1656     now uses the correct data out of the formdata.
1657    
1658 teichmann 183 2007-09-10 Sascha L. Teichmann <[email protected]>
1659 teichmann 159
1660 teichmann 161 * tools/formed/formed/plugins/web/controllers.py: Pretty
1661     print format data (dates e.g)
1662    
1663 teichmann 183 2007-09-10 Sascha L. Teichmann <[email protected]>
1664 teichmann 161
1665 teichmann 160 * tools/formed/formed/plugins/web/controllers.py: Modified
1666     ErrorStats a bit to avoid mysterious extra error on page.
1667 teichmann 183 No clue why this works.
1668 teichmann 160
1669 teichmann 183 2007-09-10 Sascha L. Teichmann <[email protected]>
1670 teichmann 160
1671 teichmann 159 * tools/formed/formed/plugins/web/form_renderer.py: Fixed value
1672     problem with radio groups, too.
1673    
1674 teichmann 183 2007-09-10 Torsten Irlaender <[email protected]>
1675 torsten 158 * tools/formed/formed/plugins/web/controllers.py: Sessions are now
1676     really removed when deleting a dataset.
1677    
1678 teichmann 183 2007-09-10 Torsten Irlaender <[email protected]>
1679 teichmann 159
1680 torsten 157 * tools/formed/formed/plugins/web/controllers.py: Added new Class
1681     ErrorStats which provides Information on remaining errors per page.
1682 teichmann 159
1683 torsten 157 * tools/formed/formed/plugins/web/renderers.py: Finished movement of
1684     the renderer methods from controllers.py to renderers.py.
1685 teichmann 159
1686 torsten 157 * tools/formed/formed/plugins/web/plugin.py: Removed render_session
1687     handlers
1688 teichmann 153
1689 teichmann 183 2007-09-10 Sascha L. Teichmann <[email protected]>
1690 torsten 157
1691 teichmann 156 * tools/formed/formed/plugins/web/form_renderer.py: values for
1692     choices are generated from the document tree now. This brings
1693 teichmann 183 the state storage of select boxes in HTML to live.
1694 teichmann 156
1695 teichmann 183 2007-09-09 Sascha L. Teichmann <[email protected]>
1696 teichmann 156
1697 teichmann 155 * tools/formed/formed/plugins/web/semantic.py: Fixed problems with
1698     range checking of integers.
1699    
1700     * tools/formed/formed/plugins/web/controllers.py: Added class
1701     ErrorItem to track errors. They are stored in the session.
1702    
1703 teichmann 183 2007-09-09 Sascha L. Teichmann <[email protected]>
1704 teichmann 155
1705 teichmann 154 * tools/formed/formed/model/nodecomponents.py: Fixed returning
1706     wrong index in Document.indexOfcomponentByClassAndName.
1707    
1708     * tools/formed/formed/plugins/web/form_renderer.py: 'error' was
1709     written 'errot' in renderer for textareas.
1710    
1711     * tools/formed/formed/plugins/web/controllers.py: Some clean-ups.
1712    
1713 teichmann 183 2007-09-09 Sascha L. Teichmann <[email protected]>
1714 teichmann 154
1715 teichmann 153 * tools/formed/formed/plugins/web/help.py: Added a 'hasHelp'
1716     method. Could be cheaper for some implementations of help.
1717    
1718     * tools/formed/formed/plugins/web/form_renderer.py: Modified
1719     FormData to have distinct getData(), getHelp() and getError()
1720 teichmann 183 methods. Various bug fixes.
1721 teichmann 153
1722     * tools/formed/formed/plugins/web/controllers.py: Implements the
1723     new FormData (trivial by now).
1724    
1725     * tools/formed/formed/plugins/web/renderer.py: New FormData and
1726     some bug fixes.
1727    
1728 teichmann 183 2007-09-09 Sascha L. Teichmann <[email protected]>
1729 teichmann 152
1730     * tools/formed/formed/model/memory.py,
1731     tools/formed/formed/model/persistent.py: Add a getValue() method
1732 teichmann 183 to dataset abstraction. This is a bit of a workaround to bring
1733     global access across pages for rule checking to work.
1734 teichmann 152
1735     * tools/formed/formed/model/data.py: Fixed: When setting a new expression
1736     the compiled version was not stored in the RuleLeaf.
1737    
1738     * tools/formed/formed/model/expr.py: shlex lexer does not like unicode.
1739     convert the expression string to ascii for compilation.
1740    
1741     * tools/formed/formed/plugins/web/semantic.py: Remove the 'box' because
1742     valid data is stored to the dataset immediately now. Fixed a bug
1743 teichmann 183 with integer handler.
1744 teichmann 152
1745     * tools/formed/formed/plugins/web/controllers.py: Removed the semantic 'box'
1746     stuff. When a submit is done extract the rules from the tree document
1747 teichmann 183 that are effected by the modified variables and check them.
1748 teichmann 152
1749     * tools/formed/formed/plugins/web/renderer.py: Fixed exception handling
1750     when dealing with templates.
1751    
1752 teichmann 183 2007-09-07 Torsten Irlaender <[email protected]>
1753 torsten 151 * tools/formed/formed/plugins/web/controllers.py,
1754     tools/formed/formed/plugins/web/renderer.py: Moved more render
1755     functions into renderer.py. New render classes are:
1756     DataSetDigestRenderer, DataSetNavigationRenderer,
1757     DataSetFormularRenderer, ConfirmationDialogRenderer
1758    
1759     Note: The new methods are only called from selected handlers. Other
1760     handlers call the renderes in the old way.
1761    
1762 teichmann 183 2007-09-07 Torsten Irlaender <[email protected]>
1763 torsten 150 * tools/formed/formed/plugins/web/form_renderer.py: Renamed
1764     renderer.py to form_renderer.py. This file will contain formular
1765     specfic render methods in the future.
1766     * tools/formed/formed/plugins/web/renderer.py: Added new renderer.py
1767     which will contain general render methods.
1768     * tools/formed/formed/plugins/web/controllers.py: Began to move all
1769     rendering into renderer.py or form_renderer.py. This file will only
1770     contain teh handlers in the future.
1771    
1772 teichmann 183 2007-09-07 Torsten Irlaender <[email protected]>
1773 torsten 148 * tools/formed/formed/plugins/web/renderer.py,
1774     tools/formed/formed/plugins/web/controller.py:
1775     Renderes now get an instance of the formdata object to provide
1776     access the data needed to render various infoboxes etc. Handler
1777     instanciate the formdata.
1778    
1779 teichmann 183 2007-09-06 Torsten Irlaender <[email protected]>
1780 torsten 147 * tools/formed/formed/plugins/web/renderer.py: Mainly tried to get the
1781     getFormData interface to work. Added two small semantic fixes, but
1782     did not manage to get it up. Need to exime this a little bit more
1783     * tools/formed/formed/plugins/web/controllers.py: Put <div> tags
1784     around the menus on the right side to be able to assign different
1785     styles. Added dataset actions while editing a dataset.
1786    
1787 teichmann 183 2007-09-05 Torsten Irlaender <[email protected]>
1788 torsten 146 * tools/formed/formed/model/memory.py: Fixed deleting datasets by
1789     removing unwanted del method
1790     * tools/formed/formed/plugins/web/controllers.py: Implemented
1791     confiration dialogs for create, delete, and select aof datasets. Started to use
1792     templates as well for larger information units like the dataset summary.
1793    
1794 teichmann 183 2007-09-05 Sascha L. Teichmann <[email protected]>
1795 teichmann 141
1796 teichmann 145 * tools/formed/formed/model/nodecomponents.py: Added a
1797     method to document to find index of page.
1798    
1799     * tools/formed/formed/plugins/web/semantic.py: Added getValue()
1800     to fetch data from semantic box.
1801    
1802     * tools/formed/formed/plugins/web/controllers.py: Added new
1803     FormData implementation to support DB and semantic box.
1804    
1805 teichmann 183 2007-09-05 Sascha L. Teichmann <[email protected]>
1806 teichmann 145
1807 teichmann 144 * tools/formed/formed/plugins/web/renderer.py: escaped
1808     error message.
1809    
1810     * tools/formed/formed/plugins/web/controllers.py: Don't fetch
1811     dataset from backend each time a page is up to edit.
1812    
1813 teichmann 183 2007-09-05 Sascha L. Teichmann <[email protected]>
1814 teichmann 144
1815 teichmann 143 * tools/formed/formed/plugins/web/renderer.py: SimplePageRenderer
1816     returns "Page not found" if given page is None.
1817    
1818     * tools/formed/formed/plugins/web/controllers.py: Added checks
1819     to avoid crashing when ask for a non-existent page.
1820    
1821 teichmann 183 2007-09-05 Sascha L. Teichmann <[email protected]>
1822 teichmann 143
1823 teichmann 142 * tools/formed/formed/plugins/web/controllers.py: Some clean-ups.
1824    
1825 teichmann 183 2007-09-05 Sascha L. Teichmann <[email protected]>
1826 teichmann 142
1827 teichmann 141 * tools/formed/formed/plugins/web/plugin.py: Remove request handlers
1828     and renderers.
1829    
1830     * tools/formed/formed/plugins/web/controllers.py: New. Contains handlers
1831     and renderers now. TODO: Move renderers to renderer.py
1832    
1833 teichmann 183 2007-09-05 Torsten Irlaender <[email protected]>
1834 teichmann 141
1835 torsten 140 * tools/formed/formed/plugins/web/www/main.tmpl: Adopted web template
1836 teichmann 141 and bound in the the new added functions to create, edit, delete and
1837     show formdata.
1838 torsten 140
1839 teichmann 183 2007-09-05 Sascha L. Teichmann <[email protected]>
1840 teichmann 139
1841     * tools/formed/formed/model/memory.py: Removed bisect and use a
1842     simple linear scan for dataset lookup now.
1843    
1844     * tools/formed/formed/plugins/web/plugin.py: Fixed various issues
1845     of different sizes.
1846    
1847 teichmann 183 2007-09-05 Torsten Irlaender <[email protected]>
1848 torsten 138
1849     * tools/formed/formed/plugins/web/memory.py: Fixed getDataSetById
1850     fuction
1851 teichmann 183
1852 torsten 138 * tools/formed/formed/plugins/web/persistent.py: Added store() method
1853     to the DataSet interface
1854 teichmann 139
1855 torsten 138 * tools/formed/formed/plugins/web/renderer.py: Added handlers and
1856     renderes for create, update, delete and show actions on formular data.
1857    
1858 teichmann 183 2007-09-04 Sascha L. Teichmann <[email protected]>
1859 torsten 136
1860 teichmann 137 * tools/formed/formed/plugins/web/server.py: The mapping
1861     to methods is now driven by regualar expressions and
1862 teichmann 183 a dictionary. Response objects are now able to send
1863     error codes.
1864 teichmann 137
1865     * tools/formed/formed/plugins/web/renderer.py: Fixed an issue
1866     when help in Formdata is None. Moved text for help into
1867 teichmann 183 a top level '''...''' variable.
1868 teichmann 137
1869     * tools/formed/test-data/simple.xml: Added test for help.
1870    
1871     * tools/formed/formed/plugins/web/help.py: extra None check.
1872    
1873     * tools/formed/formed/plugins/web/plugin.py: Uses the new
1874     table driven mapping of reguest handling. TODO: split the
1875 teichmann 183 WebPlugIn.pageHandler() method further to smaller handlers.
1876     Smaller clean ups and better exception handling.
1877 teichmann 137
1878     * tools/formed/formed/plugins/web/cache.py: Report OSErrors
1879     and do not catch them.
1880    
1881 teichmann 183 2007-09-04 Torsten Irlaender <[email protected]>
1882 teichmann 137
1883 torsten 136 * tools/formed/formed/plugins/web/renderer.py,
1884     * tools/formed/formed/plugins/web/plugin.py: Added Interface to
1885     the HelpProvider and inserted help icons to the html output.
1886     Added decorator for Formelemnts, so textfields, choices etc. are now
1887     within a <div> tag.
1888     Modified the error messages.
1889    
1890 teichmann 183 2007-09-04 Sascha L. Teichmann <[email protected]>
1891 teichmann 134
1892 teichmann 135 * tools/formed/formed/plugins/web/cache.py: New. Implements
1893     the server-side caching more clean. Fixes a bug with
1894 teichmann 183 serving static content.
1895 teichmann 135
1896     * tools/formed/formed/plugins/web/plugin.py: Use the new cache.
1897    
1898 teichmann 183 2007-09-04 Sascha L. Teichmann <[email protected]>
1899 teichmann 135
1900 teichmann 134 * tools/formed/formed/plugins/web/plugin.py: Set MIME type
1901     to "application/xhtml+xml" when serving help texts.
1902    
1903 teichmann 183 2007-09-03 Sascha L. Teichmann <[email protected]>
1904 teichmann 132
1905 teichmann 133 * tools/formed/formed/plugins/export/diff.py: New. Exports
1906     pairwise differences between all modes.
1907    
1908     * tools/formed/formed/config.py: Use new export filter.
1909    
1910 teichmann 183 2007-09-03 Sascha L. Teichmann <[email protected]>
1911 teichmann 133
1912     * tools/formed/formed/plugins/web/help.py: New. Parses an
1913 teichmann 132 XHTML document for id'ed divs and builds a help lookup.
1914    
1915     * tools/formed/formed/plugins/web/www/help.tmpl: Template for
1916     the help content frame.
1917    
1918     * tools/formed/formed/plugins/web/www/help.xhtml: Some simple
1919     help text index.
1920    
1921     * tools/formed/formed/plugins/web/plugin.py: Serves the help
1922     texts now.
1923    
1924 teichmann 183 2007-09-03 Torsten Irlaender <[email protected]>
1925 teichmann 132
1926 torsten 131 * tools/formed/formed/plugins/web/plugin.py: Only visible group
1927     elements will be rendered in the formular navigation.
1928     Formular pages in the navigation now have their own css-style
1929     attributes.
1930    
1931 teichmann 183 2007-09-03 Torsten Irlaender <[email protected]>
1932 teichmann 132
1933 torsten 130 * tools/formed/formed/plugins/web/www/main.tmpl: Added div area for page
1934     errors in template
1935     * tools/formed/formed/plugins/web/plugin.py: Fixed undefined
1936     pageerrors variable
1937    
1938 teichmann 183 2007-09-03 Frank Koormann <[email protected]>
1939 frank 129
1940     * tools/formed/formed/plugins/export/html.py
1941     (RecursiveExporter): Added annotation to export
1942     (fillRow()): Renamed old fillNine to this more generic name.
1943    
1944    
1945 teichmann 183 2007-09-03 Sascha L. Teichmann <[email protected]>
1946 teichmann 127
1947 teichmann 128 * tools/formed/formed/plugins/web/renderer.py: Using the decorator
1948     from model.misc now.
1949    
1950 teichmann 183 2007-09-03 Sascha L. Teichmann <[email protected]>
1951 teichmann 128
1952 teichmann 127 * tools/formed/formed/model/nodecomponents.py: Added an
1953     'annotation' attribute to node components. This is to
1954 teichmann 183 enable FormEd document authors to add comments to groups
1955     and fields.
1956 teichmann 127
1957 teichmann 183 2007-09-03 Frank Koormann <[email protected]>
1958 frank 126
1959     * tools/formed/formed/model/nodecomponents.py
1960     (NodeComponent.getParent): New method to get node components parent.
1961    
1962     * tools/formed/formed/plugins/export/html.py: Export Choice option
1963     as simple list instead of collection of bools.
1964    
1965 teichmann 183 2007-09-02 Sascha L. Teichmann <[email protected]>
1966 teichmann 120
1967 teichmann 124 * tools/formed/formed/model/persistent.py: Interfaces to abstract
1968     from persistent storage details.
1969    
1970     * tools/formed/formed/model/memory.py: In core implementation
1971     of the persistent interfaces.
1972    
1973     * tools/formed/formed/main.py: Holds a memory data store now.
1974    
1975 teichmann 183 2007-09-02 Sascha L. Teichmann <[email protected]>
1976 teichmann 124
1977 teichmann 123 * tools/formed/formed/plugins/export/sql.py,
1978     tools/formed/formed/plugins/export/html.py: Fixed constructor chains
1979 teichmann 183 for FileDialogFilter sub classes.
1980 teichmann 123
1981 teichmann 183 2007-09-02 Sascha L. Teichmann <[email protected]>
1982 teichmann 123
1983 teichmann 122 * tools/formed/formed/model/misc.py: Checking the mode in recursive
1984     tree traversals is a common task. To ease this a decorator function
1985 teichmann 183 checkMode in union with sub classing ModeChecker can be used.
1986     To make it work simply subclass from ModeChecker and add the decorator
1987     to the methods that need mode tracking. Before you start the recursion
1988     call self.prepareDescent().
1989 teichmann 122
1990     * tools/formed/formed/plugins/export/html.py: Uses the new decorator scheme
1991     now which replace the old. TODO: Make the web renderer use the new scheme
1992 teichmann 183 too.
1993 teichmann 122
1994 teichmann 183 2007-09-02 Sascha L. Teichmann <[email protected]>
1995 teichmann 122
1996 teichmann 121 * tools/formed/formed/plugins/export/sql.py: Removed needless import.
1997    
1998     * tools/formed/formed/plugins/export/html.py: HTML table exporter
1999     uses new FileDialogFilter base class too.
2000    
2001 teichmann 183 2007-09-02 Sascha L. Teichmann <[email protected]>
2002 teichmann 121
2003 teichmann 120 * tools/formed/formed/plugins/ui/*: New. All file exporters
2004     need a file dialog. Till now each of them pulled up its
2005 teichmann 183 own. This was silly code replication. Now there is an abstract
2006     base class 'FileDialogFilter' which implements the common
2007     behavior. The file exporters should subclass it.
2008 teichmann 120
2009     * tools/formed/formed/plugins/export/sql.py: Subclass the SQL
2010     exporters from the new base class. TODO: Subclass the HTML
2011 teichmann 183 exporter too.
2012 teichmann 120
2013 teichmann 183 2007-08-31 Sascha L. Teichmann <[email protected]>
2014 teichmann 119
2015     * tools/formed/formed/plugins/export/html.py: Make mode check
2016     work (again).
2017    
2018 teichmann 183 2007-08-31 Torsten Irlaender <[email protected]>
2019 torsten 117
2020 torsten 118 * tools/formed/formed/plugins/export/html.py: Rendering of the HTML
2021     exprt works now in a recursive way. This change was needed because
2022     the structure of the formedtree has changed to be able to render
2023     full hirachically document stuctures. (nested lists)
2024     TODO: Fix modechecking
2025    
2026 teichmann 183 2007-08-31 Torsten Irlaender <[email protected]>
2027 torsten 118
2028 torsten 117 * tools/formed/formed/plugins/web/plugin.py: Navigation rendering works
2029     now in recursive way. This change was needed because the structure
2030     of the formedtree has changed to be able to render full hirachically
2031     document stuctures. (nested lists)
2032    
2033 teichmann 183 2007-08-31 Sascha L. Teichmann <[email protected]>
2034 teichmann 115
2035 teichmann 116 * tools/formed/formed/model/nodecomponents.py: use discard()
2036     instead of remove on sets.
2037    
2038     * tools/formed/formed/plugins/export/sql.py: Added an
2039     exporter for table views.
2040    
2041     * tools/formed/formed/config.py: Added the new exporter
2042     to the list of export filters.
2043    
2044 teichmann 183 2007-08-30 Sascha L. Teichmann <[email protected]>
2045 teichmann 116
2046 teichmann 115 * tools/formed/formed/model/data.py: Fixed a bug in
2047     Page.allWidgets()
2048    
2049     * tools/formed/formed/plugins/export/sql.py: Added an exporter
2050     for stored procudeures.
2051    
2052     * tools/formed/formed/config.py: Add the new SP exporter.
2053    
2054 teichmann 183 2007-08-29 Torsten Irlaender <[email protected]>
2055 frank 111
2056 torsten 113 * tools/formed/formed/plugins/web/plugin.py,
2057     tools/formed/formed/plugins/web/error_renderer.py: Added interface
2058     to get the errors for a whole page in te formular. These errors can
2059     now be displayed on the top of the formular.
2060    
2061 teichmann 183 2007-08-29 Torsten Irlaender <[email protected]>
2062 torsten 113
2063 torsten 112 * tools/formed/formed/plugins/web/renderer.py: Finished implementation
2064     of the getFromData interface and prepared the rederer for generating
2065     nice error messages
2066    
2067 teichmann 183 2007-08-28 Frank Koormann <[email protected]>
2068 torsten 112
2069 frank 111 * tools/formed/formed/plugins/export/sql.py
2070     (SchemaCreator.createSchema, SchemaCreator._createGroup):
2071     Fixed typo in created DDS (PRIMRAY -> PRIMARY)
2072    
2073 teichmann 183 2007-08-28 Torsten Irlaender <[email protected]>
2074 torsten 110
2075     * tools/formed/formed/plugins/export/sql.py: Added small helper
2076     function to generated valid quotes within the sql statements
2077    
2078 teichmann 183 2007-08-29 Sascha L. Teichmann <[email protected]>
2079 teichmann 106
2080 teichmann 109 * tools/formed/formed/plugins/export/sql.py: Added foreign keys
2081     for repeat tables.
2082    
2083 teichmann 183 2007-08-29 Sascha L. Teichmann <[email protected]>
2084 teichmann 109
2085 teichmann 108 * tools/formed/formed/plugins/export/sql.py: When generating
2086     an extra table check in a table of same content exists. In
2087 teichmann 183 this case reference the existing table.
2088 teichmann 108
2089 teichmann 183 2007-08-29 Sascha L. Teichmann <[email protected]>
2090 teichmann 108
2091 teichmann 107 * tools/formed/formed/plugins/export/sql.py: Rewritten to produce
2092     _real_ SQL and respect repeat groups.
2093    
2094     * tools/formed/formed/model/data.py: Fixed bug with Group.isRepeat()
2095    
2096     * tools/formed/formed/plugins/web/renderer.py: Use "".join([])
2097     instead of expensive += string concat in some places.
2098    
2099 teichmann 183 2007-08-29 Sascha L. Teichmann <[email protected]>
2100 teichmann 107
2101 teichmann 106 * tools/formed/formed/model/data.py: Renamed GroupNode.getRepeat()
2102     to .isRepeat and return a bool. Fixed a bug in Page.allWidgets().
2103    
2104 teichmann 183 2007-08-28 Torsten Irlaender <[email protected]>
2105 torsten 105
2106     * tools/formed/plugins/web/renderer.py: Added Formdata interface.
2107     * tools/formed/model/data.py: Implements Formadata interface to
2108     textfields. Fieldset generated depends now on the "invisible"
2109     attribute of the groupnode. Field-label generation slightly changed.
2110     Added error indication to textfields
2111    
2112 teichmann 183 2007-08-28 Sascha L. Teichmann <[email protected]>
2113 teichmann 102
2114 teichmann 104 * tools/formed/formed/model/data.py,
2115     tools/formed/formed/io/document.py: Removed support
2116 teichmann 183 of logical groups.
2117 teichmann 104
2118 teichmann 183 2007-08-28 Sascha L. Teichmann <[email protected]>
2119 teichmann 104
2120 teichmann 103 * tools/formed/formed/io/document.py: Avoid saving empty
2121     attributes.
2122    
2123     * tools/formed/test-data/simple.xml: Applied.
2124    
2125 teichmann 183 2007-08-28 Sascha L. Teichmann <[email protected]>
2126 teichmann 103
2127 teichmann 102 * tools/formed/formed/model/data.py: Added 'repeat' and
2128     'invisible' attributes to group. TODO: remove logical group.
2129    
2130 teichmann 183 2007-08-27 Torsten Irlaender <[email protected]>
2131 teichmann 96
2132 torsten 101 * tools/formed/plugins/web/plugin.py,
2133     tools/formed/plugins/web/renderer.py: Started to include stylesheet
2134     depending tags in the html generation.
2135    
2136 teichmann 183 2007-08-27 Sascha L. Teichmann <[email protected]>
2137 torsten 101
2138 teichmann 99 * tools/formed/formed/model/data.py,
2139     tools/formed/formed/io/document.py: Added a logical group.
2140 teichmann 183 It has an attribute 'repeat' to indicate that it might
2141     be worthy an external table in DB schema.
2142 teichmann 99
2143 teichmann 183 2007-08-27 Sascha L. Teichmann <[email protected]>
2144 teichmann 99
2145 teichmann 98 * tools/formed/formed/plugins/web/plugin.py: Support
2146     serving of static content.
2147    
2148     * tools/formed/formed/plugins/web/server.py: Removed
2149     old send code.
2150    
2151 teichmann 183 2007-08-27 Sascha L. Teichmann <[email protected]>
2152 teichmann 98
2153 teichmann 97 * tools/formed/formed/plugins/web/plugin.py: Use new
2154     Response object. Fix typo.
2155    
2156     * tools/formed/formed/plugins/web/server.py: support
2157     response object to serve different MIME types.
2158    
2159 teichmann 183 2007-08-27 Sascha L. Teichmann <[email protected]>
2160 teichmann 97
2161 teichmann 96 * tools/formed/formed/plugins/web/plugin.py: Add web.path
2162     to FORMED environment variable to specify the
2163 teichmann 183 root of the static content.
2164 teichmann 96
2165 teichmann 183 2007-08-26 Sascha L. Teichmann <[email protected]>
2166 teichmann 93
2167 teichmann 95 * tools/formed/formed/model/data.py,
2168     tools/formed/formed/model/nodecomponents.py: Fixed mode issues.
2169    
2170     * tools/formed/formed/plugins/web/www,
2171     tools/formed/formed/plugins/web/www/main.tmpl: New. Contains
2172 teichmann 183 a template for the HTML output.
2173 teichmann 95
2174     * tools/formed/formed/plugins/web/plugin.py: Fixes several smaller
2175     mode issues. Introduces CSS support. Simplified the action
2176 teichmann 183 handling.
2177 teichmann 95
2178     * tools/formed/formed/plugins/web/renderer.py: Removed the
2179     nagivation code.
2180    
2181     * tools/formed/formed/plugins/web/server.py: Added missing import.
2182    
2183 teichmann 183 2007-08-26 Sascha L. Teichmann <[email protected]>
2184 teichmann 95
2185 teichmann 94 * tools/formed/formed/model/data.py: Added missing broadcast
2186     parameter to setAttribute() of RuleLeaf.
2187    
2188     * tools/formed/formed/plugins/web/plugin.py: Factorize
2189     HTTP server code out to separate module.
2190    
2191     * tools/formed/formed/plugins/web/renderer.py: Removed
2192     needless -1 from pop()
2193    
2194     * tools/formed/formed/plugins/web/server.py: New. Contains
2195     the HTTP server code now.
2196    
2197 teichmann 183 2007-08-26 Sascha L. Teichmann <[email protected]>
2198 teichmann 94
2199 teichmann 93 * tools/formed/test-data/simple.xml: Modified to contain a rule.
2200    
2201     * tools/formed/formed/model/expr.py: Added. A simple RPN
2202     expression evaluator. To avoid the problem of eval()ing
2203 teichmann 183 arbitrary python expressions I've decided to use a very
2204     basic and limited stack machine to support rule checking.
2205 teichmann 93
2206     * tools/formed/formed/model/data.py: Added a RuleLeaf.
2207    
2208     * tools/formed/formed/io/document.py: Added factories for rules.
2209    
2210     * tools/formed/formed/model/nodecomponents.py: Add a method
2211     to find all items of a given type in document for a given
2212 teichmann 183 mode. Usefull to find all rules in the tree.
2213 teichmann 93
2214     * tools/formed/formed/ui/controls.py: Added a listener mechanism
2215     to attribute table to report exceptions when setting a value
2216 teichmann 183 from GUI. Useful to report compilation errors when setting
2217     expr of rule leafs.
2218 teichmann 93
2219     * tools/formed/formed/main.py: Added a method to track exceptions
2220     from the attribute table and pop up dialogs if they occur.
2221 teichmann 183 Added a counter of rule modifications in tree. Useful if you
2222     want build cached data structures like rule sets and you want
2223     to know if they are still valid.
2224 teichmann 93
2225 teichmann 183 2007-08-24 Torsten Irlaender <[email protected]>
2226 torsten 90
2227 torsten 92 * tools/formed/formed/plugins/export/sql.py: Fixed CHECK-constraint
2228     for checkbox values. (Syntax error).
2229    
2230     * tools/formed/formed/plugins/names/filter.py: Fixes in formularname
2231     generation
2232    
2233 teichmann 183 2007-08-24 Torsten Irlaender <[email protected]>
2234 torsten 92
2235 torsten 90 * tools/formed/formed/plugins/names/filter.py: Separated Class for
2236     making the formularnames more database friendly. Added some more
2237     checks.
2238     * tools/formed/formed/plugins/export/sql.py: Make use of the fresh
2239     separated class, and some fixes in sql generation.
2240    
2241 teichmann 183 2007-08-24 Sascha L. Teichmann <[email protected]>
2242 teichmann 86
2243 teichmann 89 * tools/formed/formed/plugins/export/html.py: Print lengths
2244     of external choice list.
2245    
2246 teichmann 183 2007-08-24 Sascha L. Teichmann <[email protected]>
2247 teichmann 89
2248 teichmann 88 * tools/formed/formed/main.py: Little workaround for
2249     mode selection if someone adds an removes a mode.
2250    
2251 teichmann 183 2007-08-24 Sascha L. Teichmann <[email protected]>
2252 teichmann 88
2253 teichmann 87 * tools/formed/test-data/simple.xml: Better test case for
2254     mode depended leaf items.
2255    
2256     * tools/formed/formed/model/nodecomponents.py: Added a method
2257     to calculate the effective mode of an item.
2258    
2259     * tools/formed/formed/plugins/export/html.py: Use effective
2260     mode. TODO: the 'all' modus return false results sometimes.
2261 teichmann 183 Cause: The modes are only cumulated over time. Removal is
2262     not done.
2263 teichmann 87
2264 teichmann 183 2007-08-24 Sascha L. Teichmann <[email protected]>
2265 teichmann 87
2266 teichmann 86 * tools/formed/formed/plugins/export/html.py: Dump the items
2267     of radio groups and choices too.
2268    
2269 teichmann 183 2007-08-24 Torsten Irlaender <[email protected]>
2270 torsten 85
2271     * tools/formed/formed/plugins/names/filter.py: Modified the renaming
2272     by formular names to make the naming more database friendly.
2273     Now only alphanumeric and underscore chars is allowed.
2274    
2275 teichmann 183 2007-08-24 Sascha L. Teichmann <[email protected]>
2276 teichmann 84
2277     * tools/formed/formed/plugins/export/html.py: Tweaked
2278     HTML table exporter a bit to be on par with the XSLT
2279 teichmann 183 script. TODO: Dump items in radio and choice groups.
2280 teichmann 84
2281 teichmann 183 2007-08-23 Sascha L. Teichmann <[email protected]>
2282 teichmann 83
2283     * tools/formed/formed/plugins/names/filter.py: Removed
2284     HTML and SQL exporters.
2285    
2286     * tools/formed/formed/plugins/export,
2287     tools/formed/formed/plugins/export/__init__.py,
2288     tools/formed/formed/plugins/export/sql.py,
2289     tools/formed/formed/plugins/export/html.py: New: Contain
2290 teichmann 183 the HTML and the SQL exporters now.
2291 teichmann 83
2292     * tools/formed/formed/config.py: Use exporters from different
2293     package now.
2294    
2295 teichmann 183 2007-08-23 Torsten Irlaender <[email protected]>
2296 torsten 82
2297     * tools/formed/formed/plugins/names/filter.py: Added an
2298     pseudo SQL export filters. TODO: Move HTML and SQL filter
2299     in a new file (formed/plugins/export/htmlexport.py and
2300     sqlexport.py?)
2301    
2302     * tools/formed/formed/config.py: Install the new SQL filter.
2303    
2304 teichmann 183 2007-08-23 Sascha L. Teichmann <[email protected]>
2305 teichmann 81
2306     * tools/formed/formed/model/nodecomponents.py: Added a depth()
2307     method to determine the depth of particular tree item.
2308    
2309     * tools/formed/formed/plugins/names/filter.py: Added an
2310     HTML export filters. TODO: needs more work.
2311    
2312     * tools/formed/formed/config.py: Install the new HTML filter.
2313    
2314 teichmann 183 2007-08-23 Torsten Irlaender <[email protected]>
2315 torsten 80
2316     * contrib/extract-xfa-fields_and_options.xsl: Added small xsl script
2317     to extract fields and options in the XFA Data in teh PDF. This
2318     script might me handy to indicate changes between the different
2319     formular versions.
2320    
2321 teichmann 183 2007-08-23 Sascha L. Teichmann <[email protected]>
2322 teichmann 73
2323 teichmann 79 * tools/formed/formed/main.py: Add an 'all' mode to
2324     select all modes. ;-)
2325    
2326 teichmann 183 2007-08-22 Sascha L. Teichmann <[email protected]>
2327 teichmann 79
2328 teichmann 78 * tools/formed/test-data/simple.xml,
2329     tools/formed/formed/model/data.py,
2330     tools/formed/formed/plugins/web/plugin.py,
2331     tools/formed/formed/plugins/web/renderer.py,
2332     tools/formed/formed/io/document.py,
2333     tools/formed/formed/main.py: Removed support for switch nodes.
2334     BEWARE: This breaks compatibility with older documents!
2335    
2336 teichmann 183 2007-08-22 Sascha L. Teichmann <[email protected]>
2337 teichmann 78
2338 teichmann 77 * tools/formed/formed/plugins/web/plugin.py: Uses the
2339     getSelectedMode() from main now.
2340    
2341     * tools/formed/formed/main.py: selected mode is now hold
2342     in main.
2343    
2344     * tools/formed/formed/config.py: removed selected mode from
2345     env configuration.
2346    
2347 teichmann 183 2007-08-22 Sascha L. Teichmann <[email protected]>
2348 teichmann 77
2349 teichmann 76 * tools/formed/formed/ui/controls.py: Attributes in GUI attribute
2350     table are now alphabetically sorted.
2351    
2352 teichmann 183 2007-08-22 Sascha L. Teichmann <[email protected]>
2353 teichmann 76
2354 teichmann 75 * tools/formed/formed/model/nodecomponents.py: Added code to
2355     establish the new 'modes' recursively.
2356    
2357     * tools/formed/formed/plugins/plugin.py: Pass main instead
2358     of cfg on plug-in start-up.
2359    
2360     * tools/formed/formed/plugins/web/plugin.py: Use the new
2361     'modes' attribute for rendering.
2362    
2363     * tools/formed/formed/plugins/web/renderer.py: Use decorators
2364     to check the new modes.
2365    
2366     * tools/formed/formed/main.py: Adjusted to new infrastructure.
2367    
2368 teichmann 183 2007-08-22 Sascha L. Teichmann <[email protected]>
2369 teichmann 75
2370 teichmann 74 * tools/formed/formed/model/nodecomponents.py: Added an
2371     attribute 'modes' to NodeComponents.
2372    
2373 teichmann 183 2007-08-22 Sascha L. Teichmann <[email protected]>
2374 teichmann 74
2375 teichmann 73 * tools/formed/formed/model/data.py: Small cosmetic cleanups
2376    
2377 teichmann 183 2007-08-21 Sascha L. Teichmann <[email protected]>
2378 frank 67
2379 teichmann 72 * tools/formed/formed/plugins/web/renderer.py: Another fix
2380     for the hidden field. Argh!
2381    
2382 teichmann 183 2007-08-21 Sascha L. Teichmann <[email protected]>
2383 teichmann 72
2384 teichmann 71 * tools/formed/formed/plugins/web/renderer.py: Fixed double
2385     generation of hidden page field.
2386    
2387 teichmann 183 2007-08-21 Sascha L. Teichmann <[email protected]>
2388 teichmann 71
2389 teichmann 69 * tools/formed/formed/plugins/web/semantic.py: Added semantic
2390 teichmann 70 checks for radio groups.
2391    
2392 teichmann 183 2007-08-21 Sascha L. Teichmann <[email protected]>
2393 teichmann 70
2394     * tools/formed/formed/plugins/web/semantic.py: Added semantic
2395 teichmann 69 checks for choices.
2396    
2397     2007-08-21 Frank Koormann <[email protected]>
2398    
2399 frank 68 * contrib/convert-formedtree2html.xsl: Display switch nodes as
2400     alternatives.
2401    
2402 teichmann 69 2007-08-21 Frank Koormann <[email protected]>
2403 frank 68
2404 frank 67 * contrib/convert-formedtree2html.xsl:
2405     Replace technical types with readable descriptions
2406    
2407 teichmann 183 2007-08-21 Sascha L. Teichmann <[email protected]>
2408 teichmann 64
2409 teichmann 66 * tools/formed/formed/plugins/web/plugin.py: Fix a few smaller
2410     issues. 'action' looks for all widgets on a page now, goes
2411 teichmann 183 through all passed parameters, tries to match them with the
2412     widgets of the page and put them into the semantic box.
2413     Afterwards a list of untouched page parameters are left
2414     which will be deleted from the semantic box.
2415 teichmann 66
2416     * tools/formed/formed/plugins/web/semantic.py: Simplified.
2417     The NodeComponent is passed as an argument now.
2418    
2419     * tools/formed/formed/plugins/web/renderer.py: Generate a
2420     hidden field to store the name of the page.
2421    
2422 teichmann 183 2007-08-21 Sascha L. Teichmann <[email protected]>
2423 teichmann 66
2424 teichmann 65 * tools/formed/formed/plugins/web/plugin.py: Fixed an encoding
2425     issue with incoming UTF-8 data.
2426    
2427 teichmann 183 2007-08-21 Sascha L. Teichmann <[email protected]>
2428 teichmann 65
2429 teichmann 64 * tools/formed/test-data/simple.xml: Improve test for widgets
2430     in switches.
2431    
2432     * tools/formed/formed/model/data.py: Added a method to find all
2433     widgets in a given page. Fixed a bug when walking in switch
2434 teichmann 183 with a given mode.
2435 teichmann 64
2436     * tools/formed/formed/plugins/web/plugin.py: Simple test for
2437     listing all widgets in page.
2438    
2439 teichmann 183 2007-08-21 Torsten Irlaender <[email protected]>
2440 torsten 63
2441     * tools/formed/formed/plugins/names/filter.py: Fixed file-encoding to
2442     latin-1
2443    
2444 teichmann 183 2007-08-21 Sascha L. Teichmann <[email protected]>
2445 teichmann 61
2446 teichmann 62 * tools/formed/formed/model/data.py: Added mode parameter to
2447     walk.
2448 teichmann 183
2449 teichmann 62 * tools/formed/formed/model/nodecomponents.py: SwitchNode overwrites
2450     walk() with usage of the new mode parameter. Added a method to
2451 teichmann 183 give children in a given mode.
2452 teichmann 62
2453     * tools/formed/formed/plugins/web/renderer.py: Simplified to use
2454     new Switch.childrenInMode() method.
2455    
2456 teichmann 183 2007-08-21 Sascha L. Teichmann <[email protected]>
2457 teichmann 62
2458 teichmann 61 * tools/formed/formed/plugins/web/semantic.py: Add checks for
2459     texts and text areas.
2460    
2461     * tools/formed/formed/plugins/web/renderer.py: Set accept-charset
2462     to UTF-8 in generated form.
2463    
2464 teichmann 183 2007-08-20 Sascha L. Teichmann <[email protected]>
2465 teichmann 60
2466     * tools/formed/formed/plugins/web/semantic.py: Added semantic
2467     tests for dates.
2468    
2469 teichmann 183 2007-08-20 Sascha L. Teichmann <[email protected]>
2470 teichmann 59
2471     * tools/formed/test-data/simple.xml: Tweak a bit for integer
2472     range test.
2473    
2474     * tools/formed/formed/model/nodecomponents.py: Added a method
2475     to find a tree item for a given name.
2476    
2477     * tools/formed/formed/plugins/web/semantic.py: New: Box for
2478     semantic checking. Has check for integers.
2479    
2480     * tools/formed/formed/plugins/web/plugin.py: Use semantic
2481     check.
2482    
2483 teichmann 183 2007-08-20 Torsten Irlaender <[email protected]>
2484 torsten 58
2485     * tools/formed/formed/plugins/web/renderer.py: Fixed Syntax in
2486     selection-field generation (Removed quote)
2487    
2488 teichmann 54 2007-08-18 Sascha L. Teichmann <[email protected]>
2489    
2490 teichmann 57 * tools/formed/formed/plugins/web/plugin.py,
2491     tools/formed/formed/plugins/web/renderer.py: Added a
2492     simple cookie based session management to the HTML
2493     renderer. This submit parameters are stored in the
2494     session now. This will ease testing the constraint
2495     tests which need to be written soon.
2496 teichmann 183
2497 teichmann 57 BEWARE: The session management is _not_ made for production!
2498     Denial of service attacks are too easy, and the
2499     cryptographical strength of the session id is doubtful.
2500    
2501     2007-08-18 Sascha L. Teichmann <[email protected]>
2502    
2503 teichmann 56 * tools/formed/formed/plugins/web/renderer.py: Escaping text
2504     coming from the document tree now when inserting it into the
2505 teichmann 57 HTML output.
2506 teichmann 56
2507     2007-08-18 Sascha L. Teichmann <[email protected]>
2508    
2509 teichmann 55 * tools/formed/formed/plugins/plugin.py: Added a new kind
2510     of plug-in: Filter. They have a short and a long description
2511 teichmann 57 and can be hooked automatically into the new 'Filters'
2512     sub menu under 'Extra'. They got called when the user
2513     selects their respective menu item.
2514 teichmann 183
2515 teichmann 55 * tools/formed/formed/config.py: Contains the list of
2516     installed filters.
2517    
2518     * tools/formed/formed/main.py: Builds the Extra->Filters
2519     sub menu during gui initialization. The hard wired code
2520 teichmann 57 for make unique and formular name/description -> name
2521     is removed because they are implemented as filters now.
2522 teichmann 55
2523     * tools/formed/formed/model/nodecomponents.py,
2524     tools/formed/formed/model/data.py: Removed the make
2525 teichmann 57 unique and formular name/description -> name code.
2526 teichmann 55
2527     * tools/formed/formed/plugins/names,
2528     tools/formed/formed/plugins/names/__init__.py,
2529 teichmann 57 tools/formed/formed/plugins/names/filter.py: Added. Contains
2530     the make unique and formular name/description -> name code
2531     in form of filters.
2532 teichmann 55
2533     * tools/formed/test-data/simple.xml: Modified to be a better
2534     test for the formular name/description -> name filter.
2535    
2536     2007-08-18 Sascha L. Teichmann <[email protected]>
2537    
2538 teichmann 54 * tools/formed/formed.py, tools/formed/formed/main.py: First
2539     command line argument is interpreted as filename of document
2540 teichmann 57 to be loaded at program startup.
2541 teichmann 54
2542 frank 53 2007-08-17 Frank Koormann <[email protected]>
2543    
2544     * contrib/convert-formedtree2html.xsl:
2545     Heading level depending on depth of group node.
2546     In case of radio/choice/check only list of options.
2547    
2548 torsten 58 2007-08-17 Torsten Irlaender <[email protected]>
2549 torsten 50
2550 torsten 52 * contrib/convert-formedtree2html.xsl: Output is now generated with
2551     HTML doc-string and charset information in the meta-header.
2552    
2553 torsten 58 2007-08-17 Torsten Irlaender <[email protected]>
2554 torsten 52
2555 torsten 50 * contrib/convert-formedtree2html.xsl: Added small script for
2556     exporting the formed tree to html
2557    
2558 torsten 49 2007-08-17 Torsten Irlaender <[email protected]>
2559    
2560     * tools/formed/model/nodecomponents.py: Added function to rename
2561     the set the name of the node to the formularname. The formularname
2562     gets shorten to <=64 by removing vowels and is stored lowercase.
2563     If the name is not unique and additional id value is appended.
2564    
2565     * tools/formed/formed/model/data.py: Overwritten renaming-function for
2566     bool-leafs
2567    
2568     * tools/formed/formed/main.py: Added menuitem for renaming the names
2569     of the element
2570    
2571 teichmann 47 2007-08-16 Sascha L. Teichmann <[email protected]>
2572    
2573     * tools/formed/formed/main.py: Swaped order of
2574     'Make names unique' and 'Selected mode...' in Extra
2575 teichmann 183 menu and put a separator between them.
2576 teichmann 47
2577 teichmann 45 2007-08-15 Sascha L. Teichmann <[email protected]>
2578    
2579 teichmann 46 * tools/formed/formed/model/data.py: SwitchNodes can add
2580     their modes to a given set now.
2581    
2582     * tools/formed/formed/plugins/plugin.py: Simplified
2583     the plug-in interface. Only the reference to the
2584 teichmann 183 global configuration is passed at setup time.
2585 teichmann 46
2586     * tools/formed/formed/plugins/web/plugin.py: Adjusted
2587     to new plug-in setup. The traveral mode is now taken
2588 teichmann 183 from the global configuration each time a rendering
2589     is triggered. The FORMED parameter is now named
2590     'doc.mode' instead of 'web.mode'. The parameter
2591     is not needed any more because it can be configured
2592     at runtime.
2593 teichmann 46
2594     * tools/formed/formed/main.py: Adjusted to new plugin
2595     setup. Added a new menu item Extra->Select Mode...
2596 teichmann 183 to select the traversal mode. It is stored in the
2597     global config.
2598 teichmann 46
2599     * tools/formed/formed/config.py: Simplified. Only uses
2600     one env dictionary to store global configuration parameters.
2601    
2602     * tools/formed/formed/ui/controls.py: Add a control to
2603     select one item from a list of given strings.
2604    
2605     2007-08-15 Sascha L. Teichmann <[email protected]>
2606    
2607 teichmann 45 * tools/formed/formed/plugins/web/plugin.py,
2608     tools/formed/formed/plugins/web/renderer.py: Added parameter
2609 teichmann 183 print out in web plugin.
2610 teichmann 45
2611 torsten 44 2007-08-15 Torsten Irlaender <[email protected]>
2612 teichmann 45
2613 torsten 44 * contrib/convert-formedtree2csv.xsl: Added small script for
2614     exporting the formed tree to csv
2615    
2616 teichmann 41 2007-08-14 Sascha L. Teichmann <[email protected]>
2617    
2618 teichmann 42 * tools/formed/formed/model/data.py,
2619     tools/formed/formed/model/nodecomponents.py,
2620     tools/formed/formed/io/document.py: Added a 'switch' node.
2621    
2622     * tools/formed/formed/plugins/web/renderer.py:Render the
2623     new 'switch' node.
2624    
2625     * tools/formed/formed/plugins/web/plugin.py,
2626     tools/formed/formed/config.py: Added a 'web.mode' parameter
2627 teichmann 183 to FORMED environment variable.
2628     e.g. 'FORMED=web.mode:modeX' sets the mode 'modeX'.
2629     Defaults to 'default'.
2630 teichmann 42
2631     * tools/formed/test-data/simple.xml: Added test for switch.
2632    
2633     2007-08-14 Sascha L. Teichmann <[email protected]>
2634    
2635 teichmann 41 * tools/formed/formed/model/nodecomponents.py: Added an
2636     attribute 'formularname' to base class of node components.
2637    
2638 teichmann 38 2007-08-13 Sascha L. Teichmann <[email protected]>
2639    
2640 teichmann 40 * tools/formed/formed/io/document.py,
2641     tools/formed/formed/model/data.py,
2642     tools/formed/formed/model/nodecomponents.py: Added an item
2643 teichmann 183 to model external item lists.
2644 teichmann 40
2645     * tools/formed/formed/plugins/web/renderer.py: Render new item
2646     list.
2647     * tools/formed/formed/main.py: Added a forgotten 'self.'
2648    
2649     * contrib/extract-xfa-items.sh: Modified to generate
2650     documents to be loadable from new item lists
2651    
2652     2007-08-13 Sascha L. Teichmann <[email protected]>
2653    
2654 teichmann 39 * tools/formed/formed/main.py: Fixed typo
2655    
2656     2007-08-13 Sascha L. Teichmann <[email protected]>
2657    
2658 teichmann 38 * contrib/extract-xfa-items.sh: New. Can be used to extract longer
2659     choice item lists for a given field from XFA files. e.g. with
2660 teichmann 183 './contrib/extract-xfa-items.sh Muttersprache alles.xml'
2661 teichmann 38
2662 teichmann 33 2007-08-12 Sascha L. Teichmann <[email protected]>
2663    
2664 teichmann 37 * tools/formed/formed/model/data.py,
2665     tools/formed/formed/plugins/web/renderer.py,
2666 teichmann 183 tools/formed/formed/io/document.py: Changed the structure
2667     of choice constructs. The idea to hold the different items
2668     of a particular choice in a semicolon separated list was bad.
2669     Now choices are groups and the option items are modelled as
2670     embedded bools. (mainly Torsten Irländer's idea).
2671 teichmann 37
2672 teichmann 183 WARNING: this makes old document files containing choices incompatible!!!
2673     Use the following XSLT to reestablish compatibility.
2674    
2675 teichmann 37 * contrib/itemize-choices.xsl: New converts old to new structure.
2676     Needs exslt.org's string extensions (which xsltproc includes)
2677    
2678     * tools/formed/test-data/simple.xml: Ajusted to new structure
2679    
2680     * tools/formed/formed/plugins/web/plugin.py: remove debug output
2681    
2682     * tools/formed/formed/model/nodecomponents.py: fixed a small bug in
2683     node finding code. It now uses the walk() generator, too.
2684    
2685     2007-08-12 Sascha L. Teichmann <[email protected]>
2686    
2687 teichmann 36 * tools/formed/formed/main.py: Added a clone item on the toolbar which
2688     copies the currently selected item and appends it after the selection.
2689    
2690     * tools/formed/formed/model/nodecomponents.py: Added code to clone parts
2691     of the tree.
2692 teichmann 183
2693 teichmann 36 * tools/formed/formed/ui/controls.py: Added a getSelected method.
2694    
2695     * tools/formed/formed/model/misc.py: Fixed a programming bug.
2696     forgot a 'self.' prefix.
2697    
2698     2007-08-12 Sascha L. Teichmann <[email protected]>
2699    
2700 teichmann 35 * tools/formed/formed/model/nodecomponents.py: Added a method to append
2701     a second document to the current.
2702    
2703     * tools/formed/formed/main.py: Added an 'Import' file menu item to load
2704     a second document to be appended to the current.
2705    
2706     2007-08-12 Sascha L. Teichmann <[email protected]>
2707    
2708 teichmann 34 * tools/formed/formed/main.py: Added a 'New' item in file menu which creates
2709     a new document when triggered.
2710    
2711     2007-08-12 Sascha L. Teichmann <[email protected]>
2712    
2713 teichmann 33 * tools/formed/formed/model/nodecomponents.py: Added walk generator over all
2714     items in the document tree. Added a method to eliminated duplicated names
2715 teichmann 183 in document tree.
2716 teichmann 33
2717     * tools/formed/formed/model/misc.py: Added update mechanism for id generator
2718     after names collisions are eliminated.
2719    
2720     * tools/formed/formed/main.py: Added an 'Extra' menu with item
2721     'Make names unique'.
2722    
2723 teichmann 30 2007-08-11 Sascha L. Teichmann <[email protected]>
2724    
2725 teichmann 32 * tools/formed/formed/model/data.py,
2726     tools/formed/formed/plugins/web/renderer.py: Removed support
2727 teichmann 183 for 'text' attributes in bool items. They were never really
2728     used and the 'description' attributes fulfill the same
2729     purpose.
2730 teichmann 32
2731     * contrib/remove-bool-text.xsl: Transform to remove the
2732     'text' attributes from bool items. Apply with:
2733 teichmann 183 'xsltproc contrib/remove-bool-text.xsl old.xml > new.xml'
2734 teichmann 32
2735     * tools/formed/test-data/simple.xml: Removed 'text' attributes
2736     from bool items.
2737    
2738     2007-08-11 Sascha L. Teichmann <[email protected]>
2739    
2740 teichmann 31 * contrib/convert-choices.xsl: Simpified.
2741    
2742     2007-08-11 Sascha L. Teichmann <[email protected]>
2743    
2744 teichmann 30 * tools/formed/formed/model/data.py: Removed 'options' attribute
2745     from ChoiceLeaf. Use 'value' instead, please!
2746    
2747     * tools/formed/formed/plugins/web/renderer.py: use 'value' attribute
2748     instead of 'options' to render choices.
2749    
2750     * contrib/convert-choices.xsl: Added to convert document files
2751     which use the choice 'option' attribute to usage of 'value'.
2752 teichmann 183 Apply with e.g. 'xsltproc convert-choices.xsl old.xml > new.xml'
2753 teichmann 30
2754 teichmann 23 2007-08-10 Sascha L. Teichmann <[email protected]>
2755    
2756 teichmann 29 * tools/formed/formed/plugins/web/renderer.py: radio buttons
2757     are selected by 'checked' and not by 'selected'. Fixed.
2758    
2759     2007-08-10 Sascha L. Teichmann <[email protected]>
2760    
2761 teichmann 28 * tools/formed/formed/model/data.py: ChoiceLeafs are now
2762     initialized with size = 1.
2763    
2764     2007-08-10 Sascha L. Teichmann <[email protected]>
2765    
2766 teichmann 27 * tools/formed/formed/model/data.py: TextLeafs are now
2767     initialized with size = 40, maxlength = 60
2768    
2769     2007-08-10 Sascha L. Teichmann <[email protected]>
2770    
2771 teichmann 26 * tools/formed/formed/plugins/web/renderer.py: Fixed: choices
2772     are renderered with description now.
2773    
2774     2007-08-10 Sascha L. Teichmann <[email protected]>
2775    
2776 teichmann 25 * tools/formed/formed/plugins/web/renderer.py: Added rendering
2777     for date items. Added missing ids for texts and textareas.
2778    
2779     2007-08-10 Sascha L. Teichmann <[email protected]>
2780    
2781 teichmann 24 * tools/formed/formed/config.py: Evaluate the environment
2782     variable 'FORMED'. Snytax: FORMED='key1:value1;key2:value2'
2783    
2784     * tools/formed/formed/plugins/plugin.py: Give a reference
2785     to the config at setup time.
2786    
2787     * tools/formed/formed/plugins/web/plugin.py: To determine
2788     the port look at FORMED dictionary first. Key is 'web.port'.
2789 teichmann 183 e.g. FORMED='web.port:8888'
2790 teichmann 24
2791     * tools/formed/formed/main.py: Call the plugin setup with
2792     the reference to the config.
2793    
2794     2007-08-10 Sascha L. Teichmann <[email protected]>
2795    
2796 teichmann 23 * tools/formed/test-data/simple.xml: removed 'text' attributes from
2797     info tags. Use the 'value' attributes for same purpose now, please!
2798    
2799     * tools/formed/formed/model/data.py: removed text attributes from
2800     InfoLeaf.
2801    
2802     * tools/formed/formed/plugins/web/renderer.py: Rendering of info
2803     now uses the 'value' instead of the 'text' attributes.
2804    
2805 teichmann 17 2007-08-09 Sascha L. Teichmann <[email protected]>
2806 teichmann 10
2807 teichmann 22 * tools/formed/formed/model/data.py: next/prevPage() are
2808     methods of PageNode now.
2809    
2810     * tools/formed/formed/model/nodecomponents.py: findByClassAndName()
2811     is method of Document now.
2812    
2813     * tools/formed/formed/plugins/web/plugin.py: Factored out
2814     the HTML renderer.
2815    
2816     * tools/formed/formed/plugins/web/renderer.py: New: contains
2817     the HTML renderer now.
2818    
2819     * tools/formed/test-data/simple.xml: Fixed typo
2820    
2821     2007-08-09 Sascha L. Teichmann <[email protected]>
2822    
2823 teichmann 21 * tools/formed/formed/plugins/web/plugin.py: Fixed a bug
2824     in calculation of width of bounded int fields.
2825    
2826     2007-08-09 Sascha L. Teichmann <[email protected]>
2827    
2828 teichmann 20 * tools/formed/test-data/simple.xml: Make demo Int fancier.
2829    
2830     * tools/formed/formed/model/data.py: Added attributes to IntLeaf
2831    
2832     * tools/formed/formed/plugins/web/plugin.py: Added rendering for
2833     Ints
2834    
2835     2007-08-09 Sascha L. Teichmann <[email protected]>
2836    
2837 teichmann 19 * tools/formed/test-data/simple.xml: Added demo textarea
2838    
2839     * tools/formed/formed/model/data.py: Added TextAreaLeaf
2840    
2841     * tools/formed/formed/io/document.py: register builder
2842     for loading of textareas
2843    
2844     * tools/formed/formed/plugins/web/plugin.py: Added rendering
2845     for textareas.
2846    
2847     2007-08-09 Sascha L. Teichmann <[email protected]>
2848    
2849 teichmann 18 * tools/formed/test-data/simple.xml: Make demo choice fancier.
2850 teichmann 17
2851 teichmann 18 * tools/formed/formed/model/data.py: Added attributes for texts
2852    
2853     * tools/formed/formed/plugins/web/plugin.py: Added rendering
2854     for texts
2855 teichmann 17
2856 teichmann 18 2007-08-09 Sascha L. Teichmann <[email protected]>
2857    
2858     * tools/formed/test-data/simple.xml: Make demo choice fancier.
2859    
2860     * tools/formed/formed/model/data.py: Added attributes for choices.
2861    
2862 teichmann 17 * tools/formed/formed/plugins/web/plugin.py: Added rendering
2863     for choices
2864    
2865     2007-08-09 Sascha L. Teichmann <[email protected]>
2866    
2867 teichmann 16 * tools/formed/formed/model/data.py,
2868     tools/formed/formed/model/nodecomponents.py: Added new
2869 teichmann 183 attributes.
2870 teichmann 16
2871     * tools/formed/formed/plugins/web/plugin.py: Added rendering
2872     for checkboxes and radio buttons.
2873    
2874     2007-08-08 Sascha L. Teichmann <[email protected]>
2875    
2876 teichmann 15 * tools/formed/test-data/simple.xml: Added some descriptions
2877    
2878     * tools/formed/formed/model/data.py: set attributes in constructors
2879     directly.
2880    
2881     * tools/formed/formed/model/nodecomponents.py: Added description
2882     attribute in the NodeComponent base class.
2883    
2884     * tools/formed/formed/plugins/web/plugin.py: Render description
2885     as legend in fieldset for GroupNodes.
2886    
2887     2007-08-08 Sascha L. Teichmann <[email protected]>
2888    
2889 teichmann 14 * tools/formed/formed/plugins/web/plugin.py: make UTF-8
2890     output work.
2891    
2892     2007-08-08 Sascha L. Teichmann <[email protected]>
2893    
2894 teichmann 12 * tools/formed/formed/model/data.py: Added get/setText() method
2895    
2896     * tools/formed/formed/plugins/web/plugin.py: Added a first
2897     version of a recursive HTML renderer based on the document
2898 teichmann 183 tree.
2899 teichmann 12
2900     2007-08-08 Sascha L. Teichmann <[email protected]>
2901    
2902 teichmann 11 * tools/formed/formed/plugins/*: New: plug-in infrastructure.
2903    
2904     * tools/formed/formed/plugins/web/*: new: A simple web server
2905     which is intended to serve pages of the current formular.
2906    
2907     * tools/formed/formed/main.py: start the plug-ins
2908    
2909     * tools/formed/formed/config.py: configuration class. Used
2910     for the plug-ins.
2911    
2912     2007-08-08 Sascha L. Teichmann <[email protected]>
2913    
2914 teichmann 10 * tools/formed/formed/model/nodecomponents.py: Fixed broadcasting
2915     issue with zero length tree paths.
2916    
2917     * tools/formed/formed/model/misc.py: New: contains a class
2918     for generating unique ids.
2919    
2920     * tools/formed/formed/main.py: Added an instance of an
2921     unique id generator for naming of new made tree items.
2922    
2923 teichmann 7 2007-08-07 Sascha L. Teichmann <[email protected]>
2924    
2925 teichmann 9 * tools/formed/formed/main.py: Added event route document ->
2926     attribute table to get informed when selected item is delete
2927 teichmann 183 or an attribute is changed from the outside.
2928 teichmann 9
2929     * tools/formed/formed/ui/controls.py: Fixed. In older versions of
2930     wxPython 2.6.x ListCtrl.InsertStringItem takes 2 instead
2931 teichmann 183 of 3 argument. Uses icons+tooltips for tree navigation now.
2932 teichmann 9
2933     2007-08-07 Sascha L. Teichmann <[email protected]>
2934    
2935 teichmann 8 * tools/formed/formed/model/nodecomponents.py: Set name
2936     attribute in base class.
2937    
2938     * tools/formed/formed/io/document.py: Added a table
2939     names -> classes.
2940    
2941     * tools/formed/formed/main.py: Added a toolbar. Added code
2942     to create and delete tree items.
2943    
2944     * tools/formed/formed/ui/controls.py: Added code to
2945     insert and delete new tree items.
2946    
2947     2007-08-07 Sascha L. Teichmann <[email protected]>
2948    
2949 teichmann 7 * tools/formed/formed/model/nodecomponents.py: Fixed event
2950     broadcasting for attribute changes.
2951    
2952     * tools/formed/formed/ui/controls.py: Add a list/table control to
2953     edit the attributes of a selected item.
2954    
2955     * tools/formed/formed/main.py: Added code to bind the new
2956     list/table control.
2957    
2958 teichmann 4 2007-08-06 Sascha L. Teichmann <[email protected]>
2959    
2960 teichmann 6 * tools/formed/formed/main.py: Added event routes to move
2961     items in and out of groups.
2962    
2963     * tools/formed/formed/ui/controls.py: Added code to move
2964     items in and out of groups.
2965    
2966     2007-08-06 Sascha L. Teichmann <[email protected]>
2967    
2968 teichmann 5 * tools/formed/formed/model/nodecomponents.py: Fixed path
2969     calculation to root and event broadcasting
2970    
2971     * tools/formed/formed/io/factories.py: Adjust to new
2972     event broadcasting.
2973    
2974     * tools/formed/formed/main.py: Added code to move items
2975     up and down the document tree.
2976    
2977     * tools/formed/formed/ui/controls.py: Establish sort order
2978     by indices of children in parent instead of alphanum.
2979 teichmann 183 Code to move items up and down the document tree.
2980 teichmann 5
2981     * tools/formed/formed/io/document.py: Added missing imports.
2982    
2983     2007-08-06 Sascha L. Teichmann <[email protected]>
2984    
2985 teichmann 4 * tools/formed/formed.py: Added to avoid problems with
2986     ambiguous absolute module names. Thanks to Bernhard Herzog
2987    
2988     * tools/formed/formed.sh: Starts formed.py now
2989    
2990     * tools/formed/formed/main.py,
2991     tools/formed/formed/ui/controls.py: Added control to
2992 teichmann 183 move items around in tree. Has no effect by now.
2993 teichmann 4
2994 teichmann 2 2007-08-05 Sascha L. Teichmann <[email protected]>
2995    
2996 teichmann 3 * tools/formed/formed/io/parser.py: Adjusted style
2997    
2998     * tools/formed/formed/io/document.py,
2999 teichmann 4 tools/formed/formed/io/factories.py: Simplified factory
3000     model for XML loading.
3001 teichmann 3
3002     2007-08-05 Sascha L. Teichmann <[email protected]>
3003    
3004 teichmann 2 * ChangeLog: started ChangeLog
3005    
3006     * tools/formed/*: initial check-in of the Formular Editor.
3007     Not working yet. Only can load, view and store formular XML files.
3008 teichmann 183 Start it with 'tools/formed/formed.sh'.

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26