/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 161 by teichmann, Mon Sep 10 13:22:13 2007 UTC revision 180 by torsten, Wed Sep 12 12:06:27 2007 UTC
# Line 1  Line 1 
1    2007-09-12 Torsten Irlaender <[email protected]>
2            * tools/formed/formed/plugins/ui/controls.py: Fixed bug that bad
3              values (dates)  were not pretty printed.
4            * tools/formed/formed/plugins/web/form_renderer.py: Added errormsg to
5              label rendering for choicelists.
6    
7    2007-09-12 Torsten Irlaender <[email protected]>
8            * tools/formed/formed/plugins/ui/controls.py: Fixed bug that
9              choicelist did not get selected when the value is set to "0"
10    
11    2007-09-12 Torsten Irlaender <[email protected]>
12            * tools/formed/formed/plugins/web/form_renderer.py: Added
13              "getPrintableData" method, for the formdata Class which will return
14              the description rather than the value of element in the ID. This is
15              need for displaying the choises in a right way.
16            
17            * tools/formed/formed/plugins/web/renderer.py: Changed string
18              "Fallnummer" into "Kundennummer" in the templates. Added
19              Kundennummer to the dataset digest output. Bound in the new
20              "getPrintableData" call for the digest.
21    
22    2007-10-11 Sascha L. Teichmann <[email protected]>
23    
24            * tools/formed/formed/plugins/export/data.py: The import/export
25              of data is now implemented with filters (the most consequent
26                    way in terms of design of FormEd). The support of the 'persistent'
27                    FORMED env-variable support has been removed.
28                    
29            * tools/formed/formed/plugins/ui/controls.py: Added a flag to the
30              filter file dialog to double as import dialog.
31    
32            * tools/formed/formed/main.py: Removed the the FORMED-var support
33              for persistence.
34            
35            * tools/formed/formed/config.py: Add the two new filters to the filters
36              list.
37    
38    2007-10-11 Sascha L. Teichmann <[email protected]>
39    
40            * tools/formed/formed/model/memory.py: Uses XML as persistence format now.
41              Removed pickle/unpickle stuff.
42    
43            * tools/formed/formed/main.py: Uses the new XML persistence.
44    
45            * tools/formed/formed/plugins/web/semantic.py: Fixed: choices were
46              not converted to int indices.
47    
48    2007-09-11 Sascha L. Teichmann <[email protected]>
49    
50            * tools/formed/formed/model/memory.py: Making MemoryDataStore persistent
51              with pickle/unpickle.
52    
53            * tools/formed/formed/main.py: Added a env FORMED parameter 'persistent'.
54              Set to a file name it is tried to unpickle a MemoryDataStore from
55                    that file. When exiting the program this file is used to store the
56                    current MemoryDataStore state. The storing only works if you exit
57                    the program through the Menu File->Exit.
58                    usage: FORMED=persistent:test.db ./formed.sh
59    
60    2007-09-11 Torsten Irlaender <[email protected]>
61    
62            * tools/formed/formed/plugins/web/renderer.py: Changed Name of the
63              application on the welcome page from "Formed" to "WASKA"
64    
65    2007-09-11 Torsten Irlaender <[email protected]>
66    
67            * tools/formed/formed/plugins/web/plugin.py,
68            * tools/formed/formed/plugins/web/controllers.py,
69            * tools/formed/formed/plugins/web/renderer.py: Added InfoPageHandler.
70              The infopage provides information on all project participants.
71    
72    2007-09-11 Sascha L. Teichmann <[email protected]>
73    
74            * tools/formed/formed/plugins/web/controllers.py: Fix unicode conversion
75              issues with error messages (once again).
76    
77    2007-09-11 Torsten Irlaender <[email protected]>
78    
79            * tools/formed/formed/plugins/web/form_renderer.py,
80            * tools/formed/formed/plugins/web/renderer.py: Added alt tag for
81              icons in error and confirmation dialogs.
82    
83    2007-09-11 Sascha L. Teichmann <[email protected]>
84    
85            * tools/formed/formed/plugins/web/form_renderer.py: Fixed label
86              generation for ints, texts and textareas. Fixed h depths of infos.
87    
88    2007-09-11 Sascha L. Teichmann <[email protected]>
89    
90            * tools/formed/formed/plugins/web/form_renderer.py: Removed
91              debug output for help.
92    
93            * tools/formed/formed/plugins/web/semantic.py: Added forgotten
94              check for bools.
95    
96            * tools/formed/formed/plugins/web/controllers.py:  Added correct
97              HTML output of data for bools.
98    
99    2007-09-11 Torsten Irlaender <[email protected]>
100    
101            * tools/formed/formed/plugins/web/form_renderer.py: Changed size of
102              textfields for int values. Changed Label for submitbuttons to
103              "Speichern"
104    
105            * tools/formed/formed/plugins/web/plugin.py,
106              tools/formed/formed/plugins/web/controllers.py: Added new
107              NotImplementedHandler to show up a dummysite for not implemented
108              functions.
109    
110            * tools/formed/formed/plugins/web/renderer.py: Added
111              NotImplementedRenderer. Various small fixes. Mostly renaming the
112              labels of some context menus. Error messages are now generated
113              dynamically depending on num errors. Formular navigation has now
114              colored indication for errors.
115    
116    2007-09-11 Torsten Irlaender <[email protected]>
117    
118            * tools/formed/formed/plugins/web/renderer.py: Implemented "LookAhead"
119              algorithm for the formular navigation to get rid of the problem
120              that some of the items within the navigation are not linked.  Now
121              structural group elements are linked with the next page found in the
122              formular structure.
123    
124    2007-09-10 Torsten Irlaender <[email protected]>
125            * tools/formed/formed/plugins/web/form_renderer.py: Changed order of
126              div and formtag.
127    
128            * tools/formed/formed/plugins/web/controllers.py: Added DataSet action
129              menu in the conformation dialog when creating a new dataset.
130    
131            * tools/formed/formed/plugins/web/renderer.py: Fixed error when
132              rendering the default welcome page. Changed rendering of the
133              overview and the digest table of the datasets. Added icon for
134              confirmation dialog, moved the icon in the <h1> tags.  
135    
136    2007-09-10 Torsten Irlaender <[email protected]>
137    
138            * tools/formed/formed/plugins/web/form_renderer.py: Some html
139              generation cleanup. Added error icons to formelements
140    
141            * tools/formed/formed/plugins/web/controllers.py: Fixed initialisation
142              of ErrorStatus. Fixed generated of the help tags in the formular
143    
144            * tools/formed/formed/plugins/web/renderer.py: Added error icon for
145              pageerrors. An "!" now indicates errors on pages in the formular
146              navigation. Added new <div> "content" around confirmation dialogss.
147              Links in confimation dialogs are now rendered as buttons. Removed
148              old obsolete OverviewRenderer.
149    
150    2007-09-10 Sascha L. Teichmann <[email protected]>
151    
152            * tools/formed/formed/plugins/web/renderer.py: Highlight selected
153              page in page navigation.
154    
155    2007-09-10 Torsten Irlaender <[email protected]>
156    
157            * tools/formed/formed/plugins/web/controllers.py: Fixed issues on
158              displaying formdata when changing datasets. Loading the right
159              formdata was not handled in a correct way. Hope it is all fixed now.
160              Left some commented code because not all sideeffects of the changes
161              are tested yet.
162    
163            * tools/formed/formed/plugins/web/renderer.py: DataSetDigestRenderer
164              now uses the correct data out of the formdata.
165    
166  2007-09-10 Sascha L. Teichmann <[email protected]>  2007-09-10 Sascha L. Teichmann <[email protected]>
167    
168          * tools/formed/formed/plugins/web/controllers.py: Pretty          * tools/formed/formed/plugins/web/controllers.py: Pretty

Legend:
Removed from v.161  
changed lines
  Added in v.180

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26