/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 130 by torsten, Mon Sep 3 12:57:52 2007 UTC revision 148 by torsten, Fri Sep 7 09:43:13 2007 UTC
# Line 1  Line 1 
1  2007-09-03 Torsten Irlaender <[email protected]>  2007-09-06 Torsten Irlaender <[email protected]>
2            * tools/formed/formed/plugins/web/renderer.py,
3              tools/formed/formed/plugins/web/controller.py:
4              Renderes now get an instance of the formdata object to provide
5              access the data needed to render various infoboxes etc. Handler
6              instanciate the formdata.
7            
8    2007-09-06 Torsten Irlaender <[email protected]>
9            * tools/formed/formed/plugins/web/renderer.py: Mainly tried to get the
10              getFormData interface to work. Added two small semantic fixes, but
11              did not manage to get it up. Need to exime this a little bit more
12            * tools/formed/formed/plugins/web/controllers.py: Put <div> tags
13              around the menus on the right side to be able to assign different
14              styles. Added dataset actions while editing a dataset.
15            
16    2007-09-05 Torsten Irlaender <[email protected]>
17            * tools/formed/formed/model/memory.py: Fixed deleting datasets by
18              removing unwanted del method
19            * tools/formed/formed/plugins/web/controllers.py: Implemented
20              confiration dialogs for create, delete, and select aof datasets. Started to use
21              templates as well for larger information units like the dataset summary.
22            
23    2007-09-05 Sascha L. Teichmann <[email protected]>
24    
25            * tools/formed/formed/model/nodecomponents.py: Added a
26              method to document to find index of page.
27    
28            * tools/formed/formed/plugins/web/semantic.py: Added getValue()
29              to fetch data from semantic box.
30    
31            * tools/formed/formed/plugins/web/controllers.py: Added new
32              FormData implementation to support DB and semantic box.
33    
34    2007-09-05 Sascha L. Teichmann <[email protected]>
35    
36            * tools/formed/formed/plugins/web/renderer.py: escaped
37              error message.
38    
39            * tools/formed/formed/plugins/web/controllers.py: Don't fetch
40              dataset from backend each time a page is up to edit.
41    
42    2007-09-05 Sascha L. Teichmann <[email protected]>
43    
44            * tools/formed/formed/plugins/web/renderer.py: SimplePageRenderer
45              returns "Page not found" if given page is None.
46    
47            * tools/formed/formed/plugins/web/controllers.py: Added checks
48              to avoid crashing when ask for a non-existent page.
49    
50    2007-09-05 Sascha L. Teichmann <[email protected]>
51    
52            * tools/formed/formed/plugins/web/controllers.py: Some clean-ups.
53    
54    2007-09-05 Sascha L. Teichmann <[email protected]>
55    
56            * tools/formed/formed/plugins/web/plugin.py: Remove request handlers
57              and renderers.
58    
59            * tools/formed/formed/plugins/web/controllers.py: New. Contains handlers
60              and renderers now. TODO: Move renderers to renderer.py
61    
62    2007-09-05 Torsten Irlaender <[email protected]>
63    
64            * tools/formed/formed/plugins/web/www/main.tmpl: Adopted web template
65              and bound in the the new added functions to create, edit, delete and
66              show formdata.
67            
68    2007-09-05 Sascha L. Teichmann <[email protected]>
69    
70            * tools/formed/formed/model/memory.py: Removed bisect and use a
71              simple linear scan for dataset lookup now.
72    
73            * tools/formed/formed/plugins/web/plugin.py: Fixed various issues
74              of different sizes.
75    
76    2007-09-05 Torsten Irlaender <[email protected]>
77    
78            * tools/formed/formed/plugins/web/memory.py: Fixed getDataSetById
79              fuction
80                    
81            * tools/formed/formed/plugins/web/persistent.py: Added store() method
82              to the DataSet interface
83    
84            * tools/formed/formed/plugins/web/renderer.py: Added handlers and
85              renderes for create, update, delete and show actions on formular data.
86    
87    2007-09-04 Sascha L. Teichmann <[email protected]>
88    
89            * tools/formed/formed/plugins/web/server.py: The mapping
90              to methods is now driven by regualar expressions and
91                    a dictionary. Response objects are now able to send
92                    error codes.
93    
94            * tools/formed/formed/plugins/web/renderer.py: Fixed an issue
95              when help in Formdata is None. Moved text for help into
96                    a top level '''...''' variable.
97    
98            * tools/formed/test-data/simple.xml: Added test for help.
99    
100            * tools/formed/formed/plugins/web/help.py: extra None check.
101    
102            * tools/formed/formed/plugins/web/plugin.py: Uses the new
103              table driven mapping of reguest handling. TODO: split the
104                    WebPlugIn.pageHandler() method further to smaller handlers.
105                    Smaller clean ups and better exception handling.
106    
107            * tools/formed/formed/plugins/web/cache.py: Report OSErrors
108              and do not catch them.
109    
110    2007-09-04 Torsten Irlaender <[email protected]>
111    
112            * tools/formed/formed/plugins/web/renderer.py,
113            * tools/formed/formed/plugins/web/plugin.py: Added Interface to
114              the HelpProvider and inserted help icons to the html output.
115              Added decorator for Formelemnts, so textfields, choices etc. are now
116              within a <div> tag.
117              Modified the error messages.
118    
119    2007-09-04 Sascha L. Teichmann <[email protected]>
120    
121            * tools/formed/formed/plugins/web/cache.py: New. Implements
122              the server-side caching more clean. Fixes a bug with
123                    serving static content.
124    
125            * tools/formed/formed/plugins/web/plugin.py: Use the new cache.
126    
127    2007-09-04 Sascha L. Teichmann <[email protected]>
128    
129            * tools/formed/formed/plugins/web/plugin.py: Set MIME type
130              to "application/xhtml+xml" when serving help texts.
131    
132    2007-09-03 Sascha L. Teichmann <[email protected]>
133    
134            * tools/formed/formed/plugins/export/diff.py: New. Exports
135              pairwise differences between all modes.
136    
137            * tools/formed/formed/config.py: Use new export filter.
138    
139    2007-09-03 Sascha L. Teichmann <[email protected]>
140    
141            * tools/formed/formed/plugins/web/help.py: New. Parses an
142              XHTML document for id'ed divs and builds a help lookup.
143    
144            * tools/formed/formed/plugins/web/www/help.tmpl: Template for
145              the help content frame.
146    
147            * tools/formed/formed/plugins/web/www/help.xhtml: Some simple
148              help text index.
149    
150            * tools/formed/formed/plugins/web/plugin.py: Serves the help
151              texts now.
152    
153    2007-09-03 Torsten Irlaender <[email protected]>
154    
155            * tools/formed/formed/plugins/web/plugin.py: Only visible group
156              elements will be rendered in the formular navigation.
157              Formular pages in the navigation now have their own css-style
158              attributes.
159    
160    2007-09-03 Torsten Irlaender <[email protected]>
161    
162          * tools/formed/formed/plugins/web/www/main.tmpl: Added div area for page          * tools/formed/formed/plugins/web/www/main.tmpl: Added div area for page
163            errors in template            errors in template
164          * tools/formed/formed/plugins/web/plugin.py: Fixed undefined          * tools/formed/formed/plugins/web/plugin.py: Fixed undefined

Legend:
Removed from v.130  
changed lines
  Added in v.148

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26