/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

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

Legend:
Removed from v.200  
changed lines
  Added in v.408

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26