/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

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

Legend:
Removed from v.49  
changed lines
  Added in v.74

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26