/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

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

Legend:
Removed from v.27  
changed lines
  Added in v.44

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26