/[formed]/trunk/ChangeLog
ViewVC logotype

Contents of /trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26