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

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26