/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 40 by teichmann, Mon Aug 13 16:01:14 2007 UTC revision 70 by teichmann, Tue Aug 21 13:47:30 2007 UTC
# Line 1  Line 1 
1    2007-08-21 Sascha L. Teichmann <[email protected]>
2    
3            * tools/formed/formed/plugins/web/semantic.py: Added semantic
4              checks for radio groups.
5    
6    2007-08-21 Sascha L. Teichmann <[email protected]>
7    
8            * tools/formed/formed/plugins/web/semantic.py: Added semantic
9              checks for choices.
10    
11    2007-08-21      Frank Koormann <[email protected]>
12    
13            * contrib/convert-formedtree2html.xsl: Display switch nodes as
14            alternatives.
15            
16    2007-08-21      Frank Koormann <[email protected]>
17    
18            * contrib/convert-formedtree2html.xsl:
19            Replace technical types with readable descriptions
20    
21    2007-08-21 Sascha L. Teichmann <[email protected]>
22    
23            * tools/formed/formed/plugins/web/plugin.py: Fix a few smaller
24              issues. 'action' looks for all widgets on a page now, goes
25                    through all passed parameters, tries to match them with the
26                    widgets of the page and put them into the semantic box.
27                    Afterwards a list of untouched page parameters are left
28                    which will be deleted from the semantic box.
29    
30            * tools/formed/formed/plugins/web/semantic.py: Simplified.
31              The NodeComponent is passed as an argument now.
32    
33            * tools/formed/formed/plugins/web/renderer.py: Generate a
34              hidden field to store the name of the page.
35    
36    2007-08-21 Sascha L. Teichmann <[email protected]>
37    
38            * tools/formed/formed/plugins/web/plugin.py: Fixed an encoding
39              issue with incoming UTF-8 data.
40    
41    2007-08-21 Sascha L. Teichmann <[email protected]>
42    
43            * tools/formed/test-data/simple.xml: Improve test for widgets
44              in switches.
45    
46            * tools/formed/formed/model/data.py: Added a method to find all
47              widgets in a given page. Fixed a bug when walking in switch
48                    with a given mode.
49    
50            * tools/formed/formed/plugins/web/plugin.py: Simple test for
51              listing all widgets in page.
52    
53    2007-08-21 Torsten Irlaender <[email protected]>
54    
55            * tools/formed/formed/plugins/names/filter.py: Fixed file-encoding to
56              latin-1
57    
58    2007-08-21 Sascha L. Teichmann <[email protected]>
59    
60            * tools/formed/formed/model/data.py: Added mode parameter to
61              walk.
62                    
63            * tools/formed/formed/model/nodecomponents.py: SwitchNode overwrites
64              walk() with usage of the new mode parameter. Added a method to
65                    give children in a given mode.
66    
67            * tools/formed/formed/plugins/web/renderer.py: Simplified to use
68              new Switch.childrenInMode() method.
69    
70    2007-08-21 Sascha L. Teichmann <[email protected]>
71    
72            * tools/formed/formed/plugins/web/semantic.py: Add checks for
73              texts and text areas.
74    
75            * tools/formed/formed/plugins/web/renderer.py: Set accept-charset
76              to UTF-8 in generated form.
77    
78    2007-08-20 Sascha L. Teichmann <[email protected]>
79    
80            * tools/formed/formed/plugins/web/semantic.py: Added semantic
81              tests for dates.
82    
83    2007-08-20 Sascha L. Teichmann <[email protected]>        
84    
85            * tools/formed/test-data/simple.xml: Tweak a bit for integer
86              range test.
87    
88            * tools/formed/formed/model/nodecomponents.py: Added a method
89              to find a tree item for a given name.
90    
91            * tools/formed/formed/plugins/web/semantic.py: New: Box for
92              semantic checking. Has check for integers.
93    
94            * tools/formed/formed/plugins/web/plugin.py: Use semantic
95              check.
96    
97    2007-08-20      Torsten Irlaender <[email protected]>
98    
99            * tools/formed/formed/plugins/web/renderer.py: Fixed Syntax in
100              selection-field generation (Removed quote)
101    
102    2007-08-18      Sascha L. Teichmann <[email protected]>
103    
104            * tools/formed/formed/plugins/web/plugin.py,
105              tools/formed/formed/plugins/web/renderer.py: Added a
106              simple cookie based session management to the HTML
107              renderer. This submit parameters are stored in the
108              session now. This will ease testing the constraint
109              tests which need to be written soon.
110                    
111              BEWARE: The session management is _not_ made for production!
112              Denial of service attacks are too easy, and the
113              cryptographical strength of the session id is doubtful.
114    
115    2007-08-18      Sascha L. Teichmann <[email protected]>
116    
117            * tools/formed/formed/plugins/web/renderer.py: Escaping text
118              coming from the document tree now when inserting it into the
119              HTML output.
120    
121    2007-08-18      Sascha L. Teichmann <[email protected]>
122    
123            * tools/formed/formed/plugins/plugin.py: Added a new kind
124              of plug-in: Filter. They have a short and a long description
125              and can be hooked automatically into the new 'Filters'
126              sub menu under 'Extra'. They got called when the user
127              selects their respective menu item.
128                    
129            * tools/formed/formed/config.py: Contains the list of
130              installed filters.
131    
132            * tools/formed/formed/main.py: Builds the Extra->Filters
133              sub menu during gui initialization. The hard wired code
134              for make unique and formular name/description -> name
135              is removed because they are implemented as filters now.
136    
137            * tools/formed/formed/model/nodecomponents.py,
138              tools/formed/formed/model/data.py: Removed the make
139              unique and formular name/description -> name code.
140    
141            * tools/formed/formed/plugins/names,
142              tools/formed/formed/plugins/names/__init__.py,
143              tools/formed/formed/plugins/names/filter.py: Added. Contains
144              the make unique and formular name/description -> name code
145              in form of filters.
146    
147            * tools/formed/test-data/simple.xml: Modified to be a better
148              test for the formular name/description -> name filter.
149    
150    2007-08-18      Sascha L. Teichmann <[email protected]>
151    
152            * tools/formed/formed.py, tools/formed/formed/main.py: First
153              command line argument is interpreted as filename of document
154              to be loaded at program startup.
155    
156    2007-08-17      Frank Koormann <[email protected]>
157    
158            * contrib/convert-formedtree2html.xsl:
159            Heading level depending on depth of group node.
160            In case of radio/choice/check only list of options.
161    
162    2007-08-17      Torsten Irlaender <[email protected]>
163    
164            * contrib/convert-formedtree2html.xsl: Output is now generated with
165              HTML doc-string and charset information in the meta-header.
166    
167    2007-08-17      Torsten Irlaender <[email protected]>
168    
169            * contrib/convert-formedtree2html.xsl: Added small script for
170              exporting the formed tree to html
171    
172    2007-08-17      Torsten Irlaender <[email protected]>
173    
174            * tools/formed/model/nodecomponents.py: Added function to rename
175              the set the name of the node to the formularname. The formularname
176              gets shorten to <=64 by removing vowels and is stored lowercase.
177              If the name is not unique and additional id value is appended.
178            
179            * tools/formed/formed/model/data.py: Overwritten renaming-function for
180              bool-leafs
181    
182            * tools/formed/formed/main.py: Added menuitem for renaming the names
183              of the element
184    
185    2007-08-16      Sascha L. Teichmann <[email protected]>
186    
187            * tools/formed/formed/main.py: Swaped order of
188              'Make names unique' and 'Selected mode...' in Extra
189                    menu and put a separator between them.
190    
191    2007-08-15      Sascha L. Teichmann <[email protected]>
192    
193            * tools/formed/formed/model/data.py: SwitchNodes can add
194              their modes to a given set now.
195    
196            * tools/formed/formed/plugins/plugin.py: Simplified
197              the plug-in interface. Only the reference to the
198                    global configuration is passed at setup time.
199    
200            * tools/formed/formed/plugins/web/plugin.py: Adjusted
201              to new plug-in setup. The traveral mode is now taken
202                    from the global configuration each time a rendering
203                    is triggered. The FORMED parameter is now named
204                    'doc.mode' instead of 'web.mode'. The parameter
205                    is not needed any more because it can be configured
206                    at runtime.
207    
208            * tools/formed/formed/main.py: Adjusted to new plugin
209              setup. Added a new menu item Extra->Select Mode...
210                    to select the traversal mode. It is stored in the
211                    global config.
212    
213            * tools/formed/formed/config.py: Simplified. Only uses
214              one env dictionary to store global configuration parameters.
215    
216            * tools/formed/formed/ui/controls.py: Add a control to
217              select one item from a list of given strings.
218    
219    2007-08-15      Sascha L. Teichmann <[email protected]>
220    
221            * tools/formed/formed/plugins/web/plugin.py,
222              tools/formed/formed/plugins/web/renderer.py: Added parameter
223                    print out in web plugin.
224    
225    2007-08-15      Torsten Irlaender <[email protected]>
226    
227            * contrib/convert-formedtree2csv.xsl: Added small script for
228              exporting the formed tree to csv
229    
230    2007-08-14      Sascha L. Teichmann <[email protected]>
231    
232            * tools/formed/formed/model/data.py,
233              tools/formed/formed/model/nodecomponents.py,
234              tools/formed/formed/io/document.py: Added a 'switch' node.
235    
236            * tools/formed/formed/plugins/web/renderer.py:Render the
237              new 'switch' node.
238    
239            * tools/formed/formed/plugins/web/plugin.py,
240              tools/formed/formed/config.py: Added a 'web.mode' parameter
241                    to FORMED environment variable.
242                    e.g. 'FORMED=web.mode:modeX' sets the mode 'modeX'.
243                    Defaults to 'default'.
244    
245            * tools/formed/test-data/simple.xml: Added test for switch.
246    
247    2007-08-14      Sascha L. Teichmann <[email protected]>
248    
249            * tools/formed/formed/model/nodecomponents.py: Added an
250              attribute 'formularname' to base class of node components.
251    
252  2007-08-13      Sascha L. Teichmann <[email protected]>  2007-08-13      Sascha L. Teichmann <[email protected]>
253    
254          * tools/formed/formed/io/document.py,          * tools/formed/formed/io/document.py,

Legend:
Removed from v.40  
changed lines
  Added in v.70

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26