/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 185 by teichmann, Mon Sep 17 16:30:44 2007 UTC revision 325 by teichmann, Thu Apr 16 15:08:53 2009 UTC
# Line 1  Line 1 
1    2009-04-16      Sascha L. Teichmann <[email protected]>
2    
3            * formed/formed/model/exprtree.py: make 'equal' and 'not equal'
4              more readable with '=' and '<>'.
5    
6    2009-04-02      Sascha L. Teichmann <[email protected]>
7    
8            * formed/formed/plugins/export/sql.py: call anonymization
9              of uuid on anonymization of case.
10    
11    2009-03-31      Sascha L. Teichmann <[email protected]>
12    
13            * formed/formed/plugins/export/sql.py: Set uuid_id to NULL in
14              case_anonymize().
15    
16    2009-03-31      Sascha L. Teichmann <[email protected]>
17    
18            * formed/formed/model/exprtree.py: Add some code to pretty print
19              the trees infix.
20    
21            * formed/formed/plugins/export/rules.py: New. Exporter for human
22              readable rules.
23    
24            * formed/formed/plugins/export/html.py: Fixed HTML generation.
25    
26            * formed/formed/config.py: Added new new Rule export plug-in.
27    
28    2009-03-31      Sascha L. Teichmann <[email protected]>
29    
30            * formed/formed/model/exprtree.py: Fixes from server. Raise
31              exceptions if there is less or more than one element on stack
32              after compilation of expression.
33    
34    2009-03-20      Sascha L. Teichmann <[email protected]>
35    
36            * formed/formed/model/data.py: Removed debug output
37    
38            * formed/formed/plugins/modify/rules.py: Fixed error message.
39              Generate past and future rules.
40    
41    2009-03-16      Sascha L. Teichmann <[email protected]>
42    
43            * formed/formed/model/exprtree.py: Forget to call today with context.
44    
45    2009-03-16      Sascha L. Teichmann <[email protected]>
46    
47            * formed/formed/io/document.py: Fixed syntax typo.
48    
49    2009-03-16      Sascha L. Teichmann <[email protected]>
50    
51            * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
52    
53    2009-03-16      Sascha L. Teichmann <[email protected]>
54    
55            * formed/formed/model/data.py: Added ConditionalNode
56    
57            * formed/formed/io/document.py: Make ConditionalNode loadable.
58    
59    2009-03-13      Sascha L. Teichmann <[email protected]>
60    
61            * formed/formed/plugins/modify/rules.py: Make the error descriptions
62              in date sequence rules more precise.
63    
64    2009-03-13      Sascha L. Teichmann <[email protected]>
65    
66            * formed/formed/plugins/modify/rules.py: generate date sequence rules.
67    
68    2009-03-13      Sascha L. Teichmann <[email protected]>
69    
70            * formed/formed/model/exprtree.py: New tree based expression engine.
71    
72            * formed/formed/model/__init__.py, formed/formed/model/data.py:
73              Adjusted imports.
74    
75    2009-03-12      Torsten Irländer <[email protected]>
76    
77            Introduced new order attribute for date fields
78    
79            * formed/formed/model/data.py: Order fields can be used to define to
80            ordering of datefields withing the document. Needed for automatic
81            generation of consistency rules.
82    
83    2009-02-09      Sascha L. Teichmann <[email protected]>
84    
85            * formed/formed/model/data.py: Allow pages to be 'invisible'.
86    
87    2009-02-09      Sascha L. Teichmann <[email protected]>
88    
89            * formed/formed/plugins/export/sql.py: Fixed problem with
90              description reference tables of radio groups.
91    
92    2009-02-09      Sascha L. Teichmann <[email protected]>
93    
94            * formed/formed/plugins/export/sql.py: replace '-' in names
95              by '_'.
96              
97    2009-02-09      Sascha L. Teichmann <[email protected]>
98    
99            * formed/formed/plugins/export/sql.py: to figure ou which
100              tables are equal the insert statememnts are lower cased
101              and sorted before they are compared. This reduces the number
102              of generated referfence tables.
103    
104    2009-02-09      Sascha L. Teichmann <[email protected]>
105    
106            Repair SQL schema creation for radio groups.
107    
108            * formed/formed/plugins/export/sql.py: radio groups are handled
109              like choices now.
110    
111    2009-02-09      Sascha L. Teichmann <[email protected]>
112    
113            Make it startable again.
114    
115            * formed/formed/plugins/export/xls.py: Import pyExcelerator only
116              when plug-in is called.
117    
118            * formed/formed/model/nodecomponents.py: Event routing was messed up.
119              Rewired root node with document.
120    
121            * formed/formed/plugins/web/help.py: Removed old xml.ext import.
122              XXX: This breaks creating help by now!
123    
124            * formed/formed/io/parser.py: Replace old deprecated base class
125              by new one.
126    
127            * formed/formed/main.py: Do not crash if locale cannot be set.
128    
129            * formed/formed/ui/controls.py: Use document.getCase() instead
130              of document.case to prevent uninitialized dereferences.
131    
132    2009-01-22      Torsten Irländer <[email protected]>
133    
134            Implemented new XML-Format for formed xml files.
135    
136            * formed/formed/model/nodecomponents.py,
137              formed/formed/io/document.py,
138              formed/formed/main.py,
139              formed/formed/ui/controls.py: Introduced new "case" and "logbook"
140              node. Under case is the definition of the formular. logbook will
141              hold the defintion of logboog entrys. For now only the part under
142              "case" can be modified.  
143    
144    2009-01-21      Torsten Irländer <[email protected]>
145    
146            Changed way how XSD-Scheme is generated
147    
148            * formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support
149              logbookentrys. The scheme definiton is now hardcoded in the
150              exporter as it will rarely change. It logbookpart will not be
151              generated from the formedtree anymore.
152    
153    2009-01-20      Torsten Irländer <[email protected]>
154    
155            Support Logbook entrys in xsd schema export
156    
157            * formed/formed/model/data.py: Repeatnode are now handeld as
158              repeatgroups in xsd-export
159            * formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support
160              logbookentrys. The scheme will now validate against an xmlfile from
161              the offlineclient.
162    
163    2009-01-09      Torsten Irländer <[email protected]>
164    
165            Added new repeat node
166    
167            * formed/formed/model/data.py,
168              formed/formed/io/document.py: Added repeatnode to the formedtree.
169              TODO: Remove repeatgroup handling from the groupnode.
170    
171    2009-01-08      Torsten Irländer <[email protected]>
172    
173            Add isset operator to autogenerated rules.
174    
175            * formed/formed/plugins/modify/rules.py: Add issed operator to standard
176              autogenerated rules.
177    
178    2008-12-17      Frank Koormann <[email protected]>
179    
180            * formed/formed/plugins/export/latex.py: Export form as set of
181            latex tables to be included into a master document. The export
182            generates section marks to structure the form and placeholders for
183            help texts to be merged in by a post processing step.
184    
185    2008-12-04      Sascha L. Teichmann <[email protected]>
186    
187            * formed/formed/model/expr.py: Added 'today' which pushes the current date
188              on the stack.
189    
190    2008-12-03      Sascha L. Teichmann <[email protected]>
191    
192            * formed/formed/plugins/web/controllers.py: compute changeset more correctly in
193              storage of fields.
194    
195            * formed/formed/plugins/export/xsd.py: Added unknown int -999999 to integer
196              fields as an accepted value. Generate schema for radio groups too.
197    
198    2008-12-01      Torsten Irländer <[email protected]>
199    
200            Added autmatic generation of required rules
201    
202            * formed/formed/model/data.py,
203              formed/formed/model/expr.py,
204              formed/formed/plugins/modify/rules.py: Default rules for required
205              fields can now be generated.
206    
207    2008-11-28      Sascha L. Teichmann <[email protected]>
208    
209            * formed/formed/model/data.py, formed/formed/model/nodecomponents.py:
210              Ported WidgetCollector from Offline client.
211    
212            * formed/formed/plugins/modify/__init__.py, formed/formed/plugins/modify,
213              formed/formed/plugins/modify/rules.py: Stub for required rules generator.
214    
215            * formed/formed/config.py: Bind new filter to FormEd
216    
217    2008-11-27      Torsten Irländer <[email protected]>
218    
219            * formed/formed/model/data.py: Added new attribute mark for rules
220    
221    2008-11-10      Torsten Irländer <[email protected]>
222    
223            Implemented radio-matrix elements. radio elelement having the same
224            options can now be rendered in table form.
225    
226            * formed/formed/model/data.py,
227              formed/formed/io/document.py: Added new radio-matrix element to the
228              model and gui
229            * formed/formed/plugins/web/view_renderer.py: Write html-renderer for
230              the radio-matrix element.
231    
232    2008-11.03      Torsten Irländer <[email protected]>
233    
234            * formed/formed/model/data.py: Fixed import error
235    
236    2008-10-29      Sascha L. Teichmann <[email protected]>
237    
238            Relative paths in external choices are now possible. Relative paths are
239            relative to path of the master document.
240    
241            * formed/model/data.py: external choice are now storing the path to the
242              master document.
243    
244            * formed/formed/io/document.py: Pass context to SAX builder.
245    
246            * formed/formed/io/factories.py: For new created nodes look if there
247              is a method 'setLoadContext' and call it.
248    
249    2008-09-04      Sascha L. Teichmann <[email protected]>
250    
251            * doc/beschreibung.txt: New. Initial description of FormEd (german).
252    
253    2008-08-22      Sascha L. Teichmann <[email protected]>
254    
255            * formed/formed/model/nodecomponents.py: Added attribute 'flags'.
256    
257    2008-08-21      Sascha L. Teichmann <[email protected]>
258    
259            * formed/formed/io/document.py: Indent tree while saving
260            * formed/formed/main.py: removed needless print
261    
262    2008-08-15      Sascha L. Teichmann <[email protected]>
263    
264            * LICENSE: New GPLv3
265            * */*.py, *.sh: Added reference to LICENSE
266    
267    2008-08-15      Sascha L. Teichmann <[email protected]>
268    
269            * tools: removed because there a no tools any more.
270    
271    2008-08-15      Sascha L. Teichmann <[email protected]>
272    
273            * tools/formed: moved one level up because its the only
274              part of this project now.
275    
276    2008-08-15      Sascha L. Teichmann <[email protected]>
277    
278            * tools/anonym/*: Removed as it belongs to mpuls WASKA
279    
280    2008-08-15      Sascha L. Teichmann <[email protected]>
281    
282            * pdf2xfa/*: removed. It belongs to mpuls
283    
284    2008-08-13 L. Teichmann <[email protected]>
285    
286            i18n of the plug-ins:
287            * tools/formed/formed/plugins/export/diff.py,
288              tools/formed/formed/plugins/export/data.py,
289              tools/formed/formed/plugins/export/old_sql.py,
290              tools/formed/formed/plugins/export/latex.py,
291              tools/formed/formed/plugins/export/xsd.py,
292              tools/formed/formed/plugins/export/sql.py,
293              tools/formed/formed/plugins/export/typemap.py,
294              tools/formed/formed/plugins/export/html.py,
295              tools/formed/formed/plugins/export/mode.py,
296              tools/formed/formed/plugins/export/html2.py,
297              tools/formed/formed/plugins/export/xls.py,
298              tools/formed/formed/plugins/names/filter.py,
299              tools/formed/formed/plugins/plugin.py,
300              tools/formed/formed/plugins/web/help.py,
301              tools/formed/formed/plugins/web/form_renderer.py,
302              tools/formed/formed/plugins/web/plugin.py,
303              tools/formed/formed/plugins/web/error_renderer.py,
304              tools/formed/formed/plugins/web/view_renderer.py,
305              tools/formed/formed/plugins/web/semantic.py,
306              tools/formed/formed/plugins/web/cache.py,
307              tools/formed/formed/plugins/web/server.py,
308              tools/formed/formed/plugins/web/controllers.py,
309              tools/formed/formed/plugins/web/renderer.py,
310              tools/formed/formed/plugins/ui/controls.py,
311              tools/formed/formed/config.py: _("")s the stuff
312              tools/formed/po/formed.pot, tools/formed/po/de_DE.po:
313              extracted and translated.
314    
315    2008-08-08      Sascha L. Teichmann <[email protected]>
316    
317            First version of FormEd i18n. After checkout go to tools/formed/po/ and
318            say 'make mo'. Afterwards you can start FormEd as usual.
319    
320            * tools/formed/resources: New. Place to places ressources like *.mo files
321            * tools/formed/formed/main.py, tools/formed/formed/ui/controls.py: Add _("")s
322              
323            * tools/formed/po,
324              tools/formed/po/Makefile,
325              tools/formed/po/formed.pot,
326              tools/formed/po/de_DE.po: i18n stuff.
327    
328    2008-08-08      Sascha L. Teichmann <[email protected]>
329    
330            * tools/anonym/xmlexport.py: Only export cases which are not
331              'schwebend geloescht'.
332    
333    2008-07-23      Sascha L. Teichmann <[email protected]>
334    
335            Fixed issue472
336    
337            * tools/anonym/xmlimport.py: Regenerate dicts from current form ed tree.
338    
339    2008-07-17      Sascha L. Teichmann <[email protected]>
340    
341            * tools/anonym/xmlimport.py: removed marking of invalid cases
342            * tools/anonym/cron.importAnonXml.sh: re-inserted here.
343    
344    2008-07.07      Torsten Irländer <[email protected]>
345    
346            * tools/formed/formed/plugins/export/latex.py
347              tools/formed/formed/config.py: Added new LaTex Export. Beware this
348              is even more ugly the HTML Export.
349            * tools/formed/formed/plugins/export/html.py: Added information on
350              anonymisation to the html export.
351    
352    2008-07-07      Sascha L. Teichmann <[email protected]>
353    
354            * tools/anonym/xmlimport.py: Mark cases if they are inconsistent.
355    
356    2008-07-07      Sascha L. Teichmann <[email protected]>
357    
358            * tools/anonym/xmlimport.py: Updated to schema 1.5. (Which is incompatible to 1.4)
359    
360    2008-07-07      Sascha L. Teichmann <[email protected]>  
361            
362            * tools/formed/formed/plugins/export/html.py: Added additional column
363            to the html export with information how each field will get
364            anonymized.
365    
366    2008-07-07      Sascha L. Teichmann <[email protected]>  
367    
368            * tools/anonym/xmlimport.py: sync with productive version.
369    
370    2008-06-10      Torsten Irländer <[email protected]>
371    
372            * tools/formed/formed/plugins/export/sql.py: grant admin permission to
373              call anonymize function
374    
375    2008-05-21      Sascha L. Teichmann <[email protected]>  
376    
377            * tools/formed/formed/plugins/export/xsd.py: Brought encoding
378              back to UTF-8.
379    
380    2008-05-21      Frank Koormann <[email protected]>
381    
382            * tools/formed/formed/plugins/export/xls.py: New, export key value
383            tables as excel workbook with one sheet per table.
384    
385            * tools/formed/formed/config.py: ExportKeyValueTableAsXLS added.
386    
387    2008-05-21      Frank Koormann <[email protected]>
388    
389            * tools/formed/formed/plugins/export/xsd.py
390            (SchemaCreator._createChoice): Fix use of choices name.
391    
392    2008-04-29      Sascha L. Teichmann <[email protected]>
393    
394            * tools/formed/formed/plugins/export/xsd.py: Use substitution group
395              to allow arbitrary order of repeat groups.
396    
397    2008-04-29      Sascha L. Teichmann <[email protected]>
398    
399            * tools/formed/formed/plugins/export/xsd.py: Removed a needless
400              character.
401    
402    2008-04-29      Sascha L. Teichmann <[email protected]>
403    
404            * tools/formed/formed/plugins/export/xsd.py: Added annotations
405              to fields.
406    
407    2008-04-29      Sascha L. Teichmann <[email protected]>
408    
409            * tools/formed/formed/plugins/export/xsd.py: Added for
410              choice fields.
411    
412    2008-04-29      Sascha L. Teichmann <[email protected]>
413    
414            * tools/formed/formed/plugins/export/xsd.py: Added support for
415              boolean fields based on enumerations.
416    
417    2008-04-28      Sascha L. Teichmann <[email protected]>
418    
419            * tools/formed/formed/plugins/export/xsd.py: Added support for
420              date, text and textarea fields.
421    
422    2008-04-28      Sascha L. Teichmann <[email protected]>
423    
424            * tools/formed/formed/plugins/export/xsd.py: Added support for
425              repeat groups and integer fields.
426    
427    2008-04-28      Sascha L. Teichmann <[email protected]>
428    
429            * tools/formed/formed/plugins/export/xsd.py: New. plug-in for
430              exporting as XML schema. not ready, yet.
431    
432            * tools/formed/formed/config.py: Use new plug-in.
433    
434            * tools/formed/formed/plugins/export/sql.py: Fixed wrong GUI text.
435    
436    2008-04-17      Torsten Irländer <[email protected]>
437    
438            * tools/formed/formed/plugins/export/sql.py: Changed WHERE clause in
439            for the views because of the new group permissions.
440    
441    2008-04-09      Sascha L. Teichmann <[email protected]>
442    
443            * tools/anonym/cron.deleteOldAnonymized.sh: New. cron job to delete
444              old anonymized cases.
445    
446    2008-04-01      Sascha L. Teichmann <[email protected]>
447    
448            * tools/anonym/xmlexport.py: Removed "WHERE einverstaendniserklaerung = 1"
449              from clause to select datasets.
450              Replace ']]>' in CDATA sections with correct splitted replacement.
451    
452    2008-03-12      Sascha L. Teichmann <[email protected]>
453            
454            * tools/anonym/cron.importAnonXml.sh: Added absolut path to  xmlimport
455              script.
456    
457            * tools/anonym/xmlimport.py: commented out database port from
458              connectionstring.
459    
460    2008-03-12      Sascha L. Teichmann <[email protected]>
461    
462            * tools/formed/formed/plugins/export/sql.py: Fixed bug in generation
463              of anonymization of repeat groups (wrong id was given).
464    
465    2008-03-11      Sascha L. Teichmann <[email protected]>
466    
467            * tools/formed/formed/plugins/export/sql.py: Generate no update
468              statements for relations which have no anonym functions applied.
469    
470    2008-03-11      Sascha L. Teichmann <[email protected]>
471    
472            * tools/formed/formed/plugins/export/sql.py: Added a newline after
473              'COMMIT;' in the last line.
474    
475    2008-03-11      Sascha L. Teichmann <[email protected]>
476    
477            * tools/formed/formed/plugins/export/sql.py: Fixed syntax of
478              generated anonymize_case() function.
479              
480    2008-03-11      Sascha L. Teichmann <[email protected]>
481    
482            * tools/formed/formed/plugins/export/sql.py: Added code to
483              generate a plpgsql function anonymize_case() that anonymized
484              a given case and all of its depending repeat groups.
485    
486    2008-03-06      Sascha L. Teichmann <[email protected]>
487    
488            * tools/anonym/xmlimport.py: remove print of insert statement.
489    
490            * tools/formed/formed/plugins/export/sql.py: Print generation date in ISO.
491    
492    2008-03-03      Torsten Irländer <[email protected]>
493    
494            * anonym/cron.sendAnonXml.sh,
495              anonym/getDbList.sh: Modified script to be used directly in the
496              production environment (Copied running scripts from production
497              server)
498    
499            * cron.importAnonXml.sh: Added deleting of ols cases. Modified script
500              to be used in a production environment (Cpoied running script from
501              production server)
502    
503            * tools/anonym/xmlexport.py: Added "WHERE" clause to SQL-Statement to
504              ensure that only valid cases get exported
505    
506    2008-02-27      Sascha L. Teichmann <[email protected]>
507    
508            * tools/anonym/xmlimport.py: Fixed bug in date converter.
509    
510    2008-02-27      Sascha L. Teichmann <[email protected]>
511    
512            * tools/anonym/xmlimport.py: Simpilied version
513    
514    2008-02-27      Sascha L. Teichmann <[email protected]>
515    
516            * tools/anonym/cron.importAnonXml.sh: Add sudo call for
517              xmlimport.py and parameters.
518    
519            * tools/anonym/xmlimport.py: Various bug fixes. Not working yet. :-/
520    
521            * tools/anonym/xmlexport.py: Use python interpreter without env
522              because of sudo context.
523    
524    2008-02-26      Sascha L. Teichmann <[email protected]>
525    
526            * tools/anonym/xmlimport.py: added support for getopt. add
527              support to force in fkz in import of case.
528    
529    2008-02-26      Sascha L. Teichmann <[email protected]>
530    
531            * tools/anonym/xmlimport.py: Implemented logic to create/update cases.
532    
533            * tools/anonym/html.awk: produces valid HTML.
534    
535    2008-02-25      Sascha L. Teichmann <[email protected]>
536    
537            * tools/anonym/joincsv.py: Fix a logic bug.
538    
539    2008-02-25      Torsten Irlaender <[email protected]>
540    
541            * tools/anonym/cron.importAnonXml.sh: Added shellscript for importing
542              exportted cases. It will read all files from a directory and import
543              the files into the DB. After that the script will cleanup the
544              directory.
545    
546    2008-02-25      Torsten Irländer <[email protected]>
547            
548            * tools/anonym/cron.sendAnonXml.sh,
549              tools/anonym/xmlexport.py,
550              tools/anonym/getDbList.sh: Added shell-scripts for exporting cases
551    
552    2008-02-25      Sascha L. Teichmann <[email protected]>
553    
554            * tools/anonym/joincsv.py: Fixed typo which generated wrong number of cols.
555    
556    2008-02-25      Sascha L. Teichmann <[email protected]>
557    
558            * tools/anonym/joincsv.py: New. Joins CSV files.
559    
560            * tools/anonym/html.awk: New. Converts CSV to HTML
561    
562    2008-02-25      Sascha L. Teichmann <[email protected]>
563    
564            * tools/anonym/xmlimport.py: New. Added generation of
565              update statements.
566    
567    2008-02-25      Sascha L. Teichmann <[email protected]>
568    
569            * tools/anonym/xmlimport.py: New. Base for importing
570              XML from cron.
571    
572    2008-02-24      Sascha L. Teichmann <[email protected]>
573    
574            * tools/formed/formed/plugins/export/html2.py: New. plug-in
575              for a simplified HTML output
576    
577            * tools/formed/formed/plugins/export/typemap.py: New. plug-in
578              for dump schema as python dictionary.
579    
580            * tools/formed/formed/config.py: Enable new plug-ins. Out comment
581              old stored procedure and view generators.
582    
583    2008-02-19      Sascha L. Teichmann <[email protected]>
584    
585            * tools/anonym/xmlexport.py: New. Export all cases in database
586              as XML.
587    
588    2008-02-18      Sascha L. Teichmann <[email protected]>
589    
590            * tools/anonym/anoymncsv.py: separate field with '\t' now.
591              all '\t's are replaced by '   ' before. '\r\n' are removed too.
592    
593    2008-02-15      Sascha L. Teichmann <[email protected]>
594    
595            * tools/anonym/anoymncsv.py: simple script to fetch anonymous
596              data from database.
597    
598    2008-02-14      Sascha L. Teichmann <[email protected]>
599    
600            * tools/formed/formed/plugins/export/sql.py: Exchanged name
601              erase_value with suppress_value/suppress_value2.
602    
603    2008-02-13      Sascha L. Teichmann <[email protected]>
604    
605            * tools/formed/formed/plugins/export/sql.py: output id, master_id
606              substitute 'erase_value' with NULL value.
607    
608    2008-02-13      Sascha L. Teichmann <[email protected]>
609    
610            * tools/formed/formed/plugins/export/sql.py: output id, master_id
611              and uuid_id in anonymiziation views too.
612    
613    2008-02-13      Sascha L. Teichmann <[email protected]>
614    
615            * tools/formed/formed/plugins/export/sql.py: Added generation
616              of anonymiziation views for master table views and repeat group
617              views.
618    
619    2008-02-13      Sascha L. Teichmann <[email protected]>
620    
621            * tools/formed/formed/model/nodecomponents.py: Added attribute
622              "function"
623    
624            * tools/formed/formed/io/document.py: Save attributes in
625              alphabetical order.
626    
627    2008-02-02      Sascha L. Teichmann <[email protected]>
628    
629            * tools/formed/formed/plugins/export/sql.py: Added update rule
630              for master table and repeat groups views. Granted update right
631              to :cm_ka_group.
632    
633    2008-02-01      Sascha L. Teichmann <[email protected]>
634    
635            * tools/formed/formed/plugins/export/sql.py: Added a column 'uuid_id'
636              for master table and repeat groups. Also added unique constraints
637              to these columns.
638    
639    2007-12-10      Sascha L. Teichmann <[email protected]>
640    
641            * pdf2xfa/src/de/intevation/pdfimport/ClientHandler.java: Added a system
642              property 'root.element' to specify the name of the XML root.
643    
644            * pdf2xfa/startup/pdf2xfa.sh, pdf2xfa/README.TXT: Adjusted.
645    
646    2007-11-22      Sascha L. Teichmann <[email protected]>
647    
648            * pdf2xfa/startup, */pdf2xfa.sh, */pdf2xfa.init: boot scripts
649              for GNU/Linux (tested Debian 'Etch' 4.0) by Sascha Wilde.
650    
651            * pdf2xfa/README.TXT: Add a remark to new boot scripts.
652    
653    2007-11-21      Sascha L. Teichmann <[email protected]>
654    
655            * pdf2xfa/src/de/intevation/pdfimport/Log.java: New.
656              Sends logging to file.
657    
658            * pdf2xfa/src/de/intevation/pdfimport/Server.java,
659              pdf2xfa/src/de/intevation/pdfimport/ClientHandler.java: Adjusted
660              to use new logging.
661    
662            * pdf2xfa/README.TXT: Added remark how to use logging.
663    
664    2007-11-16      Frank Koormann <[email protected]>
665    
666            * tools/formed/formed/plugins/export/sql.py (createSchema):
667            Append only column "bearbeiter_id", standins are modelled by a
668            separate table.
669    
670    2007-11-16      Sascha L. Teichmann <[email protected]>
671    
672            * tools/formed/formed/model/data.py,
673              tools/formed/formed/plugins/web/view_renderer.py:
674              Added an invisible flag for info fields.
675    
676    2007-11-07      Sascha L. Teichmann <[email protected]>
677    
678            * tools/formed/formed/model/nodecomponents.py: Fixed a few small bugs
679              (calling a wrong method).
680    
681    2007-11-07      Sascha L. Teichmann <[email protected]>
682    
683            * tools/formed/formed/model/nodecomponents.py: Added a field
684              'alternative' to all node components. This might be of help to
685              match PDF imports where the descriptions do not match.
686    
687    2007-10-23      Frank Koormann <[email protected]>
688    
689            * tools/formed/formed/plugins/export/sql.py: New WHERE-Clause for views
690    
691    2007-10-23      Frank Koormann <[email protected]>
692    
693            * tools/formed/formed/plugins/export/sql.py: Set default
694            value (-1) for choices and bools.
695    
696    2007-10-21      Frank Koormann <[email protected]>
697    
698            * tools/formed/formed/plugins/export/sql.py: Grant statements for
699            descriptive tables added.
700            (Table.getName): new
701    
702    2007-10-21      Frank Koormann <[email protected]>
703    
704            * tools/formed/formed/plugins/export/sql.py: "CREATE OR REPLACE"
705            statements for views and roles to make updates easier.
706            Add "admin_ka" membership as third option to VIEW_WHERE_CLAUSE.
707    
708    2007-10-19      Frank Koormann <[email protected]>
709    
710            * tools/formed/formed/plugins/export/sql.py: Added GRANT statements
711            for views. The statements are prepared for variable substitution
712            when executing the SQL-scripts by psql.
713    
714    2007-10-18      Sascha L. Teichmann <[email protected]>
715    
716            * pdf2xfa/src/de/intevation/pdfimport/ClientHandler.java: Fixed:
717              End of result XML was truncated because of an unflushed buffer.
718    
719    2007-10-17      Sascha L. Teichmann <[email protected]>
720    
721            * pdf2xfa/bin/build-jar.sh: New. Build production jar file.
722    
723            * pdf2xfa/README.TXT: Adjusted how to build production jar file
724              and how to use it.
725    
726            * pdf2xfa/etc, pdf2xfa/etc/manifest.txt: New. Defines main class
727              and iText dependency.
728    
729    2007-10-16      Sascha L. Teichmann <[email protected]>
730    
731            * tools/formed/formed/plugins/export/sql.py: Model 'Ja, Nein, Keine Angabe'
732              are not modeled as BOOLEANs any more. That simpifies the conversion
733              process web vs. db.
734    
735    2007-10-07      Sascha L. Teichmann <[email protected]>
736    
737            * tools/formed/formed/plugins/export/sql.py: Added the remaining
738              UPDATE rules.
739    
740    2007-10-07      Sascha L. Teichmann <[email protected]>
741    
742            * tools/formed/formed/plugins/export/sql.py: Added UPDATE rules for some
743              views. TODO: Test'em and implement the rest.
744    
745    2007-10-07      Sascha L. Teichmann <[email protected]>
746    
747            * tools/formed/formed/plugins/export/sql.py: Bug fix. DELETE and INSERT
748              rules referenced none existing views.
749    
750    2007-10-07      Sascha L. Teichmann <[email protected]>
751    
752            * tools/formed/formed/plugins/export/sql.py: Added DELETE and INSERT
753              rules for views. TODO: add UPDATE rules.
754    
755    2007-10-07      Sascha L. Teichmann <[email protected]>
756    
757            * tools/formed/formed/plugins/export/old_sql.py: New. Contains
758              the legacy SQL export filters.
759    
760            * tools/formed/formed/plugins/export/sql.py: Factored out the
761              legacy SQL export filters to old_sql.
762    
763            * tools/formed/formed/config.py: Adjusted to fetch legacy
764              filters from old_sql.
765    
766    2007-10-06      Sascha L. Teichmann <[email protected]>
767    
768            * pdf2xfa/**: Initial import of the PDF to XFA server.
769    
770    2007-10-06      Sascha L. Teichmann <[email protected]>
771    
772            * tools/formed/formed/plugins/export/sql.py: Fixed bug
773              that made choices of three elements to booleans if
774              they have other meanings than 'Ja', 'Nein', 'keine Angabe'.
775    
776    2007-10-05      Sascha L. Teichmann <[email protected]>
777    
778            * tools/formed/formed/plugins/export/sql.py: Select ids of
779              underlaying tables in views too.
780    
781    2007-10-04      Sascha L. Teichmann <[email protected]>
782    
783            * tools/formed/formed/plugins/export/sql.py: Create schema inside transaction.
784              Various bug fixes.
785    
786    2007-10-04      Sascha L. Teichmann <[email protected]>
787    
788            * tools/formed/formed/model/data.py: Added GroupNode.allWidgets()
789              to extract fields from embedded repeat groups.
790    
791            * tools/formed/formed/plugins/export/sql.py: The SQL exporter exports
792              views per page too. Result not tested yet.
793    
794    2007-10-01      Sascha L. Teichmann <[email protected]>
795    
796            * tools/formed/formed/plugins/web/view_renderer.py: Ignore
797              in-page repeat groups while rendering pages.
798    
799    2007-10-01      Sascha L. Teichmann <[email protected]>
800    
801            * tools/formed/formed/model/nodecomponents.py: Added visitor
802              traversals for document trees.
803    
804            * tools/formed/formed/model/data.py: Rewrote the
805              Page.allWidgets() method to use new visitor for
806              tree traversal.
807    
808    2007-09-27      Torsten Irlaender <[email protected]>
809    
810            * tools/formed/formed/plugins/names/filter.py: Pages are now included
811              in the rename by formular name  algorithm
812    
813    2007-09-26      Sascha L. Teichmann <[email protected]>
814    
815            * tools/formed/formed/model/data.py: Removed old {next|prev}Page()
816              TODO: rewrite Page.allWidgets().
817    
818            * tools/formed/formed/model/nodecomponents.py: Added a method
819              Node.firstLevel(criterion) to walk a defined line in the tree.
820    
821            * tools/formed/formed/plugins/export/sql.py: Extract data suitable to
822              build views and respective joins.
823    
824    2007-09-26      Sascha L. Teichmann <[email protected]>
825    
826            * tools/formed/formed/plugins/web/plugin.py: add 'web.tidy:' flag to
827              FORMED environment variable. If set to true tidylib is used to
828              filter HTML content to be W3C valid. To use this feature install
829              uTidylib.
830    
831            * tools/formed/formed/plugins/web/server.py: Check if MIME type is
832              text/html and filters content through tidy if requested.
833    
834    2007-09-25      Torsten Irlaender <[email protected]>
835    
836            * tools/formed/formed/plugins/web/view_renderer.py: Small fix and
837              cleanup of the form generation code.
838    
839    2007-09-21      Sascha L. Teichmann <[email protected]>
840    
841            * tools/formed/formed/plugins/export/sql.py: Added generation time
842              and DROP TABLE statements to schema export.
843    
844    2007-09-20      Sascha L. Teichmann <[email protected]>
845    
846            * tools/formed/formed/plugins/export/sql.py: The tables are generated
847              in correct topolocial order now.
848    
849    2007-09-20      Sascha L. Teichmann <[email protected]>
850    
851            * tools/formed/formed/plugins/export/mode.py: New. Filter to export
852              a document with items that are in given mode.
853    
854            * tools/formed/formed/model/nodecomponents.py: Added methods to clone
855              trees depending on selected modes.
856    
857            * tools/formed/formed/model/data.py, tools/formed/formed/model/expr.py:
858              Fixed clone issue with RuleNodes.
859    
860            * tools/formed/formed/config.py: Use new plug-in.
861    
862    2007-09-17      Sascha L. Teichmann <[email protected]>
863    
864            * tools/formed/formed/plugins/web/view_renderer.py: Make the
865              view renderer a real view renderer. It takes a list of
866              items now and not only a single page.
867    
868            * tools/formed/formed/plugins/web/renderer.py: Feed a list
869              of items to the view renderer.
870    
871    2007-09-17      Torsten Irlaender <[email protected]>
872    
873            * tools/formed/formed/plugins/web/view_renderer.py:
874              Small tweaks in rendering bools.
875              RadioNodes (with all its children) can now be placed in a container.
876              The radiobools will not get a surrounding <div> anymore.
877              I am not sure if the new way results in the wanted behaivor, but the
878              rendering results are much better now :)
879              Maybe we need a similar approach for checkboxes?
880              Rendering groups is still broken in some way.
881    
882  2007-09-17      Sascha L. Teichmann <[email protected]>  2007-09-17      Sascha L. Teichmann <[email protected]>
883    
884          * tools/formed/formed/plugins/web/view_renderer.py: Fixed          * tools/formed/formed/plugins/web/view_renderer.py: Fixed
885            a few bugs: Do not render empty containers, do not            a few bugs: Do not render empty containers, do not
886                  generate misplaced <br class="newline"> in choices.            generate misplaced <br class="newline"> in choices.
887                  Add a nameless container to catch the items that are            Add a nameless container to catch the items that are
888                  nor explicitly assigned to a target. Removed FormData.            nor explicitly assigned to a target. Removed FormData.
889    
890          * tools/formed/formed/plugins/web/renderer.py: Removed          * tools/formed/formed/plugins/web/renderer.py: Removed
891            a needless import            a needless import

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26