/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 19 by teichmann, Thu Aug 9 14:16:33 2007 UTC revision 40 by teichmann, Mon Aug 13 16:01:14 2007 UTC
# Line 1  Line 1 
1    2007-08-13      Sascha L. Teichmann <[email protected]>
2    
3            * tools/formed/formed/io/document.py,
4              tools/formed/formed/model/data.py,
5              tools/formed/formed/model/nodecomponents.py: Added an item
6                    to model external item lists.
7    
8            * tools/formed/formed/plugins/web/renderer.py: Render new item
9              list.
10            * tools/formed/formed/main.py: Added a forgotten 'self.'
11    
12            * contrib/extract-xfa-items.sh: Modified to generate
13              documents to be loadable from new item lists
14    
15    2007-08-13      Sascha L. Teichmann <[email protected]>
16    
17            * tools/formed/formed/main.py: Fixed typo
18    
19    2007-08-13      Sascha L. Teichmann <[email protected]>
20    
21            * contrib/extract-xfa-items.sh: New. Can be used to extract longer
22              choice item lists for a given field from XFA files. e.g. with
23                    './contrib/extract-xfa-items.sh Muttersprache alles.xml'
24    
25    2007-08-12      Sascha L. Teichmann <[email protected]>
26    
27            * tools/formed/formed/model/data.py,
28              tools/formed/formed/plugins/web/renderer.py,
29                    tools/formed/formed/io/document.py: Changed the structure
30                    of choice constructs. The idea to hold the different items
31                    of a particular choice in a semicolon separated list was bad.
32                    Now choices are groups and  the option items are modelled as
33                    embedded bools. (mainly Torsten Irländer's idea).
34    
35                    WARNING: this makes old document files containing choices incompatible!!!
36                    Use the following XSLT to reestablish compatibility.
37                    
38            * contrib/itemize-choices.xsl: New converts old to new structure.
39              Needs exslt.org's string extensions (which xsltproc includes)
40    
41            * tools/formed/test-data/simple.xml: Ajusted to new structure
42    
43            * tools/formed/formed/plugins/web/plugin.py: remove debug output
44    
45            * tools/formed/formed/model/nodecomponents.py: fixed a small bug in
46              node finding code. It now uses the walk() generator, too.
47    
48    2007-08-12      Sascha L. Teichmann <[email protected]>
49    
50            * tools/formed/formed/main.py: Added a clone item on the toolbar which
51              copies the currently selected item and appends it after the selection.
52    
53            * tools/formed/formed/model/nodecomponents.py: Added code to clone parts
54              of the tree.
55                    
56            * tools/formed/formed/ui/controls.py: Added a getSelected method.
57    
58            * tools/formed/formed/model/misc.py: Fixed a programming bug.
59              forgot a 'self.' prefix.
60    
61    2007-08-12      Sascha L. Teichmann <[email protected]>
62    
63            * tools/formed/formed/model/nodecomponents.py: Added a method to append
64              a second document to the current.
65    
66            * tools/formed/formed/main.py: Added an 'Import' file menu item to load
67              a second document to be appended to the current.
68    
69    2007-08-12      Sascha L. Teichmann <[email protected]>
70    
71            * tools/formed/formed/main.py: Added a 'New' item in file menu which creates
72              a new document when triggered.
73    
74    2007-08-12      Sascha L. Teichmann <[email protected]>
75    
76            * tools/formed/formed/model/nodecomponents.py: Added walk generator over all
77              items in the document tree. Added a method to eliminated duplicated names
78                    in document tree.
79    
80            * tools/formed/formed/model/misc.py: Added update mechanism for id generator
81              after names collisions are eliminated.
82    
83            * tools/formed/formed/main.py: Added an 'Extra' menu with item
84              'Make names   unique'.
85    
86    2007-08-11      Sascha L. Teichmann <[email protected]>
87    
88            * tools/formed/formed/model/data.py,
89              tools/formed/formed/plugins/web/renderer.py: Removed support
90                    for 'text' attributes in bool items. They were never really
91                    used and the 'description' attributes fulfill the same
92                    purpose.
93    
94            * contrib/remove-bool-text.xsl: Transform to remove the
95              'text' attributes from bool items. Apply with:
96                    'xsltproc contrib/remove-bool-text.xsl old.xml > new.xml'
97    
98            * tools/formed/test-data/simple.xml: Removed 'text' attributes
99              from bool items.
100    
101    2007-08-11      Sascha L. Teichmann <[email protected]>
102    
103            * contrib/convert-choices.xsl: Simpified.
104    
105    2007-08-11      Sascha L. Teichmann <[email protected]>
106    
107            * tools/formed/formed/model/data.py: Removed 'options' attribute
108              from ChoiceLeaf. Use 'value' instead, please!
109    
110            * tools/formed/formed/plugins/web/renderer.py: use 'value' attribute
111              instead of 'options' to render choices.
112    
113            * contrib/convert-choices.xsl: Added to convert document files
114              which use the choice 'option' attribute to usage of 'value'.
115                    Apply with e.g. 'xsltproc convert-choices.xsl old.xml > new.xml'
116    
117    2007-08-10      Sascha L. Teichmann <[email protected]>
118    
119            * tools/formed/formed/plugins/web/renderer.py: radio buttons
120              are selected by 'checked' and not by 'selected'. Fixed.
121    
122    2007-08-10      Sascha L. Teichmann <[email protected]>
123    
124            * tools/formed/formed/model/data.py: ChoiceLeafs are now
125              initialized with size = 1.
126    
127    2007-08-10      Sascha L. Teichmann <[email protected]>
128    
129            * tools/formed/formed/model/data.py: TextLeafs are now
130              initialized with size = 40, maxlength = 60
131    
132    2007-08-10      Sascha L. Teichmann <[email protected]>
133    
134            * tools/formed/formed/plugins/web/renderer.py: Fixed: choices
135              are renderered with description now.
136    
137    2007-08-10      Sascha L. Teichmann <[email protected]>
138    
139            * tools/formed/formed/plugins/web/renderer.py: Added rendering
140              for date items. Added missing ids for texts and textareas.
141    
142    2007-08-10      Sascha L. Teichmann <[email protected]>
143    
144            * tools/formed/formed/config.py: Evaluate the environment
145              variable 'FORMED'. Snytax: FORMED='key1:value1;key2:value2'
146    
147            * tools/formed/formed/plugins/plugin.py: Give a reference
148              to the config at setup time.
149    
150            * tools/formed/formed/plugins/web/plugin.py: To determine
151              the port look at FORMED dictionary first. Key is 'web.port'.
152                    e.g. FORMED='web.port:8888'
153    
154            * tools/formed/formed/main.py: Call the plugin setup with
155              the reference to the config.
156    
157    2007-08-10      Sascha L. Teichmann <[email protected]>
158    
159            * tools/formed/test-data/simple.xml: removed 'text' attributes from
160              info tags. Use the 'value' attributes for same purpose now, please!
161    
162            * tools/formed/formed/model/data.py: removed text attributes from
163              InfoLeaf.
164    
165            * tools/formed/formed/plugins/web/renderer.py: Rendering of info
166              now uses the 'value' instead of the 'text' attributes.
167    
168    2007-08-09      Sascha L. Teichmann <[email protected]>
169    
170            * tools/formed/formed/model/data.py: next/prevPage() are
171              methods of PageNode now.
172    
173            * tools/formed/formed/model/nodecomponents.py: findByClassAndName()
174              is method of Document now.
175    
176            * tools/formed/formed/plugins/web/plugin.py: Factored out
177              the HTML renderer.
178    
179            * tools/formed/formed/plugins/web/renderer.py: New: contains
180              the HTML renderer now.
181    
182            * tools/formed/test-data/simple.xml: Fixed typo
183    
184    2007-08-09      Sascha L. Teichmann <[email protected]>
185    
186            * tools/formed/formed/plugins/web/plugin.py: Fixed a bug
187              in calculation of width of bounded int fields.
188    
189    2007-08-09      Sascha L. Teichmann <[email protected]>
190    
191            * tools/formed/test-data/simple.xml: Make demo Int fancier.
192    
193            * tools/formed/formed/model/data.py: Added attributes to IntLeaf
194    
195            * tools/formed/formed/plugins/web/plugin.py: Added rendering for
196              Ints
197    
198  2007-08-09      Sascha L. Teichmann <[email protected]>  2007-08-09      Sascha L. Teichmann <[email protected]>
199    
200          * tools/formed/test-data/simple.xml: Added demo textarea          * tools/formed/test-data/simple.xml: Added demo textarea

Legend:
Removed from v.19  
changed lines
  Added in v.40

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26