/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 52 by torsten, Fri Aug 17 14:32:03 2007 UTC revision 75 by teichmann, Wed Aug 22 14:15:41 2007 UTC
# Line 1  Line 1 
1  2007-08-1/      Torsten Irlaender <[email protected]>  2007-08-22 Sascha L. Teichmann <[email protected]>
2    
3            * tools/formed/formed/model/nodecomponents.py: Added code to
4              establish the new 'modes' recursively.
5    
6            * tools/formed/formed/plugins/plugin.py: Pass main instead
7              of cfg on plug-in start-up.
8    
9            * tools/formed/formed/plugins/web/plugin.py: Use the new
10              'modes' attribute for rendering.
11    
12            * tools/formed/formed/plugins/web/renderer.py: Use decorators
13              to check the new modes.
14    
15            * tools/formed/formed/main.py: Adjusted to new infrastructure.
16    
17    2007-08-22 Sascha L. Teichmann <[email protected]>
18    
19            * tools/formed/formed/model/nodecomponents.py: Added an
20              attribute 'modes' to NodeComponents.
21    
22    2007-08-22 Sascha L. Teichmann <[email protected]>
23    
24            * tools/formed/formed/model/data.py: Small cosmetic cleanups
25    
26    2007-08-21 Sascha L. Teichmann <[email protected]>
27    
28            * tools/formed/formed/plugins/web/renderer.py: Another fix
29              for the hidden field. Argh!
30    
31    2007-08-21 Sascha L. Teichmann <[email protected]>
32    
33            * tools/formed/formed/plugins/web/renderer.py: Fixed double
34              generation of hidden page field.
35    
36    2007-08-21 Sascha L. Teichmann <[email protected]>
37    
38            * tools/formed/formed/plugins/web/semantic.py: Added semantic
39              checks for radio groups.
40    
41    2007-08-21 Sascha L. Teichmann <[email protected]>
42    
43            * tools/formed/formed/plugins/web/semantic.py: Added semantic
44              checks for choices.
45    
46    2007-08-21      Frank Koormann <[email protected]>
47    
48            * contrib/convert-formedtree2html.xsl: Display switch nodes as
49            alternatives.
50            
51    2007-08-21      Frank Koormann <[email protected]>
52    
53            * contrib/convert-formedtree2html.xsl:
54            Replace technical types with readable descriptions
55    
56    2007-08-21 Sascha L. Teichmann <[email protected]>
57    
58            * tools/formed/formed/plugins/web/plugin.py: Fix a few smaller
59              issues. 'action' looks for all widgets on a page now, goes
60                    through all passed parameters, tries to match them with the
61                    widgets of the page and put them into the semantic box.
62                    Afterwards a list of untouched page parameters are left
63                    which will be deleted from the semantic box.
64    
65            * tools/formed/formed/plugins/web/semantic.py: Simplified.
66              The NodeComponent is passed as an argument now.
67    
68            * tools/formed/formed/plugins/web/renderer.py: Generate a
69              hidden field to store the name of the page.
70    
71    2007-08-21 Sascha L. Teichmann <[email protected]>
72    
73            * tools/formed/formed/plugins/web/plugin.py: Fixed an encoding
74              issue with incoming UTF-8 data.
75    
76    2007-08-21 Sascha L. Teichmann <[email protected]>
77    
78            * tools/formed/test-data/simple.xml: Improve test for widgets
79              in switches.
80    
81            * tools/formed/formed/model/data.py: Added a method to find all
82              widgets in a given page. Fixed a bug when walking in switch
83                    with a given mode.
84    
85            * tools/formed/formed/plugins/web/plugin.py: Simple test for
86              listing all widgets in page.
87    
88    2007-08-21 Torsten Irlaender <[email protected]>
89    
90            * tools/formed/formed/plugins/names/filter.py: Fixed file-encoding to
91              latin-1
92    
93    2007-08-21 Sascha L. Teichmann <[email protected]>
94    
95            * tools/formed/formed/model/data.py: Added mode parameter to
96              walk.
97                    
98            * tools/formed/formed/model/nodecomponents.py: SwitchNode overwrites
99              walk() with usage of the new mode parameter. Added a method to
100                    give children in a given mode.
101    
102            * tools/formed/formed/plugins/web/renderer.py: Simplified to use
103              new Switch.childrenInMode() method.
104    
105    2007-08-21 Sascha L. Teichmann <[email protected]>
106    
107            * tools/formed/formed/plugins/web/semantic.py: Add checks for
108              texts and text areas.
109    
110            * tools/formed/formed/plugins/web/renderer.py: Set accept-charset
111              to UTF-8 in generated form.
112    
113    2007-08-20 Sascha L. Teichmann <[email protected]>
114    
115            * tools/formed/formed/plugins/web/semantic.py: Added semantic
116              tests for dates.
117    
118    2007-08-20 Sascha L. Teichmann <[email protected]>        
119    
120            * tools/formed/test-data/simple.xml: Tweak a bit for integer
121              range test.
122    
123            * tools/formed/formed/model/nodecomponents.py: Added a method
124              to find a tree item for a given name.
125    
126            * tools/formed/formed/plugins/web/semantic.py: New: Box for
127              semantic checking. Has check for integers.
128    
129            * tools/formed/formed/plugins/web/plugin.py: Use semantic
130              check.
131    
132    2007-08-20      Torsten Irlaender <[email protected]>
133    
134            * tools/formed/formed/plugins/web/renderer.py: Fixed Syntax in
135              selection-field generation (Removed quote)
136    
137    2007-08-18      Sascha L. Teichmann <[email protected]>
138    
139            * tools/formed/formed/plugins/web/plugin.py,
140              tools/formed/formed/plugins/web/renderer.py: Added a
141              simple cookie based session management to the HTML
142              renderer. This submit parameters are stored in the
143              session now. This will ease testing the constraint
144              tests which need to be written soon.
145                    
146              BEWARE: The session management is _not_ made for production!
147              Denial of service attacks are too easy, and the
148              cryptographical strength of the session id is doubtful.
149    
150    2007-08-18      Sascha L. Teichmann <[email protected]>
151    
152            * tools/formed/formed/plugins/web/renderer.py: Escaping text
153              coming from the document tree now when inserting it into the
154              HTML output.
155    
156    2007-08-18      Sascha L. Teichmann <[email protected]>
157    
158            * tools/formed/formed/plugins/plugin.py: Added a new kind
159              of plug-in: Filter. They have a short and a long description
160              and can be hooked automatically into the new 'Filters'
161              sub menu under 'Extra'. They got called when the user
162              selects their respective menu item.
163                    
164            * tools/formed/formed/config.py: Contains the list of
165              installed filters.
166    
167            * tools/formed/formed/main.py: Builds the Extra->Filters
168              sub menu during gui initialization. The hard wired code
169              for make unique and formular name/description -> name
170              is removed because they are implemented as filters now.
171    
172            * tools/formed/formed/model/nodecomponents.py,
173              tools/formed/formed/model/data.py: Removed the make
174              unique and formular name/description -> name code.
175    
176            * tools/formed/formed/plugins/names,
177              tools/formed/formed/plugins/names/__init__.py,
178              tools/formed/formed/plugins/names/filter.py: Added. Contains
179              the make unique and formular name/description -> name code
180              in form of filters.
181    
182            * tools/formed/test-data/simple.xml: Modified to be a better
183              test for the formular name/description -> name filter.
184    
185    2007-08-18      Sascha L. Teichmann <[email protected]>
186    
187            * tools/formed/formed.py, tools/formed/formed/main.py: First
188              command line argument is interpreted as filename of document
189              to be loaded at program startup.
190    
191    2007-08-17      Frank Koormann <[email protected]>
192    
193            * contrib/convert-formedtree2html.xsl:
194            Heading level depending on depth of group node.
195            In case of radio/choice/check only list of options.
196    
197    2007-08-17      Torsten Irlaender <[email protected]>
198    
199          * contrib/convert-formedtree2html.xsl: Output is now generated with          * contrib/convert-formedtree2html.xsl: Output is now generated with
200            HTML doc-string and charset information in the meta-header.            HTML doc-string and charset information in the meta-header.
201    
202  2007-08-1/      Torsten Irlaender <[email protected]>  2007-08-17      Torsten Irlaender <[email protected]>
203    
204          * contrib/convert-formedtree2html.xsl: Added small script for          * contrib/convert-formedtree2html.xsl: Added small script for
205            exporting the formed tree to html            exporting the formed tree to html

Legend:
Removed from v.52  
changed lines
  Added in v.75

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26