/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

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

Legend:
Removed from v.131  
changed lines
  Added in v.145

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26