/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 199 by teichmann, Fri Oct 5 10:26:06 2007 UTC revision 403 by torsten, Mon Oct 4 16:19:17 2010 UTC
# Line 1  Line 1 
1  2007-10-04      Sascha L. Teichmann <[email protected]>  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    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    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    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    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    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    2010-08-10  Torsten Irländer <[email protected]>
63    
64            * contrib/diff_formed.py: New helperscript to diff to given
65              formedtrees
66    
67    2010-08-09      Roland Geider <[email protected]>
68    
69            * formed/model/exprtree.py: fixed typo
70    
71    2010-08-04  Bernhard Herzog  <[email protected]>
72    
73            * formed/po/de_DE.po: Update translations
74    
75    2010-08-04  Bernhard Herzog  <[email protected]>
76    
77            * formed/po/formed.pot: Regenerated.
78    
79            * formed/po/de_DE.po: Update.
80    
81    2010-08-04  Bernhard Herzog  <[email protected]>
82    
83            * 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            * 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            * 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    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    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            * formed/formed/model/exprtree.py: Added "days" function.
119    
120    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    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            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    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    2010-06-02      Roland Geider <[email protected]>
152    
153            * 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            * formed/plugins/export/xls.py: updated regular expression
159    
160    2010-05-17      Frank Koormann <[email protected]>
161    
162            * formed/formed/plugins/export/latex.py: Improved section labeling.
163    
164            * formed/formed/plugins/export/xls.py:
165              Export references (ie where are the lists used).
166    
167    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    2010-04-28      Roland Geider <[email protected]>
173    
174            * formed/plugins/export/xls.py: Radiogroups are exported
175            * formed/plugins/export/xsd.py: WASKA formedtree.xml validates XSD
176              JMD formedtree.xml validates XSD
177    
178    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    2010-04-07  Torsten Irländer <[email protected]>
186    
187            * formed/formed/plugins/export/rg_sql.py: Added "Revision"-Tag.
188    
189    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            * formed/formed/model/exprtree.py: Added years operator.
197    
198    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    2010-02-11      Frank Koormann <[email protected]>
207    
208            * formed/formed/plugins/export/xls.py: Allow groups in choices.
209    
210    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    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    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    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    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    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    2009-06-18      Torsten Irländer <[email protected]>
246    
247            * 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            * formed/formed/plugins/export/new_sql.py: Commented out generation of
254            page_views, as they do not work with rgroups.
255    
256    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    2009-06-17      Sascha L. Teichmann <[email protected]>
262    
263            * formed/formed/plugins/export/new_sql.py: s/-/_/ in relation names.
264    
265    2009-05-26      Sascha L. Teichmann <[email protected]>
266    
267            * formed/formed/plugins/names/filter.py: small optimization.
268    
269    2009-05-26      Sascha L. Teichmann <[email protected]>
270    
271            * formed/formed/plugins/names/filter.py: Repaired unique filter for
272              nodecomponent names.
273    
274    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    2009-04-28      Sascha L. Teichmann <[email protected]>
281    
282            * 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            * 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            * 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            * 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    2009-04-16      Sascha L. Teichmann <[email protected]>
309    
310            * formed/formed/model/data.py: Added 'digest' attribute to
311              RepeatNode. Removed needless methods
312    
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    
567    2009-04-16      Sascha L. Teichmann <[email protected]>
568    
569            * formed/formed/model/exprtree.py: make 'equal' and 'not equal'
570              more readable with '=' and '<>'.
571    
572    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    2009-03-31      Sascha L. Teichmann <[email protected]>
578    
579            * 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            * 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            * 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    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    2009-03-16      Sascha L. Teichmann <[email protected]>
608    
609            * formed/formed/model/exprtree.py: Forget to call today with context.
610    
611    2009-03-16      Sascha L. Teichmann <[email protected]>
612    
613            * formed/formed/io/document.py: Fixed syntax typo.
614    
615    2009-03-16      Sascha L. Teichmann <[email protected]>
616    
617            * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
618    
619    2009-03-16      Sascha L. Teichmann <[email protected]>
620    
621            * formed/formed/model/data.py: Added ConditionalNode
622    
623            * formed/formed/io/document.py: Make ConditionalNode loadable.
624    
625    2009-03-13      Sascha L. Teichmann <[email protected]>
626    
627            * 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            * formed/formed/plugins/modify/rules.py: generate date sequence rules.
633    
634    2009-03-13      Sascha L. Teichmann <[email protected]>
635    
636            * 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    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    2009-02-09      Sascha L. Teichmann <[email protected]>
650    
651            * formed/formed/model/data.py: Allow pages to be 'invisible'.
652    
653    2009-02-09      Sascha L. Teichmann <[email protected]>
654    
655            * formed/formed/plugins/export/sql.py: Fixed problem with
656              description reference tables of radio groups.
657    
658    2009-02-09      Sascha L. Teichmann <[email protected]>
659    
660            * formed/formed/plugins/export/sql.py: replace '-' in names
661              by '_'.
662              
663    2009-02-09      Sascha L. Teichmann <[email protected]>
664    
665            * 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    2009-02-09      Sascha L. Teichmann <[email protected]>
671    
672            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    2009-02-09      Sascha L. Teichmann <[email protected]>
678    
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    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    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    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    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    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    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    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    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    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    2008-11-27      Torsten Irländer <[email protected]>
784    
785            * formed/formed/model/data.py: Added new attribute mark for rules
786    
787    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    2008-11.03      Torsten Irländer <[email protected]>
799    
800            * formed/formed/model/data.py: Fixed import error
801    
802    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    2008-09-04      Sascha L. Teichmann <[email protected]>
816    
817            * doc/beschreibung.txt: New. Initial description of FormEd (german).
818    
819    2008-08-22      Sascha L. Teichmann <[email protected]>
820    
821            * formed/formed/model/nodecomponents.py: Added attribute 'flags'.
822    
823    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    2008-08-15      Sascha L. Teichmann <[email protected]>
829    
830            * LICENSE: New GPLv3
831            * */*.py, *.sh: Added reference to LICENSE
832    
833    2008-08-15      Sascha L. Teichmann <[email protected]>
834    
835            * tools: removed because there a no tools any more.
836    
837    2008-08-15      Sascha L. Teichmann <[email protected]>
838    
839            * 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            * tools/anonym/*: Removed as it belongs to mpuls WASKA
845    
846    2008-08-15      Sascha L. Teichmann <[email protected]>
847    
848            * pdf2xfa/*: removed. It belongs to mpuls
849    
850    2008-08-13 L. Teichmann <[email protected]>
851    
852            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            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            * tools/anonym/xmlexport.py: Only export cases which are not
897              'schwebend geloescht'.
898    
899    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    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    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    2008-07-07      Sascha L. Teichmann <[email protected]>
919    
920            * tools/anonym/xmlimport.py: Mark cases if they are inconsistent.
921    
922    2008-07-07      Sascha L. Teichmann <[email protected]>
923    
924            * tools/anonym/xmlimport.py: Updated to schema 1.5. (Which is incompatible to 1.4)
925    
926    2008-07-07      Sascha L. Teichmann <[email protected]>  
927            
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    
932    2008-07-07      Sascha L. Teichmann <[email protected]>  
933    
934            * tools/anonym/xmlimport.py: sync with productive version.
935    
936    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    2008-05-21      Sascha L. Teichmann <[email protected]>  
942    
943            * tools/formed/formed/plugins/export/xsd.py: Brought encoding
944              back to UTF-8.
945    
946    2008-05-21      Frank Koormann <[email protected]>
947    
948            * 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            * tools/formed/formed/plugins/export/xsd.py
956            (SchemaCreator._createChoice): Fix use of choices name.
957    
958    2008-04-29      Sascha L. Teichmann <[email protected]>
959    
960            * 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            * tools/formed/formed/plugins/export/xsd.py: Removed a needless
966              character.
967    
968    2008-04-29      Sascha L. Teichmann <[email protected]>
969    
970            * tools/formed/formed/plugins/export/xsd.py: Added annotations
971              to fields.
972    
973    2008-04-29      Sascha L. Teichmann <[email protected]>
974    
975            * tools/formed/formed/plugins/export/xsd.py: Added for
976              choice fields.
977    
978    2008-04-29      Sascha L. Teichmann <[email protected]>
979    
980            * tools/formed/formed/plugins/export/xsd.py: Added support for
981              boolean fields based on enumerations.
982    
983    2008-04-28      Sascha L. Teichmann <[email protected]>
984    
985            * tools/formed/formed/plugins/export/xsd.py: Added support for
986              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              repeat groups and integer fields.
992    
993    2008-04-28      Sascha L. Teichmann <[email protected]>
994    
995            * 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    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    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    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    2008-03-12      Sascha L. Teichmann <[email protected]>
1019            
1020            * tools/anonym/cron.importAnonXml.sh: Added absolut path to  xmlimport
1021              script.
1022    
1023            * tools/anonym/xmlimport.py: commented out database port from
1024              connectionstring.
1025    
1026    2008-03-12      Sascha L. Teichmann <[email protected]>
1027    
1028            * tools/formed/formed/plugins/export/sql.py: Fixed bug in generation
1029              of anonymization of repeat groups (wrong id was given).
1030    
1031    2008-03-11      Sascha L. Teichmann <[email protected]>
1032    
1033            * 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            * 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            * 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            * 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    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    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            * 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    2008-02-27      Sascha L. Teichmann <[email protected]>
1073    
1074            * tools/anonym/xmlimport.py: Fixed bug in date converter.
1075    
1076    2008-02-27      Sascha L. Teichmann <[email protected]>
1077    
1078            * tools/anonym/xmlimport.py: Simpilied version
1079    
1080    2008-02-27      Sascha L. Teichmann <[email protected]>
1081    
1082            * 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    2008-02-26      Sascha L. Teichmann <[email protected]>
1091    
1092            * 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            * tools/anonym/xmlimport.py: Implemented logic to create/update cases.
1098    
1099            * tools/anonym/html.awk: produces valid HTML.
1100    
1101    2008-02-25      Sascha L. Teichmann <[email protected]>
1102    
1103            * tools/anonym/joincsv.py: Fix a logic bug.
1104    
1105    2008-02-25      Torsten Irlaender <[email protected]>
1106    
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    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    2008-02-25      Sascha L. Teichmann <[email protected]>
1119    
1120            * tools/anonym/joincsv.py: Fixed typo which generated wrong number of cols.
1121    
1122    2008-02-25      Sascha L. Teichmann <[email protected]>
1123    
1124            * 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            * tools/anonym/xmlimport.py: New. Added generation of
1131              update statements.
1132    
1133    2008-02-25      Sascha L. Teichmann <[email protected]>
1134    
1135            * tools/anonym/xmlimport.py: New. Base for importing
1136              XML from cron.
1137    
1138    2008-02-24      Sascha L. Teichmann <[email protected]>
1139    
1140            * 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    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    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    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    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    2008-02-13      Sascha L. Teichmann <[email protected]>
1170    
1171            * tools/formed/formed/plugins/export/sql.py: output id, master_id
1172              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              and uuid_id in anonymiziation views too.
1178    
1179    2008-02-13      Sascha L. Teichmann <[email protected]>
1180    
1181            * 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            * 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    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    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    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    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    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    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    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    2007-11-07      Sascha L. Teichmann <[email protected]>
1243    
1244            * 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            * 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    2007-10-23      Frank Koormann <[email protected]>
1254    
1255            * tools/formed/formed/plugins/export/sql.py: New WHERE-Clause for views
1256    
1257    2007-10-23      Frank Koormann <[email protected]>
1258    
1259            * tools/formed/formed/plugins/export/sql.py: Set default
1260            value (-1) for choices and bools.
1261    
1262    2007-10-21      Frank Koormann <[email protected]>
1263    
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            * 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    2007-10-19      Frank Koormann <[email protected]>
1275    
1276            * 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    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    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    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    2007-10-07      Sascha L. Teichmann <[email protected]>
1302    
1303            * 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            * 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            * 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            * 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            * 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    2007-10-06      Sascha L. Teichmann <[email protected]>
1333    
1334            * pdf2xfa/**: Initial import of the PDF to XFA server.
1335    
1336    2007-10-06      Sascha L. Teichmann <[email protected]>
1337    
1338            * 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    2007-10-05      Sascha L. Teichmann <[email protected]>
1343    
1344          * tools/formed/formed/plugins/export/sql.py: Select ids of          * tools/formed/formed/plugins/export/sql.py: Select ids of
1345            underlaying tables in views too.            underlaying tables in views too.

Legend:
Removed from v.199  
changed lines
  Added in v.403

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26