/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

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

Legend:
Removed from v.55  
changed lines
  Added in v.73

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26