/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

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

Legend:
Removed from v.217  
changed lines
  Added in v.310

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26