/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 220 by teichmann, Thu Nov 22 08:44:28 2007 UTC revision 318 by teichmann, Mon Mar 16 13:56:19 2009 UTC
# Line 1  Line 1 
1    2009-03-16      Sascha L. Teichmann <[email protected]>
2    
3            * formed/formed/io/document.py: Fixed syntax typo.
4    
5    2009-03-16      Sascha L. Teichmann <[email protected]>
6    
7            * formed/formed/model/data.py: ConditionalNode inherits from Node directly.
8    
9    2009-03-16      Sascha L. Teichmann <[email protected]>
10    
11            * formed/formed/model/data.py: Added ConditionalNode
12    
13            * formed/formed/io/document.py: Make ConditionalNode loadable.
14    
15    2009-03-13      Sascha L. Teichmann <[email protected]>
16    
17            * formed/formed/plugins/modify/rules.py: Make the error descriptions
18              in date sequence rules more precise.
19    
20    2009-03-13      Sascha L. Teichmann <[email protected]>
21    
22            * formed/formed/plugins/modify/rules.py: generate date sequence rules.
23    
24    2009-03-13      Sascha L. Teichmann <[email protected]>
25    
26            * formed/formed/model/exprtree.py: New tree based expression engine.
27    
28            * formed/formed/model/__init__.py, formed/formed/model/data.py:
29              Adjusted imports.
30    
31    2009-03-12      Torsten Irländer <[email protected]>
32    
33            Introduced new order attribute for date fields
34    
35            * formed/formed/model/data.py: Order fields can be used to define to
36            ordering of datefields withing the document. Needed for automatic
37            generation of consistency rules.
38    
39    2009-02-09      Sascha L. Teichmann <[email protected]>
40    
41            * formed/formed/model/data.py: Allow pages to be 'invisible'.
42    
43    2009-02-09      Sascha L. Teichmann <[email protected]>
44    
45            * formed/formed/plugins/export/sql.py: Fixed problem with
46              description reference tables of radio groups.
47    
48    2009-02-09      Sascha L. Teichmann <[email protected]>
49    
50            * formed/formed/plugins/export/sql.py: replace '-' in names
51              by '_'.
52              
53    2009-02-09      Sascha L. Teichmann <[email protected]>
54    
55            * formed/formed/plugins/export/sql.py: to figure ou which
56              tables are equal the insert statememnts are lower cased
57              and sorted before they are compared. This reduces the number
58              of generated referfence tables.
59    
60    2009-02-09      Sascha L. Teichmann <[email protected]>
61    
62            Repair SQL schema creation for radio groups.
63    
64            * formed/formed/plugins/export/sql.py: radio groups are handled
65              like choices now.
66    
67    2009-02-09      Sascha L. Teichmann <[email protected]>
68    
69            Make it startable again.
70    
71            * formed/formed/plugins/export/xls.py: Import pyExcelerator only
72              when plug-in is called.
73    
74            * formed/formed/model/nodecomponents.py: Event routing was messed up.
75              Rewired root node with document.
76    
77            * formed/formed/plugins/web/help.py: Removed old xml.ext import.
78              XXX: This breaks creating help by now!
79    
80            * formed/formed/io/parser.py: Replace old deprecated base class
81              by new one.
82    
83            * formed/formed/main.py: Do not crash if locale cannot be set.
84    
85            * formed/formed/ui/controls.py: Use document.getCase() instead
86              of document.case to prevent uninitialized dereferences.
87    
88    2009-01-22      Torsten Irländer <[email protected]>
89    
90            Implemented new XML-Format for formed xml files.
91    
92            * formed/formed/model/nodecomponents.py,
93              formed/formed/io/document.py,
94              formed/formed/main.py,
95              formed/formed/ui/controls.py: Introduced new "case" and "logbook"
96              node. Under case is the definition of the formular. logbook will
97              hold the defintion of logboog entrys. For now only the part under
98              "case" can be modified.  
99    
100    2009-01-21      Torsten Irländer <[email protected]>
101    
102            Changed way how XSD-Scheme is generated
103    
104            * formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support
105              logbookentrys. The scheme definiton is now hardcoded in the
106              exporter as it will rarely change. It logbookpart will not be
107              generated from the formedtree anymore.
108    
109    2009-01-20      Torsten Irländer <[email protected]>
110    
111            Support Logbook entrys in xsd schema export
112    
113            * formed/formed/model/data.py: Repeatnode are now handeld as
114              repeatgroups in xsd-export
115            * formed/formed/plugins/export/xsd.py: Enhanced xsd schema to support
116              logbookentrys. The scheme will now validate against an xmlfile from
117              the offlineclient.
118    
119    2009-01-09      Torsten Irländer <[email protected]>
120    
121            Added new repeat node
122    
123            * formed/formed/model/data.py,
124              formed/formed/io/document.py: Added repeatnode to the formedtree.
125              TODO: Remove repeatgroup handling from the groupnode.
126    
127    2009-01-08      Torsten Irländer <[email protected]>
128    
129            Add isset operator to autogenerated rules.
130    
131            * formed/formed/plugins/modify/rules.py: Add issed operator to standard
132              autogenerated rules.
133    
134    2008-12-17      Frank Koormann <[email protected]>
135    
136            * formed/formed/plugins/export/latex.py: Export form as set of
137            latex tables to be included into a master document. The export
138            generates section marks to structure the form and placeholders for
139            help texts to be merged in by a post processing step.
140    
141    2008-12-04      Sascha L. Teichmann <[email protected]>
142    
143            * formed/formed/model/expr.py: Added 'today' which pushes the current date
144              on the stack.
145    
146    2008-12-03      Sascha L. Teichmann <[email protected]>
147    
148            * formed/formed/plugins/web/controllers.py: compute changeset more correctly in
149              storage of fields.
150    
151            * formed/formed/plugins/export/xsd.py: Added unknown int -999999 to integer
152              fields as an accepted value. Generate schema for radio groups too.
153    
154    2008-12-01      Torsten Irländer <[email protected]>
155    
156            Added autmatic generation of required rules
157    
158            * formed/formed/model/data.py,
159              formed/formed/model/expr.py,
160              formed/formed/plugins/modify/rules.py: Default rules for required
161              fields can now be generated.
162    
163    2008-11-28      Sascha L. Teichmann <[email protected]>
164    
165            * formed/formed/model/data.py, formed/formed/model/nodecomponents.py:
166              Ported WidgetCollector from Offline client.
167    
168            * formed/formed/plugins/modify/__init__.py, formed/formed/plugins/modify,
169              formed/formed/plugins/modify/rules.py: Stub for required rules generator.
170    
171            * formed/formed/config.py: Bind new filter to FormEd
172    
173    2008-11-27      Torsten Irländer <[email protected]>
174    
175            * formed/formed/model/data.py: Added new attribute mark for rules
176    
177    2008-11-10      Torsten Irländer <[email protected]>
178    
179            Implemented radio-matrix elements. radio elelement having the same
180            options can now be rendered in table form.
181    
182            * formed/formed/model/data.py,
183              formed/formed/io/document.py: Added new radio-matrix element to the
184              model and gui
185            * formed/formed/plugins/web/view_renderer.py: Write html-renderer for
186              the radio-matrix element.
187    
188    2008-11.03      Torsten Irländer <[email protected]>
189    
190            * formed/formed/model/data.py: Fixed import error
191    
192    2008-10-29      Sascha L. Teichmann <[email protected]>
193    
194            Relative paths in external choices are now possible. Relative paths are
195            relative to path of the master document.
196    
197            * formed/model/data.py: external choice are now storing the path to the
198              master document.
199    
200            * formed/formed/io/document.py: Pass context to SAX builder.
201    
202            * formed/formed/io/factories.py: For new created nodes look if there
203              is a method 'setLoadContext' and call it.
204    
205    2008-09-04      Sascha L. Teichmann <[email protected]>
206    
207            * doc/beschreibung.txt: New. Initial description of FormEd (german).
208    
209    2008-08-22      Sascha L. Teichmann <[email protected]>
210    
211            * formed/formed/model/nodecomponents.py: Added attribute 'flags'.
212    
213    2008-08-21      Sascha L. Teichmann <[email protected]>
214    
215            * formed/formed/io/document.py: Indent tree while saving
216            * formed/formed/main.py: removed needless print
217    
218    2008-08-15      Sascha L. Teichmann <[email protected]>
219    
220            * LICENSE: New GPLv3
221            * */*.py, *.sh: Added reference to LICENSE
222    
223    2008-08-15      Sascha L. Teichmann <[email protected]>
224    
225            * tools: removed because there a no tools any more.
226    
227    2008-08-15      Sascha L. Teichmann <[email protected]>
228    
229            * tools/formed: moved one level up because its the only
230              part of this project now.
231    
232    2008-08-15      Sascha L. Teichmann <[email protected]>
233    
234            * tools/anonym/*: Removed as it belongs to mpuls WASKA
235    
236    2008-08-15      Sascha L. Teichmann <[email protected]>
237    
238            * pdf2xfa/*: removed. It belongs to mpuls
239    
240    2008-08-13 L. Teichmann <[email protected]>
241    
242            i18n of the plug-ins:
243            * tools/formed/formed/plugins/export/diff.py,
244              tools/formed/formed/plugins/export/data.py,
245              tools/formed/formed/plugins/export/old_sql.py,
246              tools/formed/formed/plugins/export/latex.py,
247              tools/formed/formed/plugins/export/xsd.py,
248              tools/formed/formed/plugins/export/sql.py,
249              tools/formed/formed/plugins/export/typemap.py,
250              tools/formed/formed/plugins/export/html.py,
251              tools/formed/formed/plugins/export/mode.py,
252              tools/formed/formed/plugins/export/html2.py,
253              tools/formed/formed/plugins/export/xls.py,
254              tools/formed/formed/plugins/names/filter.py,
255              tools/formed/formed/plugins/plugin.py,
256              tools/formed/formed/plugins/web/help.py,
257              tools/formed/formed/plugins/web/form_renderer.py,
258              tools/formed/formed/plugins/web/plugin.py,
259              tools/formed/formed/plugins/web/error_renderer.py,
260              tools/formed/formed/plugins/web/view_renderer.py,
261              tools/formed/formed/plugins/web/semantic.py,
262              tools/formed/formed/plugins/web/cache.py,
263              tools/formed/formed/plugins/web/server.py,
264              tools/formed/formed/plugins/web/controllers.py,
265              tools/formed/formed/plugins/web/renderer.py,
266              tools/formed/formed/plugins/ui/controls.py,
267              tools/formed/formed/config.py: _("")s the stuff
268              tools/formed/po/formed.pot, tools/formed/po/de_DE.po:
269              extracted and translated.
270    
271    2008-08-08      Sascha L. Teichmann <[email protected]>
272    
273            First version of FormEd i18n. After checkout go to tools/formed/po/ and
274            say 'make mo'. Afterwards you can start FormEd as usual.
275    
276            * tools/formed/resources: New. Place to places ressources like *.mo files
277            * tools/formed/formed/main.py, tools/formed/formed/ui/controls.py: Add _("")s
278              
279            * tools/formed/po,
280              tools/formed/po/Makefile,
281              tools/formed/po/formed.pot,
282              tools/formed/po/de_DE.po: i18n stuff.
283    
284    2008-08-08      Sascha L. Teichmann <[email protected]>
285    
286            * tools/anonym/xmlexport.py: Only export cases which are not
287              'schwebend geloescht'.
288    
289    2008-07-23      Sascha L. Teichmann <[email protected]>
290    
291            Fixed issue472
292    
293            * tools/anonym/xmlimport.py: Regenerate dicts from current form ed tree.
294    
295    2008-07-17      Sascha L. Teichmann <[email protected]>
296    
297            * tools/anonym/xmlimport.py: removed marking of invalid cases
298            * tools/anonym/cron.importAnonXml.sh: re-inserted here.
299    
300    2008-07.07      Torsten Irländer <[email protected]>
301    
302            * tools/formed/formed/plugins/export/latex.py
303              tools/formed/formed/config.py: Added new LaTex Export. Beware this
304              is even more ugly the HTML Export.
305            * tools/formed/formed/plugins/export/html.py: Added information on
306              anonymisation to the html export.
307    
308    2008-07-07      Sascha L. Teichmann <[email protected]>
309    
310            * tools/anonym/xmlimport.py: Mark cases if they are inconsistent.
311    
312    2008-07-07      Sascha L. Teichmann <[email protected]>
313    
314            * tools/anonym/xmlimport.py: Updated to schema 1.5. (Which is incompatible to 1.4)
315    
316    2008-07-07      Sascha L. Teichmann <[email protected]>  
317            
318            * tools/formed/formed/plugins/export/html.py: Added additional column
319            to the html export with information how each field will get
320            anonymized.
321    
322    2008-07-07      Sascha L. Teichmann <[email protected]>  
323    
324            * tools/anonym/xmlimport.py: sync with productive version.
325    
326    2008-06-10      Torsten Irländer <[email protected]>
327    
328            * tools/formed/formed/plugins/export/sql.py: grant admin permission to
329              call anonymize function
330    
331    2008-05-21      Sascha L. Teichmann <[email protected]>  
332    
333            * tools/formed/formed/plugins/export/xsd.py: Brought encoding
334              back to UTF-8.
335    
336    2008-05-21      Frank Koormann <[email protected]>
337    
338            * tools/formed/formed/plugins/export/xls.py: New, export key value
339            tables as excel workbook with one sheet per table.
340    
341            * tools/formed/formed/config.py: ExportKeyValueTableAsXLS added.
342    
343    2008-05-21      Frank Koormann <[email protected]>
344    
345            * tools/formed/formed/plugins/export/xsd.py
346            (SchemaCreator._createChoice): Fix use of choices name.
347    
348    2008-04-29      Sascha L. Teichmann <[email protected]>
349    
350            * tools/formed/formed/plugins/export/xsd.py: Use substitution group
351              to allow arbitrary order of repeat groups.
352    
353    2008-04-29      Sascha L. Teichmann <[email protected]>
354    
355            * tools/formed/formed/plugins/export/xsd.py: Removed a needless
356              character.
357    
358    2008-04-29      Sascha L. Teichmann <[email protected]>
359    
360            * tools/formed/formed/plugins/export/xsd.py: Added annotations
361              to fields.
362    
363    2008-04-29      Sascha L. Teichmann <[email protected]>
364    
365            * tools/formed/formed/plugins/export/xsd.py: Added for
366              choice fields.
367    
368    2008-04-29      Sascha L. Teichmann <[email protected]>
369    
370            * tools/formed/formed/plugins/export/xsd.py: Added support for
371              boolean fields based on enumerations.
372    
373    2008-04-28      Sascha L. Teichmann <[email protected]>
374    
375            * tools/formed/formed/plugins/export/xsd.py: Added support for
376              date, text and textarea fields.
377    
378    2008-04-28      Sascha L. Teichmann <[email protected]>
379    
380            * tools/formed/formed/plugins/export/xsd.py: Added support for
381              repeat groups and integer fields.
382    
383    2008-04-28      Sascha L. Teichmann <[email protected]>
384    
385            * tools/formed/formed/plugins/export/xsd.py: New. plug-in for
386              exporting as XML schema. not ready, yet.
387    
388            * tools/formed/formed/config.py: Use new plug-in.
389    
390            * tools/formed/formed/plugins/export/sql.py: Fixed wrong GUI text.
391    
392    2008-04-17      Torsten Irländer <[email protected]>
393    
394            * tools/formed/formed/plugins/export/sql.py: Changed WHERE clause in
395            for the views because of the new group permissions.
396    
397    2008-04-09      Sascha L. Teichmann <[email protected]>
398    
399            * tools/anonym/cron.deleteOldAnonymized.sh: New. cron job to delete
400              old anonymized cases.
401    
402    2008-04-01      Sascha L. Teichmann <[email protected]>
403    
404            * tools/anonym/xmlexport.py: Removed "WHERE einverstaendniserklaerung = 1"
405              from clause to select datasets.
406              Replace ']]>' in CDATA sections with correct splitted replacement.
407    
408    2008-03-12      Sascha L. Teichmann <[email protected]>
409            
410            * tools/anonym/cron.importAnonXml.sh: Added absolut path to  xmlimport
411              script.
412    
413            * tools/anonym/xmlimport.py: commented out database port from
414              connectionstring.
415    
416    2008-03-12      Sascha L. Teichmann <[email protected]>
417    
418            * tools/formed/formed/plugins/export/sql.py: Fixed bug in generation
419              of anonymization of repeat groups (wrong id was given).
420    
421    2008-03-11      Sascha L. Teichmann <[email protected]>
422    
423            * tools/formed/formed/plugins/export/sql.py: Generate no update
424              statements for relations which have no anonym functions applied.
425    
426    2008-03-11      Sascha L. Teichmann <[email protected]>
427    
428            * tools/formed/formed/plugins/export/sql.py: Added a newline after
429              'COMMIT;' in the last line.
430    
431    2008-03-11      Sascha L. Teichmann <[email protected]>
432    
433            * tools/formed/formed/plugins/export/sql.py: Fixed syntax of
434              generated anonymize_case() function.
435              
436    2008-03-11      Sascha L. Teichmann <[email protected]>
437    
438            * tools/formed/formed/plugins/export/sql.py: Added code to
439              generate a plpgsql function anonymize_case() that anonymized
440              a given case and all of its depending repeat groups.
441    
442    2008-03-06      Sascha L. Teichmann <[email protected]>
443    
444            * tools/anonym/xmlimport.py: remove print of insert statement.
445    
446            * tools/formed/formed/plugins/export/sql.py: Print generation date in ISO.
447    
448    2008-03-03      Torsten Irländer <[email protected]>
449    
450            * anonym/cron.sendAnonXml.sh,
451              anonym/getDbList.sh: Modified script to be used directly in the
452              production environment (Copied running scripts from production
453              server)
454    
455            * cron.importAnonXml.sh: Added deleting of ols cases. Modified script
456              to be used in a production environment (Cpoied running script from
457              production server)
458    
459            * tools/anonym/xmlexport.py: Added "WHERE" clause to SQL-Statement to
460              ensure that only valid cases get exported
461    
462    2008-02-27      Sascha L. Teichmann <[email protected]>
463    
464            * tools/anonym/xmlimport.py: Fixed bug in date converter.
465    
466    2008-02-27      Sascha L. Teichmann <[email protected]>
467    
468            * tools/anonym/xmlimport.py: Simpilied version
469    
470    2008-02-27      Sascha L. Teichmann <[email protected]>
471    
472            * tools/anonym/cron.importAnonXml.sh: Add sudo call for
473              xmlimport.py and parameters.
474    
475            * tools/anonym/xmlimport.py: Various bug fixes. Not working yet. :-/
476    
477            * tools/anonym/xmlexport.py: Use python interpreter without env
478              because of sudo context.
479    
480    2008-02-26      Sascha L. Teichmann <[email protected]>
481    
482            * tools/anonym/xmlimport.py: added support for getopt. add
483              support to force in fkz in import of case.
484    
485    2008-02-26      Sascha L. Teichmann <[email protected]>
486    
487            * tools/anonym/xmlimport.py: Implemented logic to create/update cases.
488    
489            * tools/anonym/html.awk: produces valid HTML.
490    
491    2008-02-25      Sascha L. Teichmann <[email protected]>
492    
493            * tools/anonym/joincsv.py: Fix a logic bug.
494    
495    2008-02-25      Torsten Irlaender <[email protected]>
496    
497            * tools/anonym/cron.importAnonXml.sh: Added shellscript for importing
498              exportted cases. It will read all files from a directory and import
499              the files into the DB. After that the script will cleanup the
500              directory.
501    
502    2008-02-25      Torsten Irländer <[email protected]>
503            
504            * tools/anonym/cron.sendAnonXml.sh,
505              tools/anonym/xmlexport.py,
506              tools/anonym/getDbList.sh: Added shell-scripts for exporting cases
507    
508    2008-02-25      Sascha L. Teichmann <[email protected]>
509    
510            * tools/anonym/joincsv.py: Fixed typo which generated wrong number of cols.
511    
512    2008-02-25      Sascha L. Teichmann <[email protected]>
513    
514            * tools/anonym/joincsv.py: New. Joins CSV files.
515    
516            * tools/anonym/html.awk: New. Converts CSV to HTML
517    
518    2008-02-25      Sascha L. Teichmann <[email protected]>
519    
520            * tools/anonym/xmlimport.py: New. Added generation of
521              update statements.
522    
523    2008-02-25      Sascha L. Teichmann <[email protected]>
524    
525            * tools/anonym/xmlimport.py: New. Base for importing
526              XML from cron.
527    
528    2008-02-24      Sascha L. Teichmann <[email protected]>
529    
530            * tools/formed/formed/plugins/export/html2.py: New. plug-in
531              for a simplified HTML output
532    
533            * tools/formed/formed/plugins/export/typemap.py: New. plug-in
534              for dump schema as python dictionary.
535    
536            * tools/formed/formed/config.py: Enable new plug-ins. Out comment
537              old stored procedure and view generators.
538    
539    2008-02-19      Sascha L. Teichmann <[email protected]>
540    
541            * tools/anonym/xmlexport.py: New. Export all cases in database
542              as XML.
543    
544    2008-02-18      Sascha L. Teichmann <[email protected]>
545    
546            * tools/anonym/anoymncsv.py: separate field with '\t' now.
547              all '\t's are replaced by '   ' before. '\r\n' are removed too.
548    
549    2008-02-15      Sascha L. Teichmann <[email protected]>
550    
551            * tools/anonym/anoymncsv.py: simple script to fetch anonymous
552              data from database.
553    
554    2008-02-14      Sascha L. Teichmann <[email protected]>
555    
556            * tools/formed/formed/plugins/export/sql.py: Exchanged name
557              erase_value with suppress_value/suppress_value2.
558    
559    2008-02-13      Sascha L. Teichmann <[email protected]>
560    
561            * tools/formed/formed/plugins/export/sql.py: output id, master_id
562              substitute 'erase_value' with NULL value.
563    
564    2008-02-13      Sascha L. Teichmann <[email protected]>
565    
566            * tools/formed/formed/plugins/export/sql.py: output id, master_id
567              and uuid_id in anonymiziation views too.
568    
569    2008-02-13      Sascha L. Teichmann <[email protected]>
570    
571            * tools/formed/formed/plugins/export/sql.py: Added generation
572              of anonymiziation views for master table views and repeat group
573              views.
574    
575    2008-02-13      Sascha L. Teichmann <[email protected]>
576    
577            * tools/formed/formed/model/nodecomponents.py: Added attribute
578              "function"
579    
580            * tools/formed/formed/io/document.py: Save attributes in
581              alphabetical order.
582    
583    2008-02-02      Sascha L. Teichmann <[email protected]>
584    
585            * tools/formed/formed/plugins/export/sql.py: Added update rule
586              for master table and repeat groups views. Granted update right
587              to :cm_ka_group.
588    
589    2008-02-01      Sascha L. Teichmann <[email protected]>
590    
591            * tools/formed/formed/plugins/export/sql.py: Added a column 'uuid_id'
592              for master table and repeat groups. Also added unique constraints
593              to these columns.
594    
595    2007-12-10      Sascha L. Teichmann <[email protected]>
596    
597            * pdf2xfa/src/de/intevation/pdfimport/ClientHandler.java: Added a system
598              property 'root.element' to specify the name of the XML root.
599    
600            * pdf2xfa/startup/pdf2xfa.sh, pdf2xfa/README.TXT: Adjusted.
601    
602  2007-11-22      Sascha L. Teichmann <[email protected]>  2007-11-22      Sascha L. Teichmann <[email protected]>
603    
604          * pdf2xfa/startup, */pdf2xfa.sh, */pdf2xfa.init: boot scripts          * pdf2xfa/startup, */pdf2xfa.sh, */pdf2xfa.init: boot scripts

Legend:
Removed from v.220  
changed lines
  Added in v.318

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26