/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 36 by teichmann, Sun Aug 12 17:03:05 2007 UTC revision 53 by frank, Fri Aug 17 16:13:36 2007 UTC
# Line 1  Line 1 
1    2007-08-17      Frank Koormann <[email protected]>
2    
3            * contrib/convert-formedtree2html.xsl:
4            Heading level depending on depth of group node.
5            In case of radio/choice/check only list of options.
6    
7    2007-08-1/      Torsten Irlaender <[email protected]>
8    
9            * contrib/convert-formedtree2html.xsl: Output is now generated with
10              HTML doc-string and charset information in the meta-header.
11    
12    2007-08-1/      Torsten Irlaender <[email protected]>
13    
14            * contrib/convert-formedtree2html.xsl: Added small script for
15              exporting the formed tree to html
16    
17    2007-08-17      Torsten Irlaender <[email protected]>
18    
19            * tools/formed/model/nodecomponents.py: Added function to rename
20              the set the name of the node to the formularname. The formularname
21              gets shorten to <=64 by removing vowels and is stored lowercase.
22              If the name is not unique and additional id value is appended.
23            
24            * tools/formed/formed/model/data.py: Overwritten renaming-function for
25              bool-leafs
26    
27            * tools/formed/formed/main.py: Added menuitem for renaming the names
28              of the element
29    
30    2007-08-16      Sascha L. Teichmann <[email protected]>
31    
32            * tools/formed/formed/main.py: Swaped order of
33              'Make names unique' and 'Selected mode...' in Extra
34                    menu and put a separator between them.
35    
36    2007-08-15      Sascha L. Teichmann <[email protected]>
37    
38            * tools/formed/formed/model/data.py: SwitchNodes can add
39              their modes to a given set now.
40    
41            * tools/formed/formed/plugins/plugin.py: Simplified
42              the plug-in interface. Only the reference to the
43                    global configuration is passed at setup time.
44    
45            * tools/formed/formed/plugins/web/plugin.py: Adjusted
46              to new plug-in setup. The traveral mode is now taken
47                    from the global configuration each time a rendering
48                    is triggered. The FORMED parameter is now named
49                    'doc.mode' instead of 'web.mode'. The parameter
50                    is not needed any more because it can be configured
51                    at runtime.
52    
53            * tools/formed/formed/main.py: Adjusted to new plugin
54              setup. Added a new menu item Extra->Select Mode...
55                    to select the traversal mode. It is stored in the
56                    global config.
57    
58            * tools/formed/formed/config.py: Simplified. Only uses
59              one env dictionary to store global configuration parameters.
60    
61            * tools/formed/formed/ui/controls.py: Add a control to
62              select one item from a list of given strings.
63    
64    2007-08-15      Sascha L. Teichmann <[email protected]>
65    
66            * tools/formed/formed/plugins/web/plugin.py,
67              tools/formed/formed/plugins/web/renderer.py: Added parameter
68                    print out in web plugin.
69    
70    2007-08-15      Torsten Irlaender <[email protected]>
71    
72            * contrib/convert-formedtree2csv.xsl: Added small script for
73              exporting the formed tree to csv
74    
75    2007-08-14      Sascha L. Teichmann <[email protected]>
76    
77            * tools/formed/formed/model/data.py,
78              tools/formed/formed/model/nodecomponents.py,
79              tools/formed/formed/io/document.py: Added a 'switch' node.
80    
81            * tools/formed/formed/plugins/web/renderer.py:Render the
82              new 'switch' node.
83    
84            * tools/formed/formed/plugins/web/plugin.py,
85              tools/formed/formed/config.py: Added a 'web.mode' parameter
86                    to FORMED environment variable.
87                    e.g. 'FORMED=web.mode:modeX' sets the mode 'modeX'.
88                    Defaults to 'default'.
89    
90            * tools/formed/test-data/simple.xml: Added test for switch.
91    
92    2007-08-14      Sascha L. Teichmann <[email protected]>
93    
94            * tools/formed/formed/model/nodecomponents.py: Added an
95              attribute 'formularname' to base class of node components.
96    
97    2007-08-13      Sascha L. Teichmann <[email protected]>
98    
99            * tools/formed/formed/io/document.py,
100              tools/formed/formed/model/data.py,
101              tools/formed/formed/model/nodecomponents.py: Added an item
102                    to model external item lists.
103    
104            * tools/formed/formed/plugins/web/renderer.py: Render new item
105              list.
106            * tools/formed/formed/main.py: Added a forgotten 'self.'
107    
108            * contrib/extract-xfa-items.sh: Modified to generate
109              documents to be loadable from new item lists
110    
111    2007-08-13      Sascha L. Teichmann <[email protected]>
112    
113            * tools/formed/formed/main.py: Fixed typo
114    
115    2007-08-13      Sascha L. Teichmann <[email protected]>
116    
117            * contrib/extract-xfa-items.sh: New. Can be used to extract longer
118              choice item lists for a given field from XFA files. e.g. with
119                    './contrib/extract-xfa-items.sh Muttersprache alles.xml'
120    
121    2007-08-12      Sascha L. Teichmann <[email protected]>
122    
123            * tools/formed/formed/model/data.py,
124              tools/formed/formed/plugins/web/renderer.py,
125                    tools/formed/formed/io/document.py: Changed the structure
126                    of choice constructs. The idea to hold the different items
127                    of a particular choice in a semicolon separated list was bad.
128                    Now choices are groups and  the option items are modelled as
129                    embedded bools. (mainly Torsten Irländer's idea).
130    
131                    WARNING: this makes old document files containing choices incompatible!!!
132                    Use the following XSLT to reestablish compatibility.
133                    
134            * contrib/itemize-choices.xsl: New converts old to new structure.
135              Needs exslt.org's string extensions (which xsltproc includes)
136    
137            * tools/formed/test-data/simple.xml: Ajusted to new structure
138    
139            * tools/formed/formed/plugins/web/plugin.py: remove debug output
140    
141            * tools/formed/formed/model/nodecomponents.py: fixed a small bug in
142              node finding code. It now uses the walk() generator, too.
143    
144  2007-08-12      Sascha L. Teichmann <[email protected]>  2007-08-12      Sascha L. Teichmann <[email protected]>
145    
146          * tools/formed/formed/main.py: Added a clone item on the toolbar which          * tools/formed/formed/main.py: Added a clone item on the toolbar which

Legend:
Removed from v.36  
changed lines
  Added in v.53

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26