/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 122 by teichmann, Sun Sep 2 11:12:25 2007 UTC revision 141 by teichmann, Thu Sep 6 05:47:42 2007 UTC
# Line 1  Line 1 
1    2007-09-05 Sascha L. Teichmann <[email protected]>
2    
3            * tools/formed/formed/plugins/web/plugin.py: Remove request handlers
4              and renderers.
5    
6            * tools/formed/formed/plugins/web/controllers.py: New. Contains handlers
7              and renderers now. TODO: Move renderers to renderer.py
8    
9    2007-09-05 Torsten Irlaender <[email protected]>
10    
11            * tools/formed/formed/plugins/web/www/main.tmpl: Adopted web template
12              and bound in the the new added functions to create, edit, delete and
13              show formdata.
14            
15    2007-09-05 Sascha L. Teichmann <[email protected]>
16    
17            * tools/formed/formed/model/memory.py: Removed bisect and use a
18              simple linear scan for dataset lookup now.
19    
20            * tools/formed/formed/plugins/web/plugin.py: Fixed various issues
21              of different sizes.
22    
23    2007-09-05 Torsten Irlaender <[email protected]>
24    
25            * tools/formed/formed/plugins/web/memory.py: Fixed getDataSetById
26              fuction
27                    
28            * tools/formed/formed/plugins/web/persistent.py: Added store() method
29              to the DataSet interface
30    
31            * tools/formed/formed/plugins/web/renderer.py: Added handlers and
32              renderes for create, update, delete and show actions on formular data.
33    
34    2007-09-04 Sascha L. Teichmann <[email protected]>
35    
36            * tools/formed/formed/plugins/web/server.py: The mapping
37              to methods is now driven by regualar expressions and
38                    a dictionary. Response objects are now able to send
39                    error codes.
40    
41            * tools/formed/formed/plugins/web/renderer.py: Fixed an issue
42              when help in Formdata is None. Moved text for help into
43                    a top level '''...''' variable.
44    
45            * tools/formed/test-data/simple.xml: Added test for help.
46    
47            * tools/formed/formed/plugins/web/help.py: extra None check.
48    
49            * tools/formed/formed/plugins/web/plugin.py: Uses the new
50              table driven mapping of reguest handling. TODO: split the
51                    WebPlugIn.pageHandler() method further to smaller handlers.
52                    Smaller clean ups and better exception handling.
53    
54            * tools/formed/formed/plugins/web/cache.py: Report OSErrors
55              and do not catch them.
56    
57    2007-09-04 Torsten Irlaender <[email protected]>
58    
59            * tools/formed/formed/plugins/web/renderer.py,
60            * tools/formed/formed/plugins/web/plugin.py: Added Interface to
61              the HelpProvider and inserted help icons to the html output.
62              Added decorator for Formelemnts, so textfields, choices etc. are now
63              within a <div> tag.
64              Modified the error messages.
65    
66    2007-09-04 Sascha L. Teichmann <[email protected]>
67    
68            * tools/formed/formed/plugins/web/cache.py: New. Implements
69              the server-side caching more clean. Fixes a bug with
70                    serving static content.
71    
72            * tools/formed/formed/plugins/web/plugin.py: Use the new cache.
73    
74    2007-09-04 Sascha L. Teichmann <[email protected]>
75    
76            * tools/formed/formed/plugins/web/plugin.py: Set MIME type
77              to "application/xhtml+xml" when serving help texts.
78    
79    2007-09-03 Sascha L. Teichmann <[email protected]>
80    
81            * tools/formed/formed/plugins/export/diff.py: New. Exports
82              pairwise differences between all modes.
83    
84            * tools/formed/formed/config.py: Use new export filter.
85    
86    2007-09-03 Sascha L. Teichmann <[email protected]>
87    
88            * tools/formed/formed/plugins/web/help.py: New. Parses an
89              XHTML document for id'ed divs and builds a help lookup.
90    
91            * tools/formed/formed/plugins/web/www/help.tmpl: Template for
92              the help content frame.
93    
94            * tools/formed/formed/plugins/web/www/help.xhtml: Some simple
95              help text index.
96    
97            * tools/formed/formed/plugins/web/plugin.py: Serves the help
98              texts now.
99    
100    2007-09-03 Torsten Irlaender <[email protected]>
101    
102            * tools/formed/formed/plugins/web/plugin.py: Only visible group
103              elements will be rendered in the formular navigation.
104              Formular pages in the navigation now have their own css-style
105              attributes.
106    
107    2007-09-03 Torsten Irlaender <[email protected]>
108    
109            * tools/formed/formed/plugins/web/www/main.tmpl: Added div area for page
110              errors in template
111            * tools/formed/formed/plugins/web/plugin.py: Fixed undefined
112              pageerrors variable
113    
114    2007-09-03 Frank Koormann <[email protected]>
115    
116            * tools/formed/formed/plugins/export/html.py
117            (RecursiveExporter): Added annotation to export
118            (fillRow()): Renamed old fillNine to this more generic name.
119            
120    
121    2007-09-03 Sascha L. Teichmann <[email protected]>
122    
123            * tools/formed/formed/plugins/web/renderer.py: Using the decorator
124              from model.misc now.
125    
126    2007-09-03 Sascha L. Teichmann <[email protected]>
127    
128            * tools/formed/formed/model/nodecomponents.py: Added an
129              'annotation' attribute to node components. This is to
130                    enable FormEd document authors to add comments to groups
131                    and fields.
132    
133    2007-09-03 Frank Koormann <[email protected]>
134    
135            * tools/formed/formed/model/nodecomponents.py
136            (NodeComponent.getParent): New method to get node components parent.
137    
138            * tools/formed/formed/plugins/export/html.py: Export Choice option
139            as simple list instead of collection of bools.
140    
141    2007-09-02 Sascha L. Teichmann <[email protected]>
142    
143            * tools/formed/formed/model/persistent.py: Interfaces to abstract
144              from persistent storage details.
145    
146            * tools/formed/formed/model/memory.py: In core implementation
147              of the persistent interfaces.
148    
149            * tools/formed/formed/main.py: Holds a memory data store now.
150    
151    2007-09-02 Sascha L. Teichmann <[email protected]>
152    
153            * tools/formed/formed/plugins/export/sql.py,
154              tools/formed/formed/plugins/export/html.py: Fixed constructor chains
155                    for FileDialogFilter sub classes.
156    
157  2007-09-02 Sascha L. Teichmann <[email protected]>  2007-09-02 Sascha L. Teichmann <[email protected]>
158    
159          * tools/formed/formed/model/misc.py: Checking the mode in recursive          * tools/formed/formed/model/misc.py: Checking the mode in recursive

Legend:
Removed from v.122  
changed lines
  Added in v.141

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26