/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

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

Legend:
Removed from v.50  
changed lines
  Added in v.68

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26