/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 10 by teichmann, Wed Aug 8 08:14:37 2007 UTC revision 33 by teichmann, Sun Aug 12 15:02:55 2007 UTC
# Line 1  Line 1 
1    2007-08-12      Sascha L. Teichmann <[email protected]>
2    
3            * tools/formed/formed/model/nodecomponents.py: Added walk generator over all
4              items in the document tree. Added a method to eliminated duplicated names
5                    in document tree.
6    
7            * tools/formed/formed/model/misc.py: Added update mechanism for id generator
8              after names collisions are eliminated.
9    
10            * tools/formed/formed/main.py: Added an 'Extra' menu with item
11              'Make names   unique'.
12    
13    2007-08-11      Sascha L. Teichmann <[email protected]>
14    
15            * tools/formed/formed/model/data.py,
16              tools/formed/formed/plugins/web/renderer.py: Removed support
17                    for 'text' attributes in bool items. They were never really
18                    used and the 'description' attributes fulfill the same
19                    purpose.
20    
21            * contrib/remove-bool-text.xsl: Transform to remove the
22              'text' attributes from bool items. Apply with:
23                    'xsltproc contrib/remove-bool-text.xsl old.xml > new.xml'
24    
25            * tools/formed/test-data/simple.xml: Removed 'text' attributes
26              from bool items.
27    
28    2007-08-11      Sascha L. Teichmann <[email protected]>
29    
30            * contrib/convert-choices.xsl: Simpified.
31    
32    2007-08-11      Sascha L. Teichmann <[email protected]>
33    
34            * tools/formed/formed/model/data.py: Removed 'options' attribute
35              from ChoiceLeaf. Use 'value' instead, please!
36    
37            * tools/formed/formed/plugins/web/renderer.py: use 'value' attribute
38              instead of 'options' to render choices.
39    
40            * contrib/convert-choices.xsl: Added to convert document files
41              which use the choice 'option' attribute to usage of 'value'.
42                    Apply with e.g. 'xsltproc convert-choices.xsl old.xml > new.xml'
43    
44    2007-08-10      Sascha L. Teichmann <[email protected]>
45    
46            * tools/formed/formed/plugins/web/renderer.py: radio buttons
47              are selected by 'checked' and not by 'selected'. Fixed.
48    
49    2007-08-10      Sascha L. Teichmann <[email protected]>
50    
51            * tools/formed/formed/model/data.py: ChoiceLeafs are now
52              initialized with size = 1.
53    
54    2007-08-10      Sascha L. Teichmann <[email protected]>
55    
56            * tools/formed/formed/model/data.py: TextLeafs are now
57              initialized with size = 40, maxlength = 60
58    
59    2007-08-10      Sascha L. Teichmann <[email protected]>
60    
61            * tools/formed/formed/plugins/web/renderer.py: Fixed: choices
62              are renderered with description now.
63    
64    2007-08-10      Sascha L. Teichmann <[email protected]>
65    
66            * tools/formed/formed/plugins/web/renderer.py: Added rendering
67              for date items. Added missing ids for texts and textareas.
68    
69    2007-08-10      Sascha L. Teichmann <[email protected]>
70    
71            * tools/formed/formed/config.py: Evaluate the environment
72              variable 'FORMED'. Snytax: FORMED='key1:value1;key2:value2'
73    
74            * tools/formed/formed/plugins/plugin.py: Give a reference
75              to the config at setup time.
76    
77            * tools/formed/formed/plugins/web/plugin.py: To determine
78              the port look at FORMED dictionary first. Key is 'web.port'.
79                    e.g. FORMED='web.port:8888'
80    
81            * tools/formed/formed/main.py: Call the plugin setup with
82              the reference to the config.
83    
84    2007-08-10      Sascha L. Teichmann <[email protected]>
85    
86            * tools/formed/test-data/simple.xml: removed 'text' attributes from
87              info tags. Use the 'value' attributes for same purpose now, please!
88    
89            * tools/formed/formed/model/data.py: removed text attributes from
90              InfoLeaf.
91    
92            * tools/formed/formed/plugins/web/renderer.py: Rendering of info
93              now uses the 'value' instead of the 'text' attributes.
94    
95    2007-08-09      Sascha L. Teichmann <[email protected]>
96    
97            * tools/formed/formed/model/data.py: next/prevPage() are
98              methods of PageNode now.
99    
100            * tools/formed/formed/model/nodecomponents.py: findByClassAndName()
101              is method of Document now.
102    
103            * tools/formed/formed/plugins/web/plugin.py: Factored out
104              the HTML renderer.
105    
106            * tools/formed/formed/plugins/web/renderer.py: New: contains
107              the HTML renderer now.
108    
109            * tools/formed/test-data/simple.xml: Fixed typo
110    
111    2007-08-09      Sascha L. Teichmann <[email protected]>
112    
113            * tools/formed/formed/plugins/web/plugin.py: Fixed a bug
114              in calculation of width of bounded int fields.
115    
116    2007-08-09      Sascha L. Teichmann <[email protected]>
117    
118            * tools/formed/test-data/simple.xml: Make demo Int fancier.
119    
120            * tools/formed/formed/model/data.py: Added attributes to IntLeaf
121    
122            * tools/formed/formed/plugins/web/plugin.py: Added rendering for
123              Ints
124    
125    2007-08-09      Sascha L. Teichmann <[email protected]>
126    
127            * tools/formed/test-data/simple.xml: Added demo textarea
128    
129            * tools/formed/formed/model/data.py: Added TextAreaLeaf
130    
131            * tools/formed/formed/io/document.py: register builder
132              for loading of textareas
133    
134            * tools/formed/formed/plugins/web/plugin.py: Added rendering
135              for textareas.
136    
137    2007-08-09      Sascha L. Teichmann <[email protected]>
138    
139            * tools/formed/test-data/simple.xml: Make demo choice fancier.
140    
141            * tools/formed/formed/model/data.py: Added attributes for texts
142            
143            * tools/formed/formed/plugins/web/plugin.py: Added rendering
144              for texts
145    
146    2007-08-09      Sascha L. Teichmann <[email protected]>
147    
148            * tools/formed/test-data/simple.xml: Make demo choice fancier.
149    
150            * tools/formed/formed/model/data.py: Added attributes for choices.
151    
152            * tools/formed/formed/plugins/web/plugin.py: Added rendering
153              for choices
154    
155    2007-08-09      Sascha L. Teichmann <[email protected]>
156    
157            * tools/formed/formed/model/data.py,
158              tools/formed/formed/model/nodecomponents.py: Added new
159                    attributes.
160    
161            * tools/formed/formed/plugins/web/plugin.py: Added rendering
162              for checkboxes and radio buttons.
163    
164    2007-08-08      Sascha L. Teichmann <[email protected]>
165    
166            * tools/formed/test-data/simple.xml: Added some descriptions
167    
168            * tools/formed/formed/model/data.py: set attributes in constructors
169              directly.
170    
171            * tools/formed/formed/model/nodecomponents.py: Added description
172              attribute in the NodeComponent base class.
173    
174            * tools/formed/formed/plugins/web/plugin.py: Render description
175              as legend in fieldset for GroupNodes.
176    
177    2007-08-08      Sascha L. Teichmann <[email protected]>
178    
179            * tools/formed/formed/plugins/web/plugin.py: make UTF-8
180              output work.
181    
182    2007-08-08      Sascha L. Teichmann <[email protected]>
183    
184            * tools/formed/formed/model/data.py: Added get/setText() method
185    
186            * tools/formed/formed/plugins/web/plugin.py: Added a first
187              version of a recursive HTML renderer based on the document
188                    tree.
189    
190    2007-08-08      Sascha L. Teichmann <[email protected]>
191    
192            * tools/formed/formed/plugins/*: New: plug-in infrastructure.
193            
194            * tools/formed/formed/plugins/web/*: new: A simple web server
195              which is intended to serve pages of the current formular.
196    
197            * tools/formed/formed/main.py: start the plug-ins
198    
199            * tools/formed/formed/config.py: configuration class. Used
200              for the plug-ins.
201    
202  2007-08-08      Sascha L. Teichmann <[email protected]>  2007-08-08      Sascha L. Teichmann <[email protected]>
203    
204          * tools/formed/formed/model/nodecomponents.py: Fixed broadcasting          * tools/formed/formed/model/nodecomponents.py: Fixed broadcasting

Legend:
Removed from v.10  
changed lines
  Added in v.33

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26