/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 185 by teichmann, Mon Sep 17 16:30:44 2007 UTC revision 412 by torsten, Wed Oct 6 12:22:24 2010 UTC
# Line 1  Line 1 
1    2010-10-06  Torsten Irlaender <[email protected]>
2    
3            * formed/formed/plugins/export/rules_sh.py (generate_tagging): Fixed
4            gerating SQL for Rules
5            * formed/formed/plugins/export/rules_sh.py (sql_date): Fixed sql_date
6            function.
7    
8    2010-10-05  Torsten Irländer <[email protected]>
9    
10            * formed/formed/model/data.py: Fixed error when setting tag attribute.
11            * formed/formed/plugins/export/rules_sh.py: Added generating exporting
12              tagging-xml
13            * formed/formed/plugins/modify/rules.py: Do not generate automatic
14              tagids for rules.
15    
16    2010-10-04  Torsten Irländer <[email protected]>
17    
18            * formed/formed/model/data.py (RuleLeaf.__init__): Added new attribute
19            "tag" for rule-leafs
20            * formed/formed/config.py: Added export rules as XML to Menu
21            * formed/formed/plugins/modify/rules.py
22            (GenerateRequiredRules.generateDateSequenceRules): Generate automatic
23            tag ids for date-sequence rules
24    
25    2010-09-30  Torsten Irländer <[email protected]>
26    
27            * formed/formed/plugins/export/rules_sh.py
28            (ExportRulesAsSH.doExport): Filter out duplicted rules.
29    
30    2010-09-20  Frank Koormann   <[email protected]>
31    
32            * formed/formed/plugins/export/latex.py (RecursiveExporter):
33            Add "required"-field information to output and include
34            choice list contents.
35    
36    2010-09-16  Bernhard Herzog  <[email protected]>
37    
38            Avoid database deadlocks that can happen when database clients try
39            to work with the same case using two separate database
40            connections.  See mpuls/issue1145 for details.
41    
42            * formed/formed/plugins/export/rg_sql.py (SQL_TEMPLATE): Split the
43            computation of the new json structure description into the new
44            database function compute_case_structure
45            (TRIGGER_TMPL): Change the trigger functions to immediately update
46            the cached json structure description instead of just setting the
47            modified flag.  This avoids the lazy recomputation that makes what
48            seems like a read-only access (calling get_case_structure) into a
49            writing access (updates of the cache).  The writes lock the row in
50            the case_structure table which prevent other connections from
51            accessing the same case.  As part of this, the delete triggers are
52            now AFTER triggers because the repeat groups instance must have
53            been removed when the structure is recomputed.
54            (SUBSELECT_TMPL): Since the delete trigger is now an after
55            trigger, we need to change the way the master id is computed.  We
56            cannot join with the repeatgroup table in question because the row
57            has already been deleted.  However, we can use the master_id
58            column of the OLD row to select the row of the parent table.
59            (create_triggers): Avoid the inner joins with the current repeat
60            group for the above mentioned reasons.  In the very common case of
61            repeat groups which are direct children of the master_tbl, we can
62            compare the master_tbl.id directly with the row's master_id.
63    
64    2010-09-14 Roland Geider <[email protected]>
65    
66            * formed/formed/plugins/export/xsd.py: issue1131: update XSD for new
67              formedtree structure
68    
69    2010-09-01 Roland Geider <[email protected]>
70    
71            * formed/formed/plugins/modify/rules.py: issue1050: mandatory fields
72              appearing double.
73              The problem was that the way the formEditor handled fields with
74              manually created rules changed. Instead of ignoring fields (very
75              early behaviour) or always generating them (early behaviour), now the
76              formED will only ignore fields with rules which name starts with
77              'required-rule-manual'. This is helpful when the rules for mandatory
78              fields are more complex (e.g. mother's name is only required if
79              mother is known).
80    
81    2010-08-10  Torsten Irländer <[email protected]>
82    
83            * contrib/diff_formed.py: New helperscript to diff to given
84              formedtrees
85    
86    2010-08-09      Roland Geider <[email protected]>
87    
88            * formed/model/exprtree.py: fixed typo
89    
90    2010-08-04  Bernhard Herzog  <[email protected]>
91    
92            * formed/po/de_DE.po: Update translations
93    
94    2010-08-04  Bernhard Herzog  <[email protected]>
95    
96            * formed/po/formed.pot: Regenerated.
97    
98            * formed/po/de_DE.po: Update.
99    
100    2010-08-04  Bernhard Herzog  <[email protected]>
101    
102            * formed/po/Makefile: Use correct filename of the pot-file in the
103            usage message
104    
105    2010-08-04  Bernhard Herzog  <[email protected]>
106    
107            * formed/po/Makefile (LIST_POTFILES): Sort the file names to make
108            the order of entries in the .pot-file more predictable.
109    
110    2010-08-04  Bernhard Herzog  <[email protected]>
111    
112            * formed/formed/model/nodecomponents.py (RootNode.__init__)
113            (RootNode.getVersion, RootNode.setVersion): Add attribute
114            "version" and accessor methods.
115    
116            * formed/formed/main.py (MainFrame.OnSetDocumentVersion): New. Let
117            the user set the document version.
118            (MainFrame._createMenuBar): Add menu item for OnSetDocumentVersion
119    
120    2010-08-02  Bernhard Herzog  <[email protected]>
121    
122            * formed/formed.py, formed/formed/io/document.py,
123            formed/formed/io/factories.py, formed/formed/io/parser.py,
124            formed/formed/model/data.py, formed/formed/model/event.py,
125            formed/formed/model/expr.py, formed/formed/model/exprtree.py,
126            formed/formed/model/memory.py, formed/formed/model/misc.py,
127            formed/formed/model/nodecomponents.py,
128            formed/formed/model/persistent.py: Fix coding declaration to be
129            acceptable to both python and Emacs.
130    
131    2010-07-29  Torsten Irländer <[email protected]>
132    
133            * formed/formed/model/data.py: Added "invisible" attribute to
134            BoolLeafs. This can be used to hide options in choicelists. so the
135            user can not select the value in the user interface. But the db will
136            have this option so is ist still present in the db an can be used
137            * formed/formed/model/exprtree.py: Added "days" function.
138    
139    2010-07-26      Roland Geider <[email protected]>
140    
141            * formed/formed/model/nodecomponents.py,
142              formed/formed/plugins/modify/rules.py: generated date rules take
143              into consideration repeat groups
144    
145    2010-07-21  Torsten Irländer <[email protected]>
146    
147            Issue870
148    
149            * formed/formed/plugins/modify/rules.py (descriptions): Do not collect
150            all headers to the referenced fields. Only list labels of the error
151            fields, which should be distinct enough.
152    
153            Issue851
154    
155            * formed/formed/model/data.py
156              formed/formed/plugins/export/new_sql.py
157              formed/formed/plugins/web/view_renderer.py
158              formed/formed/io/document.py
159              formed/formed/config.py: Added Float-Field to Formed
160    
161    2010-06-11  Bernhard Herzog  <[email protected]>
162    
163            * formed/formed/plugins/export/rg_sql.py
164            (CREATE_DELETE_MASTER_TMPL): In create_master_tbl, call
165            create_master_ds to create the master tbl entry.  This way we can
166            add SQL code that's specific to an MPuls instance to
167            create_master_ds and still have create_master_tbl use that new
168            code.  This is useful for e.g. the JMD-Struktur part.
169    
170    2010-06-02      Roland Geider <[email protected]>
171    
172            * formed/formed/plugins/modify/rules.py: make the names of generated
173              date-sequence-rules unique
174    
175    2010-06-02      Roland Geider <[email protected]>
176    
177            * formed/plugins/export/xls.py: updated regular expression
178    
179    2010-05-17      Frank Koormann <[email protected]>
180    
181            * formed/formed/plugins/export/latex.py: Improved section labeling.
182    
183            * formed/formed/plugins/export/xls.py:
184              Export references (ie where are the lists used).
185    
186    2010-04-30  Torsten Irländer <[email protected]>
187    
188            * formed/formed/plugins/modify/rules.py (VariableType.substitute): Do
189            not generate "%"-rules for required fields in repeat-groups.
190    
191    2010-04-28      Roland Geider <[email protected]>
192    
193            * formed/plugins/export/xls.py: Radiogroups are exported
194            * formed/plugins/export/xsd.py: WASKA formedtree.xml validates XSD
195              JMD formedtree.xml validates XSD
196    
197    2010-04-08  Torsten Irländer <[email protected]>
198    
199            * formed/formed/plugins/modify/rules.py
200            (GenerateRequiredRules.generateDateSequenceRules): Add error mark to
201            rules. Generete each rule twice to be able to render errors at both
202            datefields.
203    
204    2010-04-07  Torsten Irländer <[email protected]>
205    
206            * formed/formed/plugins/export/rg_sql.py: Added "Revision"-Tag.
207    
208    2010-04-06  Torsten Irländer <[email protected]>
209    
210            * formed/formed/io/document.py (_toXML): Added comment with
211            "$Revision"-tag. This tag will/can then be substituted by the VCS.
212            * formed/formed/plugins/export/new_sql.py
213            (ExportAsSQLFilter.doExport): Added comment with
214            "$Revision"-tag. This tag will/can then be substituted by the VCS.
215            * formed/formed/model/exprtree.py: Added years operator.
216    
217    2010-03-30      Roland Geider <[email protected]>
218    
219            * formed/formed/plugins/export/latex.py: Added filter
220    
221    2010-03-25      Roland Geider <[email protected]>
222    
223            * formed/formed/plugins/export/xsd.py: Generate valid XML
224    
225    2010-02-11      Frank Koormann <[email protected]>
226    
227            * formed/formed/plugins/export/xls.py: Allow groups in choices.
228    
229    2009-12-02      Torsten Irländer <[email protected]>
230    
231            * formed/formed/plugins/export/typemap.py: do not ignore conditional
232              nodes on traversal.
233    
234    2009-11-17      Sascha L. Teichmann <[email protected]>
235    
236            * formed/formed/model/exprtree.py: Recognize '%' vars
237              in compilation. Does not eval it!
238    
239            * formed/formed/plugins/modify/rules.py: Generate '%' vars
240              for variables in repeat groups.
241    
242    2009-11-13      Sascha L. Teichmann <[email protected]>
243    
244            * formed/formed/plugins/export/typemap.py: Fixed to work
245            with new repeat group nodes.
246    
247    2009-10-28      Sascha L. Teichmann <[email protected]>
248    
249            * formed/formed/plugins/export/xsd.py,
250            formed/formed/plugins/export/sql.py,
251            formed/formed/plugins/export/new_sql.py: Allow groups in choices.
252    
253    2009-10-07      Frank Koormann <[email protected]>
254    
255            * formed/formed/plugins/export/latex.py:
256            Adjusted textprocessing to escape tex-active characters.
257    
258    2009-10-07      Sascha L. Teichmann <[email protected]>
259    
260            * formed/formed/plugins/export/html.py, formed/formed/plugins/export/latex.py,
261            formed/formed/plugins/export/html2.py: Adjusted to cope with
262            "semi-complete" implementation of logbook tree structure.
263    
264    2009-06-18      Torsten Irländer <[email protected]>
265    
266            * formed/formed/plugins/export/new_sql.py,
267              formed/formed/plugins/export/rg_sql.py: Fixed some sql errors, and
268              added permissions.
269    
270    2009-06-18      Torsten Irländer <[email protected]>
271    
272            * formed/formed/plugins/export/new_sql.py: Commented out generation of
273            page_views, as they do not work with rgroups.
274    
275    2009-06-17      Torsten Irländer <[email protected]>
276    
277            * formed/formed/plugins/export/new_sql.py: Fixed anonymize function
278            and rolenames.
279    
280    2009-06-17      Sascha L. Teichmann <[email protected]>
281    
282            * formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names.
283    
284    2009-05-26      Sascha L. Teichmann <[email protected]>
285    
286            * formed/formed/plugins/names/filter.py: small optimization.
287    
288    2009-05-26      Sascha L. Teichmann <[email protected]>
289    
290            * formed/formed/plugins/names/filter.py: Repaired unique filter for
291              nodecomponent names.
292    
293    2009-05-06      Sascha L. Teichmann <[email protected]>
294    
295            * formed/formed/plugins/export/rg_sql.py: Only create depending
296              repeat groups if no uuid is given. If a uuid is given then
297              the creation is triggered by an xml import.
298    
299    2009-04-28      Sascha L. Teichmann <[email protected]>
300    
301            * formed/formed/plugins/export/new_sql.py: New SQL schema generator to
302              replace the old one. The new one faciliates the new RepeatNode instead
303              of the Group.isRepeat() method to tell if something is to be repeated.
304    
305            * formed/formed/config.py: Use new SQL schema generator plug-in by default.
306              The old one is deactivated.
307    
308            * formed/formed/plugins/export/rg_sql.py: Fix 'rg_' naming of repeat groups.
309    
310    2009-04-28      Sascha L. Teichmann <[email protected]>
311    
312            * formed/formed/plugins/export/rg_sql.py: Added delete functions.
313              TODO: Adjust execution rights.
314    
315    2009-04-27      Sascha L. Teichmann <[email protected]>
316    
317            * formed/formed/plugins/export/rg_sql.py: Fixed $$$$ -> $$ template problems.
318              Add functions to create dataset.
319    
320    2009-04-24      Sascha L. Teichmann <[email protected]>
321    
322            * formed/formed/plugins/export/rg_sql.py: new plug-in to generate
323              tree structure functions in database.
324    
325            * formed/formed/config.py: load plug-in.
326    
327    2009-04-16      Sascha L. Teichmann <[email protected]>
328    
329            * formed/formed/model/data.py: Added 'digest' attribute to
330              RepeatNode. Removed needless methods
331    
332    2009-04-16      Sascha L. Teichmann <[email protected]>
333    
334            * formed/formed/model/exprtree.py: make 'equal' and 'not equal'
335              more readable with '=' and '<>'.
336    
337    2009-04-02      Sascha L. Teichmann <[email protected]>
338    
339            * formed/formed/plugins/export/sql.py: call anonymization
340              of uuid on anonymization of case.
341    
342    2009-03-31      Sascha L. Teichmann <[email protected]>
343    
344            * formed/formed/plugins/export/sql.py: Set uuid_id to NULL in
345              case_anonymize().
346    
347    2009-03-31      Sascha L. Teichmann <[email protected]>
348    
349            * formed/formed/model/exprtree.py: Add some code to pretty print
350              the trees infix.
351    
352            * formed/formed/plugins/export/rules.py: New. Exporter for human
353              readable rules.
354    
355            * formed/formed/plugins/export/html.py: Fixed HTML generation.
356    
357            * formed/formed/config.py: Added new new Rule export plug-in.
358    
359    2009-03-31      Sascha L. Teichmann <[email protected]>
360    
361            * formed/formed/model/exprtree.py: Fixes from server. Raise
362              exceptions if there is less or more than one element on stack
363              after compilation of expression.
364    
365    2009-03-20      Sascha L. Teichmann <[email protected]>
366    
367            * formed/formed/model/data.py: Removed debug output
368    
369            * formed/formed/plugins/modify/rules.py: Fixed error message.
370              Generate past and future rules.
371    
372    2009-03-16      Sascha L. Teichmann <[email protected]>
373    
374            * formed/formed/model/exprtree.py: Forget to call today with context.
375    
376    2009-03-16      Sascha L. Teichmann <[email protected]>
377    
378            * formed/formed/io/document.py: Fixed syntax typo.
379    
380    2009-03-16      Sascha L. Teichmann <[email protected]>
381    
382            * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
383    
384    2009-03-16      Sascha L. Teichmann <[email protected]>
385    
386            * formed/formed/model/data.py: Added ConditionalNode
387    
388            * formed/formed/io/document.py: Make ConditionalNode loadable.
389    
390    2009-03-13      Sascha L. Teichmann <[email protected]>
391    
392            * formed/formed/plugins/modify/rules.py: Make the error descriptions
393              in date sequence rules more precise.
394    
395    2009-03-13      Sascha L. Teichmann <[email protected]>
396    
397            * formed/formed/plugins/modify/rules.py: generate date sequence rules.
398    
399    2009-03-13      Sascha L. Teichmann <[email protected]>
400    
401            * formed/formed/model/exprtree.py: New tree based expression engine.
402    
403            * formed/formed/model/__init__.py, formed/formed/model/data.py:
404              Adjusted imports.
405    
406    2009-03-12      Torsten Irländer <[email protected]>
407    2009-06-17      Sascha L. Teichmann <[email protected]>
408    
409            * formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names.
410    
411    2009-05-26      Sascha L. Teichmann <[email protected]>
412    
413            * formed/formed/plugins/names/filter.py: small optimization.
414    
415    2009-05-26      Sascha L. Teichmann <[email protected]>
416    
417            * formed/formed/plugins/names/filter.py: Repaired unique filter for
418              nodecomponent names.
419    
420    2009-05-06      Sascha L. Teichmann <[email protected]>
421    
422            * formed/formed/plugins/export/rg_sql.py: Only create depending
423              repeat groups if no uuid is given. If a uuid is given then
424              the creation is triggered by an xml import.
425    
426    2009-04-28      Sascha L. Teichmann <[email protected]>
427    
428            * formed/formed/plugins/export/new_sql.py: New SQL schema generator to
429              replace the old one. The new one faciliates the new RepeatNode instead
430              of the Group.isRepeat() method to tell if something is to be repeated.
431    
432            * formed/formed/config.py: Use new SQL schema generator plug-in by default.
433              The old one is deactivated.
434    
435            * formed/formed/plugins/export/rg_sql.py: Fix 'rg_' naming of repeat groups.
436    
437    2009-04-28      Sascha L. Teichmann <[email protected]>
438    
439            * formed/formed/plugins/export/rg_sql.py: Added delete functions.
440              TODO: Adjust execution rights.
441    
442    2009-04-27      Sascha L. Teichmann <[email protected]>
443    
444            * formed/formed/plugins/export/rg_sql.py: Fixed $$$$ -> $$ template problems.
445              Add functions to create dataset.
446    
447    2009-04-24      Sascha L. Teichmann <[email protected]>
448    
449            * formed/formed/plugins/export/rg_sql.py: new plug-in to generate
450              tree structure functions in database.
451    
452            * formed/formed/config.py: load plug-in.
453    
454    2009-04-16      Sascha L. Teichmann <[email protected]>
455    
456            * formed/formed/model/data.py: Added 'digest' attribute to
457              RepeatNode. Removed needless methods
458    
459    2009-04-16      Sascha L. Teichmann <[email protected]>
460    
461            * formed/formed/model/exprtree.py: make 'equal' and 'not equal'
462              more readable with '=' and '<>'.
463    
464    2009-04-02      Sascha L. Teichmann <[email protected]>
465    
466            * formed/formed/plugins/export/sql.py: call anonymization
467              of uuid on anonymization of case.
468    
469    2009-03-31      Sascha L. Teichmann <[email protected]>
470    
471            * formed/formed/plugins/export/sql.py: Set uuid_id to NULL in
472              case_anonymize().
473    
474    2009-03-31      Sascha L. Teichmann <[email protected]>
475    
476            * formed/formed/model/exprtree.py: Add some code to pretty print
477              the trees infix.
478    
479            * formed/formed/plugins/export/rules.py: New. Exporter for human
480              readable rules.
481    
482            * formed/formed/plugins/export/html.py: Fixed HTML generation.
483    
484            * formed/formed/config.py: Added new new Rule export plug-in.
485    
486    2009-03-31      Sascha L. Teichmann <[email protected]>
487    
488            * formed/formed/model/exprtree.py: Fixes from server. Raise
489              exceptions if there is less or more than one element on stack
490              after compilation of expression.
491    
492    2009-03-20      Sascha L. Teichmann <[email protected]>
493    
494            * formed/formed/model/data.py: Removed debug output
495    
496            * formed/formed/plugins/modify/rules.py: Fixed error message.
497              Generate past and future rules.
498    
499    2009-03-16      Sascha L. Teichmann <[email protected]>
500    
501            * formed/formed/model/exprtree.py: Forget to call today with context.
502    
503    2009-03-16      Sascha L. Teichmann <[email protected]>
504    
505            * formed/formed/io/document.py: Fixed syntax typo.
506    
507    2009-03-16      Sascha L. Teichmann <[email protected]>
508    
509            * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
510    
511    2009-03-16      Sascha L. Teichmann <[email protected]>
512    
513            * formed/formed/model/data.py: Added ConditionalNode
514    
515            * formed/formed/io/document.py: Make ConditionalNode loadable.
516    
517    2009-03-13      Sascha L. Teichmann <[email protected]>
518    
519            * formed/formed/plugins/modify/rules.py: Make the error descriptions
520              in date sequence rules more precise.
521    
522    2009-03-13      Sascha L. Teichmann <[email protected]>
523    
524            * formed/formed/plugins/modify/rules.py: generate date sequence rules.
525    
526    2009-03-13      Sascha L. Teichmann <[email protected]>
527    
528            * formed/formed/model/exprtree.py: New tree based expression engine.
529    
530            * formed/formed/model/__init__.py, formed/formed/model/data.py:
531              Adjusted imports.
532    
533    2009-03-12      Torsten Irländer <[email protected]>
534    2009-06-17      Sascha L. Teichmann <[email protected]>
535    
536            * formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names.
537    
538    2009-05-26      Sascha L. Teichmann <[email protected]>
539    
540            * formed/formed/plugins/names/filter.py: small optimization.
541    
542    2009-05-26      Sascha L. Teichmann <[email protected]>
543    
544            * formed/formed/plugins/names/filter.py: Repaired unique filter for
545              nodecomponent names.
546    
547    2009-05-06      Sascha L. Teichmann <[email protected]>
548    
549            * formed/formed/plugins/export/rg_sql.py: Only create depending
550              repeat groups if no uuid is given. If a uuid is given then
551              the creation is triggered by an xml import.
552    
553    2009-04-28      Sascha L. Teichmann <[email protected]>
554    
555            * formed/formed/plugins/export/new_sql.py: New SQL schema generator to
556              replace the old one. The new one faciliates the new RepeatNode instead
557              of the Group.isRepeat() method to tell if something is to be repeated.
558    
559            * formed/formed/config.py: Use new SQL schema generator plug-in by default.
560              The old one is deactivated.
561    
562            * formed/formed/plugins/export/rg_sql.py: Fix 'rg_' naming of repeat groups.
563    
564    2009-04-28      Sascha L. Teichmann <[email protected]>
565    
566            * formed/formed/plugins/export/rg_sql.py: Added delete functions.
567              TODO: Adjust execution rights.
568    
569    2009-04-27      Sascha L. Teichmann <[email protected]>
570    
571            * formed/formed/plugins/export/rg_sql.py: Fixed $$$$ -> $$ template problems.
572              Add functions to create dataset.
573    
574    2009-04-24      Sascha L. Teichmann <[email protected]>
575    
576            * formed/formed/plugins/export/rg_sql.py: new plug-in to generate
577              tree structure functions in database.
578    
579            * formed/formed/config.py: load plug-in.
580    
581    2009-04-16      Sascha L. Teichmann <[email protected]>
582    
583            * formed/formed/model/data.py: Added 'digest' attribute to
584              RepeatNode. Removed needless methods
585    
586    2009-04-16      Sascha L. Teichmann <[email protected]>
587    
588            * formed/formed/model/exprtree.py: make 'equal' and 'not equal'
589              more readable with '=' and '<>'.
590    
591    2009-04-02      Sascha L. Teichmann <[email protected]>
592    
593            * formed/formed/plugins/export/sql.py: call anonymization
594              of uuid on anonymization of case.
595    
596    2009-03-31      Sascha L. Teichmann <[email protected]>
597    
598            * formed/formed/plugins/export/sql.py: Set uuid_id to NULL in
599              case_anonymize().
600    
601    2009-03-31      Sascha L. Teichmann <[email protected]>
602    
603            * formed/formed/model/exprtree.py: Add some code to pretty print
604              the trees infix.
605    
606            * formed/formed/plugins/export/rules.py: New. Exporter for human
607              readable rules.
608    
609            * formed/formed/plugins/export/html.py: Fixed HTML generation.
610    
611            * formed/formed/config.py: Added new new Rule export plug-in.
612    
613    2009-03-31      Sascha L. Teichmann <[email protected]>
614    
615            * formed/formed/model/exprtree.py: Fixes from server. Raise
616              exceptions if there is less or more than one element on stack
617              after compilation of expression.
618    
619    2009-03-20      Sascha L. Teichmann <[email protected]>
620    
621            * formed/formed/model/data.py: Removed debug output
622    
623            * formed/formed/plugins/modify/rules.py: Fixed error message.
624              Generate past and future rules.
625    
626    2009-03-16      Sascha L. Teichmann <[email protected]>
627    
628            * formed/formed/model/exprtree.py: Forget to call today with context.
629    
630    2009-03-16      Sascha L. Teichmann <[email protected]>
631    
632            * formed/formed/io/document.py: Fixed syntax typo.
633    
634    2009-03-16      Sascha L. Teichmann <[email protected]>
635    
636            * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
637    
638    2009-03-16      Sascha L. Teichmann <[email protected]>
639    
640            * formed/formed/model/data.py: Added ConditionalNode
641    
642            * formed/formed/io/document.py: Make ConditionalNode loadable.
643    
644    2009-03-13      Sascha L. Teichmann <[email protected]>
645    
646            * formed/formed/plugins/modify/rules.py: Make the error descriptions
647              in date sequence rules more precise.
648    
649    2009-03-13      Sascha L. Teichmann <[email protected]>
650    
651            * formed/formed/plugins/modify/rules.py: generate date sequence rules.
652    
653    2009-03-13      Sascha L. Teichmann <[email protected]>
654    
655            * formed/formed/model/exprtree.py: New tree based expression engine.
656    
657            * formed/formed/model/__init__.py, formed/formed/model/data.py:
658              Adjusted imports.
659    
660    2009-03-12      Torsten Irländer <[email protected]>
661    
662            Introduced new order attribute for date fields
663    
664            * formed/formed/model/data.py: Order fields can be used to define to
665            ordering of datefields withing the document. Needed for automatic
666            generation of consistency rules.
667    
668    2009-02-09      Sascha L. Teichmann <[email protected]>
669    
670            * formed/formed/model/data.py: Allow pages to be 'invisible'.
671    
672    2009-02-09      Sascha L. Teichmann <[email protected]>
673    
674            * formed/formed/plugins/export/sql.py: Fixed problem with
675              description reference tables of radio groups.
676    
677    2009-02-09      Sascha L. Teichmann <[email protected]>
678    
679            * formed/formed/plugins/export/sql.py: replace '-' in names
680              by '_'.
681              
682    2009-02-09      Sascha L. Teichmann <[email protected]>
683    
684            * formed/formed/plugins/export/sql.py: to figure ou which
685              tables are equal the insert statememnts are lower cased
686              and sorted before they are compared. This reduces the number
687              of generated referfence tables.
688    
689    2009-02-09      Sascha L. Teichmann <[email protected]>
690    
691            Repair SQL schema creation for radio groups.
692    
693            * formed/formed/plugins/export/sql.py: radio groups are handled
694              like choices now.
695    
696    2009-02-09      Sascha L. Teichmann <[email protected]>
697    
698            Make it startable again.
699    
700            * formed/formed/plugins/export/xls.py: Import pyExcelerator only
701              when plug-in is called.
702    
703            * formed/formed/model/nodecomponents.py: Event routing was messed up.
704              Rewired root node with document.
705    
706            * formed/formed/plugins/web/help.py: Removed old xml.ext import.
707              XXX: This breaks creating help by now!
708    
709            * formed/formed/io/parser.py: Replace old deprecated base class
710              by new one.
711    
712            * formed/formed/main.py: Do not crash if locale cannot be set.
713    
714            * formed/formed/ui/controls.py: Use document.getCase() instead
715              of document.case to prevent uninitialized dereferences.
716    
717    2009-01-22      Torsten Irländer <[email protected]>
718    
719            Implemented new XML-Format for formed xml files.
720    
721            * formed/formed/model/nodecomponents.py,
722              formed/formed/io/document.py,
723              formed/formed/main.py,
724              formed/formed/ui/controls.py: Introduced new "case" and "logbook"
725              node. Under case is the definition of the formular. logbook will
726              hold the defintion of logboog entrys. For now only the part under
727              "case" can be modified.  
728    
729    2009-01-21      Torsten Irländer <[email protected]>
730    
731            Changed way how XSD-Scheme is generated
732    
733            * formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support
734              logbookentrys. The scheme definiton is now hardcoded in the
735              exporter as it will rarely change. It logbookpart will not be
736              generated from the formedtree anymore.
737    
738    2009-01-20      Torsten Irländer <[email protected]>
739    
740            Support Logbook entrys in xsd schema export
741    
742            * formed/formed/model/data.py: Repeatnode are now handeld as
743              repeatgroups in xsd-export
744            * formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support
745              logbookentrys. The scheme will now validate against an xmlfile from
746              the offlineclient.
747    
748    2009-01-09      Torsten Irländer <[email protected]>
749    
750            Added new repeat node
751    
752            * formed/formed/model/data.py,
753              formed/formed/io/document.py: Added repeatnode to the formedtree.
754              TODO: Remove repeatgroup handling from the groupnode.
755    
756    2009-01-08      Torsten Irländer <[email protected]>
757    
758            Add isset operator to autogenerated rules.
759    
760            * formed/formed/plugins/modify/rules.py: Add issed operator to standard
761              autogenerated rules.
762    
763    2008-12-17      Frank Koormann <[email protected]>
764    
765            * formed/formed/plugins/export/latex.py: Export form as set of
766            latex tables to be included into a master document. The export
767            generates section marks to structure the form and placeholders for
768            help texts to be merged in by a post processing step.
769    
770    2008-12-04      Sascha L. Teichmann <[email protected]>
771    
772            * formed/formed/model/expr.py: Added 'today' which pushes the current date
773              on the stack.
774    
775    2008-12-03      Sascha L. Teichmann <[email protected]>
776    
777            * formed/formed/plugins/web/controllers.py: compute changeset more correctly in
778              storage of fields.
779    
780            * formed/formed/plugins/export/xsd.py: Added unknown int -999999 to integer
781              fields as an accepted value. Generate schema for radio groups too.
782    
783    2008-12-01      Torsten Irländer <[email protected]>
784    
785            Added autmatic generation of required rules
786    
787            * formed/formed/model/data.py,
788              formed/formed/model/expr.py,
789              formed/formed/plugins/modify/rules.py: Default rules for required
790              fields can now be generated.
791    
792    2008-11-28      Sascha L. Teichmann <[email protected]>
793    
794            * formed/formed/model/data.py, formed/formed/model/nodecomponents.py:
795              Ported WidgetCollector from Offline client.
796    
797            * formed/formed/plugins/modify/__init__.py, formed/formed/plugins/modify,
798              formed/formed/plugins/modify/rules.py: Stub for required rules generator.
799    
800            * formed/formed/config.py: Bind new filter to FormEd
801    
802    2008-11-27      Torsten Irländer <[email protected]>
803    
804            * formed/formed/model/data.py: Added new attribute mark for rules
805    
806    2008-11-10      Torsten Irländer <[email protected]>
807    
808            Implemented radio-matrix elements. radio elelement having the same
809            options can now be rendered in table form.
810    
811            * formed/formed/model/data.py,
812              formed/formed/io/document.py: Added new radio-matrix element to the
813              model and gui
814            * formed/formed/plugins/web/view_renderer.py: Write html-renderer for
815              the radio-matrix element.
816    
817    2008-11.03      Torsten Irländer <[email protected]>
818    
819            * formed/formed/model/data.py: Fixed import error
820    
821    2008-10-29      Sascha L. Teichmann <[email protected]>
822    
823            Relative paths in external choices are now possible. Relative paths are
824            relative to path of the master document.
825    
826            * formed/model/data.py: external choice are now storing the path to the
827              master document.
828    
829            * formed/formed/io/document.py: Pass context to SAX builder.
830    
831            * formed/formed/io/factories.py: For new created nodes look if there
832              is a method 'setLoadContext' and call it.
833    
834    2008-09-04      Sascha L. Teichmann <[email protected]>
835    
836            * doc/beschreibung.txt: New. Initial description of FormEd (german).
837    
838    2008-08-22      Sascha L. Teichmann <[email protected]>
839    
840            * formed/formed/model/nodecomponents.py: Added attribute 'flags'.
841    
842    2008-08-21      Sascha L. Teichmann <[email protected]>
843    
844            * formed/formed/io/document.py: Indent tree while saving
845            * formed/formed/main.py: removed needless print
846    
847    2008-08-15      Sascha L. Teichmann <[email protected]>
848    
849            * LICENSE: New GPLv3
850            * */*.py, *.sh: Added reference to LICENSE
851    
852    2008-08-15      Sascha L. Teichmann <[email protected]>
853    
854            * tools: removed because there a no tools any more.
855    
856    2008-08-15      Sascha L. Teichmann <[email protected]>
857    
858            * tools/formed: moved one level up because its the only
859              part of this project now.
860    
861    2008-08-15      Sascha L. Teichmann <[email protected]>
862    
863            * tools/anonym/*: Removed as it belongs to mpuls WASKA
864    
865    2008-08-15      Sascha L. Teichmann <[email protected]>
866    
867            * pdf2xfa/*: removed. It belongs to mpuls
868    
869    2008-08-13 L. Teichmann <[email protected]>
870    
871            i18n of the plug-ins:
872            * tools/formed/formed/plugins/export/diff.py,
873              tools/formed/formed/plugins/export/data.py,
874              tools/formed/formed/plugins/export/old_sql.py,
875              tools/formed/formed/plugins/export/latex.py,
876              tools/formed/formed/plugins/export/xsd.py,
877              tools/formed/formed/plugins/export/sql.py,
878              tools/formed/formed/plugins/export/typemap.py,
879              tools/formed/formed/plugins/export/html.py,
880              tools/formed/formed/plugins/export/mode.py,
881              tools/formed/formed/plugins/export/html2.py,
882              tools/formed/formed/plugins/export/xls.py,
883              tools/formed/formed/plugins/names/filter.py,
884              tools/formed/formed/plugins/plugin.py,
885              tools/formed/formed/plugins/web/help.py,
886              tools/formed/formed/plugins/web/form_renderer.py,
887              tools/formed/formed/plugins/web/plugin.py,
888              tools/formed/formed/plugins/web/error_renderer.py,
889              tools/formed/formed/plugins/web/view_renderer.py,
890              tools/formed/formed/plugins/web/semantic.py,
891              tools/formed/formed/plugins/web/cache.py,
892              tools/formed/formed/plugins/web/server.py,
893              tools/formed/formed/plugins/web/controllers.py,
894              tools/formed/formed/plugins/web/renderer.py,
895              tools/formed/formed/plugins/ui/controls.py,
896              tools/formed/formed/config.py: _("")s the stuff
897              tools/formed/po/formed.pot, tools/formed/po/de_DE.po:
898              extracted and translated.
899    
900    2008-08-08      Sascha L. Teichmann <[email protected]>
901    
902            First version of FormEd i18n. After checkout go to tools/formed/po/ and
903            say 'make mo'. Afterwards you can start FormEd as usual.
904    
905            * tools/formed/resources: New. Place to places ressources like *.mo files
906            * tools/formed/formed/main.py, tools/formed/formed/ui/controls.py: Add _("")s
907              
908            * tools/formed/po,
909              tools/formed/po/Makefile,
910              tools/formed/po/formed.pot,
911              tools/formed/po/de_DE.po: i18n stuff.
912    
913    2008-08-08      Sascha L. Teichmann <[email protected]>
914    
915            * tools/anonym/xmlexport.py: Only export cases which are not
916              'schwebend geloescht'.
917    
918    2008-07-23      Sascha L. Teichmann <[email protected]>
919    
920            Fixed issue472
921    
922            * tools/anonym/xmlimport.py: Regenerate dicts from current form ed tree.
923    
924    2008-07-17      Sascha L. Teichmann <[email protected]>
925    
926            * tools/anonym/xmlimport.py: removed marking of invalid cases
927            * tools/anonym/cron.importAnonXml.sh: re-inserted here.
928    
929    2008-07.07      Torsten Irländer <[email protected]>
930    
931            * tools/formed/formed/plugins/export/latex.py
932              tools/formed/formed/config.py: Added new LaTex Export. Beware this
933              is even more ugly the HTML Export.
934            * tools/formed/formed/plugins/export/html.py: Added information on
935              anonymisation to the html export.
936    
937    2008-07-07      Sascha L. Teichmann <[email protected]>
938    
939            * tools/anonym/xmlimport.py: Mark cases if they are inconsistent.
940    
941    2008-07-07      Sascha L. Teichmann <[email protected]>
942    
943            * tools/anonym/xmlimport.py: Updated to schema 1.5. (Which is incompatible to 1.4)
944    
945    2008-07-07      Sascha L. Teichmann <[email protected]>  
946            
947            * tools/formed/formed/plugins/export/html.py: Added additional column
948            to the html export with information how each field will get
949            anonymized.
950    
951    2008-07-07      Sascha L. Teichmann <[email protected]>  
952    
953            * tools/anonym/xmlimport.py: sync with productive version.
954    
955    2008-06-10      Torsten Irländer <[email protected]>
956    
957            * tools/formed/formed/plugins/export/sql.py: grant admin permission to
958              call anonymize function
959    
960    2008-05-21      Sascha L. Teichmann <[email protected]>  
961    
962            * tools/formed/formed/plugins/export/xsd.py: Brought encoding
963              back to UTF-8.
964    
965    2008-05-21      Frank Koormann <[email protected]>
966    
967            * tools/formed/formed/plugins/export/xls.py: New, export key value
968            tables as excel workbook with one sheet per table.
969    
970            * tools/formed/formed/config.py: ExportKeyValueTableAsXLS added.
971    
972    2008-05-21      Frank Koormann <[email protected]>
973    
974            * tools/formed/formed/plugins/export/xsd.py
975            (SchemaCreator._createChoice): Fix use of choices name.
976    
977    2008-04-29      Sascha L. Teichmann <[email protected]>
978    
979            * tools/formed/formed/plugins/export/xsd.py: Use substitution group
980              to allow arbitrary order of repeat groups.
981    
982    2008-04-29      Sascha L. Teichmann <[email protected]>
983    
984            * tools/formed/formed/plugins/export/xsd.py: Removed a needless
985              character.
986    
987    2008-04-29      Sascha L. Teichmann <[email protected]>
988    
989            * tools/formed/formed/plugins/export/xsd.py: Added annotations
990              to fields.
991    
992    2008-04-29      Sascha L. Teichmann <[email protected]>
993    
994            * tools/formed/formed/plugins/export/xsd.py: Added for
995              choice fields.
996    
997    2008-04-29      Sascha L. Teichmann <[email protected]>
998    
999            * tools/formed/formed/plugins/export/xsd.py: Added support for
1000              boolean fields based on enumerations.
1001    
1002    2008-04-28      Sascha L. Teichmann <[email protected]>
1003    
1004            * tools/formed/formed/plugins/export/xsd.py: Added support for
1005              date, text and textarea fields.
1006    
1007    2008-04-28      Sascha L. Teichmann <[email protected]>
1008    
1009            * tools/formed/formed/plugins/export/xsd.py: Added support for
1010              repeat groups and integer fields.
1011    
1012    2008-04-28      Sascha L. Teichmann <[email protected]>
1013    
1014            * tools/formed/formed/plugins/export/xsd.py: New. plug-in for
1015              exporting as XML schema. not ready, yet.
1016    
1017            * tools/formed/formed/config.py: Use new plug-in.
1018    
1019            * tools/formed/formed/plugins/export/sql.py: Fixed wrong GUI text.
1020    
1021    2008-04-17      Torsten Irländer <[email protected]>
1022    
1023            * tools/formed/formed/plugins/export/sql.py: Changed WHERE clause in
1024            for the views because of the new group permissions.
1025    
1026    2008-04-09      Sascha L. Teichmann <[email protected]>
1027    
1028            * tools/anonym/cron.deleteOldAnonymized.sh: New. cron job to delete
1029              old anonymized cases.
1030    
1031    2008-04-01      Sascha L. Teichmann <[email protected]>
1032    
1033            * tools/anonym/xmlexport.py: Removed "WHERE einverstaendniserklaerung = 1"
1034              from clause to select datasets.
1035              Replace ']]>' in CDATA sections with correct splitted replacement.
1036    
1037    2008-03-12      Sascha L. Teichmann <[email protected]>
1038            
1039            * tools/anonym/cron.importAnonXml.sh: Added absolut path to  xmlimport
1040              script.
1041    
1042            * tools/anonym/xmlimport.py: commented out database port from
1043              connectionstring.
1044    
1045    2008-03-12      Sascha L. Teichmann <[email protected]>
1046    
1047            * tools/formed/formed/plugins/export/sql.py: Fixed bug in generation
1048              of anonymization of repeat groups (wrong id was given).
1049    
1050    2008-03-11      Sascha L. Teichmann <[email protected]>
1051    
1052            * tools/formed/formed/plugins/export/sql.py: Generate no update
1053              statements for relations which have no anonym functions applied.
1054    
1055    2008-03-11      Sascha L. Teichmann <[email protected]>
1056    
1057            * tools/formed/formed/plugins/export/sql.py: Added a newline after
1058              'COMMIT;' in the last line.
1059    
1060    2008-03-11      Sascha L. Teichmann <[email protected]>
1061    
1062            * tools/formed/formed/plugins/export/sql.py: Fixed syntax of
1063              generated anonymize_case() function.
1064              
1065    2008-03-11      Sascha L. Teichmann <[email protected]>
1066    
1067            * tools/formed/formed/plugins/export/sql.py: Added code to
1068              generate a plpgsql function anonymize_case() that anonymized
1069              a given case and all of its depending repeat groups.
1070    
1071    2008-03-06      Sascha L. Teichmann <[email protected]>
1072    
1073            * tools/anonym/xmlimport.py: remove print of insert statement.
1074    
1075            * tools/formed/formed/plugins/export/sql.py: Print generation date in ISO.
1076    
1077    2008-03-03      Torsten Irländer <[email protected]>
1078    
1079            * anonym/cron.sendAnonXml.sh,
1080              anonym/getDbList.sh: Modified script to be used directly in the
1081              production environment (Copied running scripts from production
1082              server)
1083    
1084            * cron.importAnonXml.sh: Added deleting of ols cases. Modified script
1085              to be used in a production environment (Cpoied running script from
1086              production server)
1087    
1088            * tools/anonym/xmlexport.py: Added "WHERE" clause to SQL-Statement to
1089              ensure that only valid cases get exported
1090    
1091    2008-02-27      Sascha L. Teichmann <[email protected]>
1092    
1093            * tools/anonym/xmlimport.py: Fixed bug in date converter.
1094    
1095    2008-02-27      Sascha L. Teichmann <[email protected]>
1096    
1097            * tools/anonym/xmlimport.py: Simpilied version
1098    
1099    2008-02-27      Sascha L. Teichmann <[email protected]>
1100    
1101            * tools/anonym/cron.importAnonXml.sh: Add sudo call for
1102              xmlimport.py and parameters.
1103    
1104            * tools/anonym/xmlimport.py: Various bug fixes. Not working yet. :-/
1105    
1106            * tools/anonym/xmlexport.py: Use python interpreter without env
1107              because of sudo context.
1108    
1109    2008-02-26      Sascha L. Teichmann <[email protected]>
1110    
1111            * tools/anonym/xmlimport.py: added support for getopt. add
1112              support to force in fkz in import of case.
1113    
1114    2008-02-26      Sascha L. Teichmann <[email protected]>
1115    
1116            * tools/anonym/xmlimport.py: Implemented logic to create/update cases.
1117    
1118            * tools/anonym/html.awk: produces valid HTML.
1119    
1120    2008-02-25      Sascha L. Teichmann <[email protected]>
1121    
1122            * tools/anonym/joincsv.py: Fix a logic bug.
1123    
1124    2008-02-25      Torsten Irlaender <[email protected]>
1125    
1126            * tools/anonym/cron.importAnonXml.sh: Added shellscript for importing
1127              exportted cases. It will read all files from a directory and import
1128              the files into the DB. After that the script will cleanup the
1129              directory.
1130    
1131    2008-02-25      Torsten Irländer <[email protected]>
1132            
1133            * tools/anonym/cron.sendAnonXml.sh,
1134              tools/anonym/xmlexport.py,
1135              tools/anonym/getDbList.sh: Added shell-scripts for exporting cases
1136    
1137    2008-02-25      Sascha L. Teichmann <[email protected]>
1138    
1139            * tools/anonym/joincsv.py: Fixed typo which generated wrong number of cols.
1140    
1141    2008-02-25      Sascha L. Teichmann <[email protected]>
1142    
1143            * tools/anonym/joincsv.py: New. Joins CSV files.
1144    
1145            * tools/anonym/html.awk: New. Converts CSV to HTML
1146    
1147    2008-02-25      Sascha L. Teichmann <[email protected]>
1148    
1149            * tools/anonym/xmlimport.py: New. Added generation of
1150              update statements.
1151    
1152    2008-02-25      Sascha L. Teichmann <[email protected]>
1153    
1154            * tools/anonym/xmlimport.py: New. Base for importing
1155              XML from cron.
1156    
1157    2008-02-24      Sascha L. Teichmann <[email protected]>
1158    
1159            * tools/formed/formed/plugins/export/html2.py: New. plug-in
1160              for a simplified HTML output
1161    
1162            * tools/formed/formed/plugins/export/typemap.py: New. plug-in
1163              for dump schema as python dictionary.
1164    
1165            * tools/formed/formed/config.py: Enable new plug-ins. Out comment
1166              old stored procedure and view generators.
1167    
1168    2008-02-19      Sascha L. Teichmann <[email protected]>
1169    
1170            * tools/anonym/xmlexport.py: New. Export all cases in database
1171              as XML.
1172    
1173    2008-02-18      Sascha L. Teichmann <[email protected]>
1174    
1175            * tools/anonym/anoymncsv.py: separate field with '\t' now.
1176              all '\t's are replaced by '   ' before. '\r\n' are removed too.
1177    
1178    2008-02-15      Sascha L. Teichmann <[email protected]>
1179    
1180            * tools/anonym/anoymncsv.py: simple script to fetch anonymous
1181              data from database.
1182    
1183    2008-02-14      Sascha L. Teichmann <[email protected]>
1184    
1185            * tools/formed/formed/plugins/export/sql.py: Exchanged name
1186              erase_value with suppress_value/suppress_value2.
1187    
1188    2008-02-13      Sascha L. Teichmann <[email protected]>
1189    
1190            * tools/formed/formed/plugins/export/sql.py: output id, master_id
1191              substitute 'erase_value' with NULL value.
1192    
1193    2008-02-13      Sascha L. Teichmann <[email protected]>
1194    
1195            * tools/formed/formed/plugins/export/sql.py: output id, master_id
1196              and uuid_id in anonymiziation views too.
1197    
1198    2008-02-13      Sascha L. Teichmann <[email protected]>
1199    
1200            * tools/formed/formed/plugins/export/sql.py: Added generation
1201              of anonymiziation views for master table views and repeat group
1202              views.
1203    
1204    2008-02-13      Sascha L. Teichmann <[email protected]>
1205    
1206            * tools/formed/formed/model/nodecomponents.py: Added attribute
1207              "function"
1208    
1209            * tools/formed/formed/io/document.py: Save attributes in
1210              alphabetical order.
1211    
1212    2008-02-02      Sascha L. Teichmann <[email protected]>
1213    
1214            * tools/formed/formed/plugins/export/sql.py: Added update rule
1215              for master table and repeat groups views. Granted update right
1216              to :cm_ka_group.
1217    
1218    2008-02-01      Sascha L. Teichmann <[email protected]>
1219    
1220            * tools/formed/formed/plugins/export/sql.py: Added a column 'uuid_id'
1221              for master table and repeat groups. Also added unique constraints
1222              to these columns.
1223    
1224    2007-12-10      Sascha L. Teichmann <[email protected]>
1225    
1226            * pdf2xfa/src/de/intevation/pdfimport/ClientHandler.java: Added a system
1227              property 'root.element' to specify the name of the XML root.
1228    
1229            * pdf2xfa/startup/pdf2xfa.sh, pdf2xfa/README.TXT: Adjusted.
1230    
1231    2007-11-22      Sascha L. Teichmann <[email protected]>
1232    
1233            * pdf2xfa/startup, */pdf2xfa.sh, */pdf2xfa.init: boot scripts
1234              for GNU/Linux (tested Debian 'Etch' 4.0) by Sascha Wilde.
1235    
1236            * pdf2xfa/README.TXT: Add a remark to new boot scripts.
1237    
1238    2007-11-21      Sascha L. Teichmann <[email protected]>
1239    
1240            * pdf2xfa/src/de/intevation/pdfimport/Log.java: New.
1241              Sends logging to file.
1242    
1243            * pdf2xfa/src/de/intevation/pdfimport/Server.java,
1244              pdf2xfa/src/de/intevation/pdfimport/ClientHandler.java: Adjusted
1245              to use new logging.
1246    
1247            * pdf2xfa/README.TXT: Added remark how to use logging.
1248    
1249    2007-11-16      Frank Koormann <[email protected]>
1250    
1251            * tools/formed/formed/plugins/export/sql.py (createSchema):
1252            Append only column "bearbeiter_id", standins are modelled by a
1253            separate table.
1254    
1255    2007-11-16      Sascha L. Teichmann <[email protected]>
1256    
1257            * tools/formed/formed/model/data.py,
1258              tools/formed/formed/plugins/web/view_renderer.py:
1259              Added an invisible flag for info fields.
1260    
1261    2007-11-07      Sascha L. Teichmann <[email protected]>
1262    
1263            * tools/formed/formed/model/nodecomponents.py: Fixed a few small bugs
1264              (calling a wrong method).
1265    
1266    2007-11-07      Sascha L. Teichmann <[email protected]>
1267    
1268            * tools/formed/formed/model/nodecomponents.py: Added a field
1269              'alternative' to all node components. This might be of help to
1270              match PDF imports where the descriptions do not match.
1271    
1272    2007-10-23      Frank Koormann <[email protected]>
1273    
1274            * tools/formed/formed/plugins/export/sql.py: New WHERE-Clause for views
1275    
1276    2007-10-23      Frank Koormann <[email protected]>
1277    
1278            * tools/formed/formed/plugins/export/sql.py: Set default
1279            value (-1) for choices and bools.
1280    
1281    2007-10-21      Frank Koormann <[email protected]>
1282    
1283            * tools/formed/formed/plugins/export/sql.py: Grant statements for
1284            descriptive tables added.
1285            (Table.getName): new
1286    
1287    2007-10-21      Frank Koormann <[email protected]>
1288    
1289            * tools/formed/formed/plugins/export/sql.py: "CREATE OR REPLACE"
1290            statements for views and roles to make updates easier.
1291            Add "admin_ka" membership as third option to VIEW_WHERE_CLAUSE.
1292    
1293    2007-10-19      Frank Koormann <[email protected]>
1294    
1295            * tools/formed/formed/plugins/export/sql.py: Added GRANT statements
1296            for views. The statements are prepared for variable substitution
1297            when executing the SQL-scripts by psql.
1298    
1299    2007-10-18      Sascha L. Teichmann <[email protected]>
1300    
1301            * pdf2xfa/src/de/intevation/pdfimport/ClientHandler.java: Fixed:
1302              End of result XML was truncated because of an unflushed buffer.
1303    
1304    2007-10-17      Sascha L. Teichmann <[email protected]>
1305    
1306            * pdf2xfa/bin/build-jar.sh: New. Build production jar file.
1307    
1308            * pdf2xfa/README.TXT: Adjusted how to build production jar file
1309              and how to use it.
1310    
1311            * pdf2xfa/etc, pdf2xfa/etc/manifest.txt: New. Defines main class
1312              and iText dependency.
1313    
1314    2007-10-16      Sascha L. Teichmann <[email protected]>
1315    
1316            * tools/formed/formed/plugins/export/sql.py: Model 'Ja, Nein, Keine Angabe'
1317              are not modeled as BOOLEANs any more. That simpifies the conversion
1318              process web vs. db.
1319    
1320    2007-10-07      Sascha L. Teichmann <[email protected]>
1321    
1322            * tools/formed/formed/plugins/export/sql.py: Added the remaining
1323              UPDATE rules.
1324    
1325    2007-10-07      Sascha L. Teichmann <[email protected]>
1326    
1327            * tools/formed/formed/plugins/export/sql.py: Added UPDATE rules for some
1328              views. TODO: Test'em and implement the rest.
1329    
1330    2007-10-07      Sascha L. Teichmann <[email protected]>
1331    
1332            * tools/formed/formed/plugins/export/sql.py: Bug fix. DELETE and INSERT
1333              rules referenced none existing views.
1334    
1335    2007-10-07      Sascha L. Teichmann <[email protected]>
1336    
1337            * tools/formed/formed/plugins/export/sql.py: Added DELETE and INSERT
1338              rules for views. TODO: add UPDATE rules.
1339    
1340    2007-10-07      Sascha L. Teichmann <[email protected]>
1341    
1342            * tools/formed/formed/plugins/export/old_sql.py: New. Contains
1343              the legacy SQL export filters.
1344    
1345            * tools/formed/formed/plugins/export/sql.py: Factored out the
1346              legacy SQL export filters to old_sql.
1347    
1348            * tools/formed/formed/config.py: Adjusted to fetch legacy
1349              filters from old_sql.
1350    
1351    2007-10-06      Sascha L. Teichmann <[email protected]>
1352    
1353            * pdf2xfa/**: Initial import of the PDF to XFA server.
1354    
1355    2007-10-06      Sascha L. Teichmann <[email protected]>
1356    
1357            * tools/formed/formed/plugins/export/sql.py: Fixed bug
1358              that made choices of three elements to booleans if
1359              they have other meanings than 'Ja', 'Nein', 'keine Angabe'.
1360    
1361    2007-10-05      Sascha L. Teichmann <[email protected]>
1362    
1363            * tools/formed/formed/plugins/export/sql.py: Select ids of
1364              underlaying tables in views too.
1365    
1366    2007-10-04      Sascha L. Teichmann <[email protected]>
1367    
1368            * tools/formed/formed/plugins/export/sql.py: Create schema inside transaction.
1369              Various bug fixes.
1370    
1371    2007-10-04      Sascha L. Teichmann <[email protected]>
1372    
1373            * tools/formed/formed/model/data.py: Added GroupNode.allWidgets()
1374              to extract fields from embedded repeat groups.
1375    
1376            * tools/formed/formed/plugins/export/sql.py: The SQL exporter exports
1377              views per page too. Result not tested yet.
1378    
1379    2007-10-01      Sascha L. Teichmann <[email protected]>
1380    
1381            * tools/formed/formed/plugins/web/view_renderer.py: Ignore
1382              in-page repeat groups while rendering pages.
1383    
1384    2007-10-01      Sascha L. Teichmann <[email protected]>
1385    
1386            * tools/formed/formed/model/nodecomponents.py: Added visitor
1387              traversals for document trees.
1388    
1389            * tools/formed/formed/model/data.py: Rewrote the
1390              Page.allWidgets() method to use new visitor for
1391              tree traversal.
1392    
1393    2007-09-27      Torsten Irlaender <[email protected]>
1394    
1395            * tools/formed/formed/plugins/names/filter.py: Pages are now included
1396              in the rename by formular name  algorithm
1397    
1398    2007-09-26      Sascha L. Teichmann <[email protected]>
1399    
1400            * tools/formed/formed/model/data.py: Removed old {next|prev}Page()
1401              TODO: rewrite Page.allWidgets().
1402    
1403            * tools/formed/formed/model/nodecomponents.py: Added a method
1404              Node.firstLevel(criterion) to walk a defined line in the tree.
1405    
1406            * tools/formed/formed/plugins/export/sql.py: Extract data suitable to
1407              build views and respective joins.
1408    
1409    2007-09-26      Sascha L. Teichmann <[email protected]>
1410    
1411            * tools/formed/formed/plugins/web/plugin.py: add 'web.tidy:' flag to
1412              FORMED environment variable. If set to true tidylib is used to
1413              filter HTML content to be W3C valid. To use this feature install
1414              uTidylib.
1415    
1416            * tools/formed/formed/plugins/web/server.py: Check if MIME type is
1417              text/html and filters content through tidy if requested.
1418    
1419    2007-09-25      Torsten Irlaender <[email protected]>
1420    
1421            * tools/formed/formed/plugins/web/view_renderer.py: Small fix and
1422              cleanup of the form generation code.
1423    
1424    2007-09-21      Sascha L. Teichmann <[email protected]>
1425    
1426            * tools/formed/formed/plugins/export/sql.py: Added generation time
1427              and DROP TABLE statements to schema export.
1428    
1429    2007-09-20      Sascha L. Teichmann <[email protected]>
1430    
1431            * tools/formed/formed/plugins/export/sql.py: The tables are generated
1432              in correct topolocial order now.
1433    
1434    2007-09-20      Sascha L. Teichmann <[email protected]>
1435    
1436            * tools/formed/formed/plugins/export/mode.py: New. Filter to export
1437              a document with items that are in given mode.
1438    
1439            * tools/formed/formed/model/nodecomponents.py: Added methods to clone
1440              trees depending on selected modes.
1441    
1442            * tools/formed/formed/model/data.py, tools/formed/formed/model/expr.py:
1443              Fixed clone issue with RuleNodes.
1444    
1445            * tools/formed/formed/config.py: Use new plug-in.
1446    
1447    2007-09-17      Sascha L. Teichmann <[email protected]>
1448    
1449            * tools/formed/formed/plugins/web/view_renderer.py: Make the
1450              view renderer a real view renderer. It takes a list of
1451              items now and not only a single page.
1452    
1453            * tools/formed/formed/plugins/web/renderer.py: Feed a list
1454              of items to the view renderer.
1455    
1456    2007-09-17      Torsten Irlaender <[email protected]>
1457    
1458            * tools/formed/formed/plugins/web/view_renderer.py:
1459              Small tweaks in rendering bools.
1460              RadioNodes (with all its children) can now be placed in a container.
1461              The radiobools will not get a surrounding <div> anymore.
1462              I am not sure if the new way results in the wanted behaivor, but the
1463              rendering results are much better now :)
1464              Maybe we need a similar approach for checkboxes?
1465              Rendering groups is still broken in some way.
1466    
1467  2007-09-17      Sascha L. Teichmann <[email protected]>  2007-09-17      Sascha L. Teichmann <[email protected]>
1468    
1469          * tools/formed/formed/plugins/web/view_renderer.py: Fixed          * tools/formed/formed/plugins/web/view_renderer.py: Fixed
1470            a few bugs: Do not render empty containers, do not            a few bugs: Do not render empty containers, do not
1471                  generate misplaced <br class="newline"> in choices.            generate misplaced <br class="newline"> in choices.
1472                  Add a nameless container to catch the items that are            Add a nameless container to catch the items that are
1473                  nor explicitly assigned to a target. Removed FormData.            nor explicitly assigned to a target. Removed FormData.
1474    
1475          * tools/formed/formed/plugins/web/renderer.py: Removed          * tools/formed/formed/plugins/web/renderer.py: Removed
1476            a needless import            a needless import

Legend:
Removed from v.185  
changed lines
  Added in v.412

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26