/[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 206 by teichmann, Sun Oct 7 13:09:56 2007 UTC
# Line 1  Line 1 
1    2007-10-07      Sascha L. Teichmann <[email protected]>
2    
3            * tools/formed/formed/plugins/export/sql.py: Added the remaining
4              UPDATE rules.
5    
6    2007-10-07      Sascha L. Teichmann <[email protected]>
7    
8            * tools/formed/formed/plugins/export/sql.py: Added UPDATE rules for some
9              views. TODO: Test'em and implement the rest.
10    
11    2007-10-07      Sascha L. Teichmann <[email protected]>
12    
13            * tools/formed/formed/plugins/export/sql.py: Bug fix. DELETE and INSERT
14              rules referenced none existing views.
15    
16    2007-10-07      Sascha L. Teichmann <[email protected]>
17    
18            * tools/formed/formed/plugins/export/sql.py: Added DELETE and INSERT
19              rules for views. TODO: add UPDATE rules.
20    
21    2007-10-07      Sascha L. Teichmann <[email protected]>
22    
23            * tools/formed/formed/plugins/export/old_sql.py: New. Contains
24              the legacy SQL export filters.
25    
26            * tools/formed/formed/plugins/export/sql.py: Factored out the
27              legacy SQL export filters to old_sql.
28    
29            * tools/formed/formed/config.py: Adjusted to fetch legacy
30              filters from old_sql.
31    
32    2007-10-06      Sascha L. Teichmann <[email protected]>
33    
34            * pdf2xfa/**: Initial import of the PDF to XFA server.
35    
36    2007-10-06      Sascha L. Teichmann <[email protected]>
37    
38            * tools/formed/formed/plugins/export/sql.py: Fixed bug
39              that made choices of three elements to booleans if
40              they have other meanings than 'Ja', 'Nein', 'keine Angabe'.
41    
42    2007-10-05      Sascha L. Teichmann <[email protected]>
43    
44            * tools/formed/formed/plugins/export/sql.py: Select ids of
45              underlaying tables in views too.
46    
47    2007-10-04      Sascha L. Teichmann <[email protected]>
48    
49            * tools/formed/formed/plugins/export/sql.py: Create schema inside transaction.
50              Various bug fixes.
51    
52    2007-10-04      Sascha L. Teichmann <[email protected]>
53    
54            * tools/formed/formed/model/data.py: Added GroupNode.allWidgets()
55              to extract fields from embedded repeat groups.
56    
57            * tools/formed/formed/plugins/export/sql.py: The SQL exporter exports
58              views per page too. Result not tested yet.
59    
60    2007-10-01      Sascha L. Teichmann <[email protected]>
61    
62            * tools/formed/formed/plugins/web/view_renderer.py: Ignore
63              in-page repeat groups while rendering pages.
64    
65    2007-10-01      Sascha L. Teichmann <[email protected]>
66    
67            * tools/formed/formed/model/nodecomponents.py: Added visitor
68              traversals for document trees.
69    
70            * tools/formed/formed/model/data.py: Rewrote the
71              Page.allWidgets() method to use new visitor for
72              tree traversal.
73    
74    2007-09-27      Torsten Irlaender <[email protected]>
75    
76            * tools/formed/formed/plugins/names/filter.py: Pages are now included
77              in the rename by formular name  algorithm
78    
79    2007-09-26      Sascha L. Teichmann <[email protected]>
80    
81            * tools/formed/formed/model/data.py: Removed old {next|prev}Page()
82              TODO: rewrite Page.allWidgets().
83    
84            * tools/formed/formed/model/nodecomponents.py: Added a method
85              Node.firstLevel(criterion) to walk a defined line in the tree.
86    
87            * tools/formed/formed/plugins/export/sql.py: Extract data suitable to
88              build views and respective joins.
89    
90    2007-09-26      Sascha L. Teichmann <[email protected]>
91    
92            * tools/formed/formed/plugins/web/plugin.py: add 'web.tidy:' flag to
93              FORMED environment variable. If set to true tidylib is used to
94              filter HTML content to be W3C valid. To use this feature install
95              uTidylib.
96    
97            * tools/formed/formed/plugins/web/server.py: Check if MIME type is
98              text/html and filters content through tidy if requested.
99    
100    2007-09-25      Torsten Irlaender <[email protected]>
101    
102            * tools/formed/formed/plugins/web/view_renderer.py: Small fix and
103              cleanup of the form generation code.
104    
105    2007-09-21      Sascha L. Teichmann <[email protected]>
106    
107            * tools/formed/formed/plugins/export/sql.py: Added generation time
108              and DROP TABLE statements to schema export.
109    
110    2007-09-20      Sascha L. Teichmann <[email protected]>
111    
112            * tools/formed/formed/plugins/export/sql.py: The tables are generated
113              in correct topolocial order now.
114    
115    2007-09-20      Sascha L. Teichmann <[email protected]>
116    
117            * tools/formed/formed/plugins/export/mode.py: New. Filter to export
118              a document with items that are in given mode.
119    
120            * tools/formed/formed/model/nodecomponents.py: Added methods to clone
121              trees depending on selected modes.
122    
123            * tools/formed/formed/model/data.py, tools/formed/formed/model/expr.py:
124              Fixed clone issue with RuleNodes.
125    
126            * tools/formed/formed/config.py: Use new plug-in.
127    
128    2007-09-17      Sascha L. Teichmann <[email protected]>
129    
130            * tools/formed/formed/plugins/web/view_renderer.py: Make the
131              view renderer a real view renderer. It takes a list of
132              items now and not only a single page.
133    
134            * tools/formed/formed/plugins/web/renderer.py: Feed a list
135              of items to the view renderer.
136    
137    2007-09-17      Torsten Irlaender <[email protected]>
138    
139            * tools/formed/formed/plugins/web/view_renderer.py:
140              Small tweaks in rendering bools.
141              RadioNodes (with all its children) can now be placed in a container.
142              The radiobools will not get a surrounding <div> anymore.
143              I am not sure if the new way results in the wanted behaivor, but the
144              rendering results are much better now :)
145              Maybe we need a similar approach for checkboxes?
146              Rendering groups is still broken in some way.
147    
148  2007-09-17      Sascha L. Teichmann <[email protected]>  2007-09-17      Sascha L. Teichmann <[email protected]>
149    
150          * tools/formed/formed/plugins/web/view_renderer.py: Fixed          * tools/formed/formed/plugins/web/view_renderer.py: Fixed
151            a few bugs: Do not render empty containers, do not            a few bugs: Do not render empty containers, do not
152                  generate misplaced <br class="newline"> in choices.            generate misplaced <br class="newline"> in choices.
153                  Add a nameless container to catch the items that are            Add a nameless container to catch the items that are
154                  nor explicitly assigned to a target. Removed FormData.            nor explicitly assigned to a target. Removed FormData.
155    
156          * tools/formed/formed/plugins/web/renderer.py: Removed          * tools/formed/formed/plugins/web/renderer.py: Removed
157            a needless import            a needless import

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26