/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

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

Legend:
Removed from v.37  
changed lines
  Added in v.61

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26