/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 61 by teichmann, Tue Aug 21 04:21:54 2007 UTC revision 83 by teichmann, Thu Aug 23 18:13:38 2007 UTC
# Line 1  Line 1 
1    2007-08-23 Sascha L. Teichmann <[email protected]>
2    
3            * tools/formed/formed/plugins/names/filter.py: Removed
4              HTML and SQL exporters.
5    
6            * tools/formed/formed/plugins/export,
7              tools/formed/formed/plugins/export/__init__.py,
8              tools/formed/formed/plugins/export/sql.py,
9              tools/formed/formed/plugins/export/html.py: New: Contain
10                    the HTML and the SQL exporters now.
11    
12            * tools/formed/formed/config.py: Use exporters from different
13              package now.
14    
15    2007-08-23 Torsten Irlaender <[email protected]>
16    
17            * tools/formed/formed/plugins/names/filter.py: Added an
18              pseudo SQL export filters. TODO: Move HTML and SQL filter
19              in a new file (formed/plugins/export/htmlexport.py and
20              sqlexport.py?)
21    
22            * tools/formed/formed/config.py: Install the new SQL filter.
23    
24    2007-08-23 Sascha L. Teichmann <[email protected]>
25    
26            * tools/formed/formed/model/nodecomponents.py: Added a depth()
27              method to determine the depth of particular tree item.
28    
29            * tools/formed/formed/plugins/names/filter.py: Added an
30              HTML export filters. TODO: needs more work.
31    
32            * tools/formed/formed/config.py: Install the new HTML filter.
33    
34    2007-08-23 Torsten Irlaender <[email protected]>
35    
36            * contrib/extract-xfa-fields_and_options.xsl: Added small xsl script
37              to extract fields and options in the XFA Data in teh PDF. This
38              script might me handy to indicate changes between the different
39              formular versions.
40            
41    2007-08-23 Sascha L. Teichmann <[email protected]>
42    
43            * tools/formed/formed/main.py: Add an 'all' mode to
44              select all modes. ;-)
45    
46    2007-08-22 Sascha L. Teichmann <[email protected]>
47    
48            * tools/formed/test-data/simple.xml,
49              tools/formed/formed/model/data.py,
50              tools/formed/formed/plugins/web/plugin.py,
51              tools/formed/formed/plugins/web/renderer.py,
52              tools/formed/formed/io/document.py,
53              tools/formed/formed/main.py: Removed support for switch nodes.
54              BEWARE: This breaks compatibility with older documents!
55    
56    2007-08-22 Sascha L. Teichmann <[email protected]>
57    
58            * tools/formed/formed/plugins/web/plugin.py: Uses the
59              getSelectedMode() from main now.
60    
61            * tools/formed/formed/main.py: selected mode is now hold
62              in main.
63    
64            * tools/formed/formed/config.py: removed selected mode from
65              env configuration.
66    
67    2007-08-22 Sascha L. Teichmann <[email protected]>
68    
69            * tools/formed/formed/ui/controls.py: Attributes in GUI attribute
70              table are now alphabetically sorted.
71    
72    2007-08-22 Sascha L. Teichmann <[email protected]>
73    
74            * tools/formed/formed/model/nodecomponents.py: Added code to
75              establish the new 'modes' recursively.
76    
77            * tools/formed/formed/plugins/plugin.py: Pass main instead
78              of cfg on plug-in start-up.
79    
80            * tools/formed/formed/plugins/web/plugin.py: Use the new
81              'modes' attribute for rendering.
82    
83            * tools/formed/formed/plugins/web/renderer.py: Use decorators
84              to check the new modes.
85    
86            * tools/formed/formed/main.py: Adjusted to new infrastructure.
87    
88    2007-08-22 Sascha L. Teichmann <[email protected]>
89    
90            * tools/formed/formed/model/nodecomponents.py: Added an
91              attribute 'modes' to NodeComponents.
92    
93    2007-08-22 Sascha L. Teichmann <[email protected]>
94    
95            * tools/formed/formed/model/data.py: Small cosmetic cleanups
96    
97    2007-08-21 Sascha L. Teichmann <[email protected]>
98    
99            * tools/formed/formed/plugins/web/renderer.py: Another fix
100              for the hidden field. Argh!
101    
102    2007-08-21 Sascha L. Teichmann <[email protected]>
103    
104            * tools/formed/formed/plugins/web/renderer.py: Fixed double
105              generation of hidden page field.
106    
107    2007-08-21 Sascha L. Teichmann <[email protected]>
108    
109            * tools/formed/formed/plugins/web/semantic.py: Added semantic
110              checks for radio groups.
111    
112    2007-08-21 Sascha L. Teichmann <[email protected]>
113    
114            * tools/formed/formed/plugins/web/semantic.py: Added semantic
115              checks for choices.
116    
117    2007-08-21      Frank Koormann <[email protected]>
118    
119            * contrib/convert-formedtree2html.xsl: Display switch nodes as
120            alternatives.
121            
122    2007-08-21      Frank Koormann <[email protected]>
123    
124            * contrib/convert-formedtree2html.xsl:
125            Replace technical types with readable descriptions
126    
127    2007-08-21 Sascha L. Teichmann <[email protected]>
128    
129            * tools/formed/formed/plugins/web/plugin.py: Fix a few smaller
130              issues. 'action' looks for all widgets on a page now, goes
131                    through all passed parameters, tries to match them with the
132                    widgets of the page and put them into the semantic box.
133                    Afterwards a list of untouched page parameters are left
134                    which will be deleted from the semantic box.
135    
136            * tools/formed/formed/plugins/web/semantic.py: Simplified.
137              The NodeComponent is passed as an argument now.
138    
139            * tools/formed/formed/plugins/web/renderer.py: Generate a
140              hidden field to store the name of the page.
141    
142    2007-08-21 Sascha L. Teichmann <[email protected]>
143    
144            * tools/formed/formed/plugins/web/plugin.py: Fixed an encoding
145              issue with incoming UTF-8 data.
146    
147    2007-08-21 Sascha L. Teichmann <[email protected]>
148    
149            * tools/formed/test-data/simple.xml: Improve test for widgets
150              in switches.
151    
152            * tools/formed/formed/model/data.py: Added a method to find all
153              widgets in a given page. Fixed a bug when walking in switch
154                    with a given mode.
155    
156            * tools/formed/formed/plugins/web/plugin.py: Simple test for
157              listing all widgets in page.
158    
159    2007-08-21 Torsten Irlaender <[email protected]>
160    
161            * tools/formed/formed/plugins/names/filter.py: Fixed file-encoding to
162              latin-1
163    
164    2007-08-21 Sascha L. Teichmann <[email protected]>
165    
166            * tools/formed/formed/model/data.py: Added mode parameter to
167              walk.
168                    
169            * tools/formed/formed/model/nodecomponents.py: SwitchNode overwrites
170              walk() with usage of the new mode parameter. Added a method to
171                    give children in a given mode.
172    
173            * tools/formed/formed/plugins/web/renderer.py: Simplified to use
174              new Switch.childrenInMode() method.
175    
176  2007-08-21 Sascha L. Teichmann <[email protected]>  2007-08-21 Sascha L. Teichmann <[email protected]>
177    
178          * tools/formed/formed/plugins/web/semantic.py: Add checks for          * tools/formed/formed/plugins/web/semantic.py: Add checks for

Legend:
Removed from v.61  
changed lines
  Added in v.83

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26