/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

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

Legend:
Removed from v.188  
changed lines
  Added in v.323

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26