/[formed]/trunk/ChangeLog
ViewVC logotype

Annotation of /trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 19 - (hide annotations)
Thu Aug 9 14:16:33 2007 UTC (17 years, 6 months ago) by teichmann
File size: 5567 byte(s)
Added TextArea support
1 teichmann 17 2007-08-09 Sascha L. Teichmann <[email protected]>
2 teichmann 10
3 teichmann 19 * tools/formed/test-data/simple.xml: Added demo textarea
4    
5     * tools/formed/formed/model/data.py: Added TextAreaLeaf
6    
7     * tools/formed/formed/io/document.py: register builder
8     for loading of textareas
9    
10     * tools/formed/formed/plugins/web/plugin.py: Added rendering
11     for textareas.
12    
13     2007-08-09 Sascha L. Teichmann <[email protected]>
14    
15 teichmann 18 * tools/formed/test-data/simple.xml: Make demo choice fancier.
16 teichmann 17
17 teichmann 18 * tools/formed/formed/model/data.py: Added attributes for texts
18    
19     * tools/formed/formed/plugins/web/plugin.py: Added rendering
20     for texts
21 teichmann 17
22 teichmann 18 2007-08-09 Sascha L. Teichmann <[email protected]>
23    
24     * tools/formed/test-data/simple.xml: Make demo choice fancier.
25    
26     * tools/formed/formed/model/data.py: Added attributes for choices.
27    
28 teichmann 17 * tools/formed/formed/plugins/web/plugin.py: Added rendering
29     for choices
30    
31     2007-08-09 Sascha L. Teichmann <[email protected]>
32    
33 teichmann 16 * tools/formed/formed/model/data.py,
34     tools/formed/formed/model/nodecomponents.py: Added new
35     attributes.
36    
37     * tools/formed/formed/plugins/web/plugin.py: Added rendering
38     for checkboxes and radio buttons.
39    
40     2007-08-08 Sascha L. Teichmann <[email protected]>
41    
42 teichmann 15 * tools/formed/test-data/simple.xml: Added some descriptions
43    
44     * tools/formed/formed/model/data.py: set attributes in constructors
45     directly.
46    
47     * tools/formed/formed/model/nodecomponents.py: Added description
48     attribute in the NodeComponent base class.
49    
50     * tools/formed/formed/plugins/web/plugin.py: Render description
51     as legend in fieldset for GroupNodes.
52    
53     2007-08-08 Sascha L. Teichmann <[email protected]>
54    
55 teichmann 14 * tools/formed/formed/plugins/web/plugin.py: make UTF-8
56     output work.
57    
58     2007-08-08 Sascha L. Teichmann <[email protected]>
59    
60 teichmann 12 * tools/formed/formed/model/data.py: Added get/setText() method
61    
62     * tools/formed/formed/plugins/web/plugin.py: Added a first
63     version of a recursive HTML renderer based on the document
64     tree.
65    
66     2007-08-08 Sascha L. Teichmann <[email protected]>
67    
68 teichmann 11 * tools/formed/formed/plugins/*: New: plug-in infrastructure.
69    
70     * tools/formed/formed/plugins/web/*: new: A simple web server
71     which is intended to serve pages of the current formular.
72    
73     * tools/formed/formed/main.py: start the plug-ins
74    
75     * tools/formed/formed/config.py: configuration class. Used
76     for the plug-ins.
77    
78     2007-08-08 Sascha L. Teichmann <[email protected]>
79    
80 teichmann 10 * tools/formed/formed/model/nodecomponents.py: Fixed broadcasting
81     issue with zero length tree paths.
82    
83     * tools/formed/formed/model/misc.py: New: contains a class
84     for generating unique ids.
85    
86     * tools/formed/formed/main.py: Added an instance of an
87     unique id generator for naming of new made tree items.
88    
89 teichmann 7 2007-08-07 Sascha L. Teichmann <[email protected]>
90    
91 teichmann 9 * tools/formed/formed/main.py: Added event route document ->
92     attribute table to get informed when selected item is delete
93     or an attribute is changed from the outside.
94    
95     * tools/formed/formed/ui/controls.py: Fixed. In older versions of
96     wxPython 2.6.x ListCtrl.InsertStringItem takes 2 instead
97     of 3 argument. Uses icons+tooltips for tree navigation now.
98    
99     2007-08-07 Sascha L. Teichmann <[email protected]>
100    
101 teichmann 8 * tools/formed/formed/model/nodecomponents.py: Set name
102     attribute in base class.
103    
104     * tools/formed/formed/io/document.py: Added a table
105     names -> classes.
106    
107     * tools/formed/formed/main.py: Added a toolbar. Added code
108     to create and delete tree items.
109    
110     * tools/formed/formed/ui/controls.py: Added code to
111     insert and delete new tree items.
112    
113     2007-08-07 Sascha L. Teichmann <[email protected]>
114    
115 teichmann 7 * tools/formed/formed/model/nodecomponents.py: Fixed event
116     broadcasting for attribute changes.
117    
118     * tools/formed/formed/ui/controls.py: Add a list/table control to
119     edit the attributes of a selected item.
120    
121     * tools/formed/formed/main.py: Added code to bind the new
122     list/table control.
123    
124 teichmann 4 2007-08-06 Sascha L. Teichmann <[email protected]>
125    
126 teichmann 6 * tools/formed/formed/main.py: Added event routes to move
127     items in and out of groups.
128    
129     * tools/formed/formed/ui/controls.py: Added code to move
130     items in and out of groups.
131    
132     2007-08-06 Sascha L. Teichmann <[email protected]>
133    
134 teichmann 5 * tools/formed/formed/model/nodecomponents.py: Fixed path
135     calculation to root and event broadcasting
136    
137     * tools/formed/formed/io/factories.py: Adjust to new
138     event broadcasting.
139    
140     * tools/formed/formed/main.py: Added code to move items
141     up and down the document tree.
142    
143     * tools/formed/formed/ui/controls.py: Establish sort order
144     by indices of children in parent instead of alphanum.
145     Code to move items up and down the document tree.
146    
147     * tools/formed/formed/io/document.py: Added missing imports.
148    
149     2007-08-06 Sascha L. Teichmann <[email protected]>
150    
151 teichmann 4 * tools/formed/formed.py: Added to avoid problems with
152     ambiguous absolute module names. Thanks to Bernhard Herzog
153    
154     * tools/formed/formed.sh: Starts formed.py now
155    
156     * tools/formed/formed/main.py,
157     tools/formed/formed/ui/controls.py: Added control to
158     move items around in tree. Has no effect by now.
159    
160 teichmann 2 2007-08-05 Sascha L. Teichmann <[email protected]>
161    
162 teichmann 3 * tools/formed/formed/io/parser.py: Adjusted style
163    
164     * tools/formed/formed/io/document.py,
165 teichmann 4 tools/formed/formed/io/factories.py: Simplified factory
166     model for XML loading.
167 teichmann 3
168     2007-08-05 Sascha L. Teichmann <[email protected]>
169    
170 teichmann 2 * ChangeLog: started ChangeLog
171    
172     * tools/formed/*: initial check-in of the Formular Editor.
173     Not working yet. Only can load, view and store formular XML files.
174     Start it with 'tools/formed/formed.sh'.

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26