/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 4 by teichmann, Mon Aug 6 12:56:35 2007 UTC revision 30 by teichmann, Fri Aug 10 23:19:45 2007 UTC
# Line 1  Line 1 
1    2007-08-11      Sascha L. Teichmann <[email protected]>
2    
3            * tools/formed/formed/model/data.py: Removed 'options' attribute
4              from ChoiceLeaf. Use 'value' instead, please!
5    
6            * tools/formed/formed/plugins/web/renderer.py: use 'value' attribute
7              instead of 'options' to render choices.
8    
9            * contrib/convert-choices.xsl: Added to convert document files
10              which use the choice 'option' attribute to usage of 'value'.
11                    Apply with e.g. 'xsltproc convert-choices.xsl old.xml > new.xml'
12    
13    2007-08-10      Sascha L. Teichmann <[email protected]>
14    
15            * tools/formed/formed/plugins/web/renderer.py: radio buttons
16              are selected by 'checked' and not by 'selected'. Fixed.
17    
18    2007-08-10      Sascha L. Teichmann <[email protected]>
19    
20            * tools/formed/formed/model/data.py: ChoiceLeafs are now
21              initialized with size = 1.
22    
23    2007-08-10      Sascha L. Teichmann <[email protected]>
24    
25            * tools/formed/formed/model/data.py: TextLeafs are now
26              initialized with size = 40, maxlength = 60
27    
28    2007-08-10      Sascha L. Teichmann <[email protected]>
29    
30            * tools/formed/formed/plugins/web/renderer.py: Fixed: choices
31              are renderered with description now.
32    
33    2007-08-10      Sascha L. Teichmann <[email protected]>
34    
35            * tools/formed/formed/plugins/web/renderer.py: Added rendering
36              for date items. Added missing ids for texts and textareas.
37    
38    2007-08-10      Sascha L. Teichmann <[email protected]>
39    
40            * tools/formed/formed/config.py: Evaluate the environment
41              variable 'FORMED'. Snytax: FORMED='key1:value1;key2:value2'
42    
43            * tools/formed/formed/plugins/plugin.py: Give a reference
44              to the config at setup time.
45    
46            * tools/formed/formed/plugins/web/plugin.py: To determine
47              the port look at FORMED dictionary first. Key is 'web.port'.
48                    e.g. FORMED='web.port:8888'
49    
50            * tools/formed/formed/main.py: Call the plugin setup with
51              the reference to the config.
52    
53    2007-08-10      Sascha L. Teichmann <[email protected]>
54    
55            * tools/formed/test-data/simple.xml: removed 'text' attributes from
56              info tags. Use the 'value' attributes for same purpose now, please!
57    
58            * tools/formed/formed/model/data.py: removed text attributes from
59              InfoLeaf.
60    
61            * tools/formed/formed/plugins/web/renderer.py: Rendering of info
62              now uses the 'value' instead of the 'text' attributes.
63    
64    2007-08-09      Sascha L. Teichmann <[email protected]>
65    
66            * tools/formed/formed/model/data.py: next/prevPage() are
67              methods of PageNode now.
68    
69            * tools/formed/formed/model/nodecomponents.py: findByClassAndName()
70              is method of Document now.
71    
72            * tools/formed/formed/plugins/web/plugin.py: Factored out
73              the HTML renderer.
74    
75            * tools/formed/formed/plugins/web/renderer.py: New: contains
76              the HTML renderer now.
77    
78            * tools/formed/test-data/simple.xml: Fixed typo
79    
80    2007-08-09      Sascha L. Teichmann <[email protected]>
81    
82            * tools/formed/formed/plugins/web/plugin.py: Fixed a bug
83              in calculation of width of bounded int fields.
84    
85    2007-08-09      Sascha L. Teichmann <[email protected]>
86    
87            * tools/formed/test-data/simple.xml: Make demo Int fancier.
88    
89            * tools/formed/formed/model/data.py: Added attributes to IntLeaf
90    
91            * tools/formed/formed/plugins/web/plugin.py: Added rendering for
92              Ints
93    
94    2007-08-09      Sascha L. Teichmann <[email protected]>
95    
96            * tools/formed/test-data/simple.xml: Added demo textarea
97    
98            * tools/formed/formed/model/data.py: Added TextAreaLeaf
99    
100            * tools/formed/formed/io/document.py: register builder
101              for loading of textareas
102    
103            * tools/formed/formed/plugins/web/plugin.py: Added rendering
104              for textareas.
105    
106    2007-08-09      Sascha L. Teichmann <[email protected]>
107    
108            * tools/formed/test-data/simple.xml: Make demo choice fancier.
109    
110            * tools/formed/formed/model/data.py: Added attributes for texts
111            
112            * tools/formed/formed/plugins/web/plugin.py: Added rendering
113              for texts
114    
115    2007-08-09      Sascha L. Teichmann <[email protected]>
116    
117            * tools/formed/test-data/simple.xml: Make demo choice fancier.
118    
119            * tools/formed/formed/model/data.py: Added attributes for choices.
120    
121            * tools/formed/formed/plugins/web/plugin.py: Added rendering
122              for choices
123    
124    2007-08-09      Sascha L. Teichmann <[email protected]>
125    
126            * tools/formed/formed/model/data.py,
127              tools/formed/formed/model/nodecomponents.py: Added new
128                    attributes.
129    
130            * tools/formed/formed/plugins/web/plugin.py: Added rendering
131              for checkboxes and radio buttons.
132    
133    2007-08-08      Sascha L. Teichmann <[email protected]>
134    
135            * tools/formed/test-data/simple.xml: Added some descriptions
136    
137            * tools/formed/formed/model/data.py: set attributes in constructors
138              directly.
139    
140            * tools/formed/formed/model/nodecomponents.py: Added description
141              attribute in the NodeComponent base class.
142    
143            * tools/formed/formed/plugins/web/plugin.py: Render description
144              as legend in fieldset for GroupNodes.
145    
146    2007-08-08      Sascha L. Teichmann <[email protected]>
147    
148            * tools/formed/formed/plugins/web/plugin.py: make UTF-8
149              output work.
150    
151    2007-08-08      Sascha L. Teichmann <[email protected]>
152    
153            * tools/formed/formed/model/data.py: Added get/setText() method
154    
155            * tools/formed/formed/plugins/web/plugin.py: Added a first
156              version of a recursive HTML renderer based on the document
157                    tree.
158    
159    2007-08-08      Sascha L. Teichmann <[email protected]>
160    
161            * tools/formed/formed/plugins/*: New: plug-in infrastructure.
162            
163            * tools/formed/formed/plugins/web/*: new: A simple web server
164              which is intended to serve pages of the current formular.
165    
166            * tools/formed/formed/main.py: start the plug-ins
167    
168            * tools/formed/formed/config.py: configuration class. Used
169              for the plug-ins.
170    
171    2007-08-08      Sascha L. Teichmann <[email protected]>
172    
173            * tools/formed/formed/model/nodecomponents.py: Fixed broadcasting
174              issue with zero length tree paths.
175    
176            * tools/formed/formed/model/misc.py: New: contains a class
177              for generating unique ids.
178    
179            * tools/formed/formed/main.py: Added an instance of an
180              unique id generator for naming of new made tree items.
181    
182    2007-08-07      Sascha L. Teichmann <[email protected]>
183    
184            * tools/formed/formed/main.py: Added event route document ->
185              attribute table to get informed when selected item is delete
186                    or an attribute is changed from the outside.
187    
188            * tools/formed/formed/ui/controls.py: Fixed. In older versions of
189              wxPython 2.6.x ListCtrl.InsertStringItem takes 2 instead
190                    of 3 argument. Uses icons+tooltips for tree navigation now.
191    
192    2007-08-07      Sascha L. Teichmann <[email protected]>
193    
194            * tools/formed/formed/model/nodecomponents.py: Set name
195              attribute in base class.
196    
197            * tools/formed/formed/io/document.py: Added a table
198              names -> classes.
199    
200            * tools/formed/formed/main.py: Added a toolbar. Added code
201              to create and delete tree items.
202    
203            * tools/formed/formed/ui/controls.py: Added code to
204              insert and delete new tree items.
205    
206    2007-08-07      Sascha L. Teichmann <[email protected]>
207    
208            * tools/formed/formed/model/nodecomponents.py: Fixed event
209              broadcasting for attribute changes.
210    
211            * tools/formed/formed/ui/controls.py: Add a list/table control to
212              edit the attributes of a selected item.
213    
214            * tools/formed/formed/main.py: Added code to bind the new
215              list/table control.
216    
217    2007-08-06      Sascha L. Teichmann <[email protected]>
218    
219            * tools/formed/formed/main.py: Added event routes to move
220              items in and out of groups.
221    
222            * tools/formed/formed/ui/controls.py: Added code to move
223              items in and out of groups.
224    
225    2007-08-06      Sascha L. Teichmann <[email protected]>
226    
227            * tools/formed/formed/model/nodecomponents.py: Fixed path
228              calculation to root and event broadcasting
229    
230            * tools/formed/formed/io/factories.py: Adjust to new
231              event broadcasting.
232    
233            * tools/formed/formed/main.py: Added code to move items
234              up and down the document tree.
235    
236            * tools/formed/formed/ui/controls.py: Establish sort order
237              by indices of children in parent instead of alphanum.
238                    Code to move items up and down the document tree.
239    
240            * tools/formed/formed/io/document.py: Added missing imports.
241    
242  2007-08-06      Sascha L. Teichmann <[email protected]>  2007-08-06      Sascha L. Teichmann <[email protected]>
243    
244          * tools/formed/formed.py: Added to avoid problems with          * tools/formed/formed.py: Added to avoid problems with

Legend:
Removed from v.4  
changed lines
  Added in v.30

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26