/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 25 by teichmann, Fri Aug 10 08:48:45 2007 UTC revision 45 by teichmann, Wed Aug 15 16:11:49 2007 UTC
# Line 1  Line 1 
1    2007-08-15      Sascha L. Teichmann <[email protected]>
2    
3            * tools/formed/formed/plugins/web/plugin.py,
4              tools/formed/formed/plugins/web/renderer.py: Added parameter
5                    print out in web plugin.
6    
7    2007-08-15      Torsten Irlaender <[email protected]>
8    
9            * contrib/convert-formedtree2csv.xsl: Added small script for
10              exporting the formed tree to csv
11    
12    2007-08-14      Sascha L. Teichmann <[email protected]>
13    
14            * tools/formed/formed/model/data.py,
15              tools/formed/formed/model/nodecomponents.py,
16              tools/formed/formed/io/document.py: Added a 'switch' node.
17    
18            * tools/formed/formed/plugins/web/renderer.py:Render the
19              new 'switch' node.
20    
21            * tools/formed/formed/plugins/web/plugin.py,
22              tools/formed/formed/config.py: Added a 'web.mode' parameter
23                    to FORMED environment variable.
24                    e.g. 'FORMED=web.mode:modeX' sets the mode 'modeX'.
25                    Defaults to 'default'.
26    
27            * tools/formed/test-data/simple.xml: Added test for switch.
28    
29    2007-08-14      Sascha L. Teichmann <[email protected]>
30    
31            * tools/formed/formed/model/nodecomponents.py: Added an
32              attribute 'formularname' to base class of node components.
33    
34    2007-08-13      Sascha L. Teichmann <[email protected]>
35    
36            * tools/formed/formed/io/document.py,
37              tools/formed/formed/model/data.py,
38              tools/formed/formed/model/nodecomponents.py: Added an item
39                    to model external item lists.
40    
41            * tools/formed/formed/plugins/web/renderer.py: Render new item
42              list.
43            * tools/formed/formed/main.py: Added a forgotten 'self.'
44    
45            * contrib/extract-xfa-items.sh: Modified to generate
46              documents to be loadable from new item lists
47    
48    2007-08-13      Sascha L. Teichmann <[email protected]>
49    
50            * tools/formed/formed/main.py: Fixed typo
51    
52    2007-08-13      Sascha L. Teichmann <[email protected]>
53    
54            * contrib/extract-xfa-items.sh: New. Can be used to extract longer
55              choice item lists for a given field from XFA files. e.g. with
56                    './contrib/extract-xfa-items.sh Muttersprache alles.xml'
57    
58    2007-08-12      Sascha L. Teichmann <[email protected]>
59    
60            * tools/formed/formed/model/data.py,
61              tools/formed/formed/plugins/web/renderer.py,
62                    tools/formed/formed/io/document.py: Changed the structure
63                    of choice constructs. The idea to hold the different items
64                    of a particular choice in a semicolon separated list was bad.
65                    Now choices are groups and  the option items are modelled as
66                    embedded bools. (mainly Torsten Irländer's idea).
67    
68                    WARNING: this makes old document files containing choices incompatible!!!
69                    Use the following XSLT to reestablish compatibility.
70                    
71            * contrib/itemize-choices.xsl: New converts old to new structure.
72              Needs exslt.org's string extensions (which xsltproc includes)
73    
74            * tools/formed/test-data/simple.xml: Ajusted to new structure
75    
76            * tools/formed/formed/plugins/web/plugin.py: remove debug output
77    
78            * tools/formed/formed/model/nodecomponents.py: fixed a small bug in
79              node finding code. It now uses the walk() generator, too.
80    
81    2007-08-12      Sascha L. Teichmann <[email protected]>
82    
83            * tools/formed/formed/main.py: Added a clone item on the toolbar which
84              copies the currently selected item and appends it after the selection.
85    
86            * tools/formed/formed/model/nodecomponents.py: Added code to clone parts
87              of the tree.
88                    
89            * tools/formed/formed/ui/controls.py: Added a getSelected method.
90    
91            * tools/formed/formed/model/misc.py: Fixed a programming bug.
92              forgot a 'self.' prefix.
93    
94    2007-08-12      Sascha L. Teichmann <[email protected]>
95    
96            * tools/formed/formed/model/nodecomponents.py: Added a method to append
97              a second document to the current.
98    
99            * tools/formed/formed/main.py: Added an 'Import' file menu item to load
100              a second document to be appended to the current.
101    
102    2007-08-12      Sascha L. Teichmann <[email protected]>
103    
104            * tools/formed/formed/main.py: Added a 'New' item in file menu which creates
105              a new document when triggered.
106    
107    2007-08-12      Sascha L. Teichmann <[email protected]>
108    
109            * tools/formed/formed/model/nodecomponents.py: Added walk generator over all
110              items in the document tree. Added a method to eliminated duplicated names
111                    in document tree.
112    
113            * tools/formed/formed/model/misc.py: Added update mechanism for id generator
114              after names collisions are eliminated.
115    
116            * tools/formed/formed/main.py: Added an 'Extra' menu with item
117              'Make names   unique'.
118    
119    2007-08-11      Sascha L. Teichmann <[email protected]>
120    
121            * tools/formed/formed/model/data.py,
122              tools/formed/formed/plugins/web/renderer.py: Removed support
123                    for 'text' attributes in bool items. They were never really
124                    used and the 'description' attributes fulfill the same
125                    purpose.
126    
127            * contrib/remove-bool-text.xsl: Transform to remove the
128              'text' attributes from bool items. Apply with:
129                    'xsltproc contrib/remove-bool-text.xsl old.xml > new.xml'
130    
131            * tools/formed/test-data/simple.xml: Removed 'text' attributes
132              from bool items.
133    
134    2007-08-11      Sascha L. Teichmann <[email protected]>
135    
136            * contrib/convert-choices.xsl: Simpified.
137    
138    2007-08-11      Sascha L. Teichmann <[email protected]>
139    
140            * tools/formed/formed/model/data.py: Removed 'options' attribute
141              from ChoiceLeaf. Use 'value' instead, please!
142    
143            * tools/formed/formed/plugins/web/renderer.py: use 'value' attribute
144              instead of 'options' to render choices.
145    
146            * contrib/convert-choices.xsl: Added to convert document files
147              which use the choice 'option' attribute to usage of 'value'.
148                    Apply with e.g. 'xsltproc convert-choices.xsl old.xml > new.xml'
149    
150    2007-08-10      Sascha L. Teichmann <[email protected]>
151    
152            * tools/formed/formed/plugins/web/renderer.py: radio buttons
153              are selected by 'checked' and not by 'selected'. Fixed.
154    
155    2007-08-10      Sascha L. Teichmann <[email protected]>
156    
157            * tools/formed/formed/model/data.py: ChoiceLeafs are now
158              initialized with size = 1.
159    
160    2007-08-10      Sascha L. Teichmann <[email protected]>
161    
162            * tools/formed/formed/model/data.py: TextLeafs are now
163              initialized with size = 40, maxlength = 60
164    
165    2007-08-10      Sascha L. Teichmann <[email protected]>
166    
167            * tools/formed/formed/plugins/web/renderer.py: Fixed: choices
168              are renderered with description now.
169    
170  2007-08-10      Sascha L. Teichmann <[email protected]>  2007-08-10      Sascha L. Teichmann <[email protected]>
171    
172          * tools/formed/formed/plugins/web/renderer.py: Added rendering          * tools/formed/formed/plugins/web/renderer.py: Added rendering

Legend:
Removed from v.25  
changed lines
  Added in v.45

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26