/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 94 by teichmann, Sun Aug 26 16:39:32 2007 UTC revision 175 by teichmann, Tue Sep 11 17:21:55 2007 UTC
# Line 1  Line 1 
1    2007-09-11 Sascha L. Teichmann <[email protected]>
2    
3            * tools/formed/formed/model/memory.py: Making MemoryDataStore persistent
4              with pickle/unpickle.
5    
6            * tools/formed/formed/main.py: Added a env FORMED parameter 'persistent'.
7              Set to a file name it is tried to unpickle a MemoryDataStore from
8                    that file. When exiting the program this file is used to store the
9                    current MemoryDataStore state. The storing only works if you exit
10                    the program through the Menu File->Exit.
11                    usage: FORMED=persistent:test.db ./formed.sh
12    
13    2007-09-11 Torsten Irlaender <[email protected]>
14    
15            * tools/formed/formed/plugins/web/renderer.py: Changed Name of the
16              application on the welcome page from "Formed" to "WASKA"
17    
18    2007-09-11 Torsten Irlaender <[email protected]>
19    
20            * tools/formed/formed/plugins/web/plugin.py,
21            * tools/formed/formed/plugins/web/controllers.py,
22            * tools/formed/formed/plugins/web/renderer.py: Added InfoPageHandler.
23              The infopage provides information on all project participants.
24    
25    2007-09-11 Sascha L. Teichmann <[email protected]>
26    
27            * tools/formed/formed/plugins/web/controllers.py: Fix unicode conversion
28              issues with error messages (once again).
29    
30    2007-09-11 Torsten Irlaender <[email protected]>
31    
32            * tools/formed/formed/plugins/web/form_renderer.py,
33            * tools/formed/formed/plugins/web/renderer.py: Added alt tag for
34              icons in error and confirmation dialogs.
35    
36    2007-09-11 Sascha L. Teichmann <[email protected]>
37    
38            * tools/formed/formed/plugins/web/form_renderer.py: Fixed label
39              generation for ints, texts and textareas. Fixed h depths of infos.
40    
41    2007-09-11 Sascha L. Teichmann <[email protected]>
42    
43            * tools/formed/formed/plugins/web/form_renderer.py: Removed
44              debug output for help.
45    
46            * tools/formed/formed/plugins/web/semantic.py: Added forgotten
47              check for bools.
48    
49            * tools/formed/formed/plugins/web/controllers.py:  Added correct
50              HTML output of data for bools.
51    
52    2007-09-11 Torsten Irlaender <[email protected]>
53    
54            * tools/formed/formed/plugins/web/form_renderer.py: Changed size of
55              textfields for int values. Changed Label for submitbuttons to
56              "Speichern"
57    
58            * tools/formed/formed/plugins/web/plugin.py,
59              tools/formed/formed/plugins/web/controllers.py: Added new
60              NotImplementedHandler to show up a dummysite for not implemented
61              functions.
62    
63            * tools/formed/formed/plugins/web/renderer.py: Added
64              NotImplementedRenderer. Various small fixes. Mostly renaming the
65              labels of some context menus. Error messages are now generated
66              dynamically depending on num errors. Formular navigation has now
67              colored indication for errors.
68    
69    2007-09-11 Torsten Irlaender <[email protected]>
70    
71            * tools/formed/formed/plugins/web/renderer.py: Implemented "LookAhead"
72              algorithm for the formular navigation to get rid of the problem
73              that some of the items within the navigation are not linked.  Now
74              structural group elements are linked with the next page found in the
75              formular structure.
76    
77    2007-09-10 Torsten Irlaender <[email protected]>
78            * tools/formed/formed/plugins/web/form_renderer.py: Changed order of
79              div and formtag.
80    
81            * tools/formed/formed/plugins/web/controllers.py: Added DataSet action
82              menu in the conformation dialog when creating a new dataset.
83    
84            * tools/formed/formed/plugins/web/renderer.py: Fixed error when
85              rendering the default welcome page. Changed rendering of the
86              overview and the digest table of the datasets. Added icon for
87              confirmation dialog, moved the icon in the <h1> tags.  
88    
89    2007-09-10 Torsten Irlaender <[email protected]>
90    
91            * tools/formed/formed/plugins/web/form_renderer.py: Some html
92              generation cleanup. Added error icons to formelements
93    
94            * tools/formed/formed/plugins/web/controllers.py: Fixed initialisation
95              of ErrorStatus. Fixed generated of the help tags in the formular
96    
97            * tools/formed/formed/plugins/web/renderer.py: Added error icon for
98              pageerrors. An "!" now indicates errors on pages in the formular
99              navigation. Added new <div> "content" around confirmation dialogss.
100              Links in confimation dialogs are now rendered as buttons. Removed
101              old obsolete OverviewRenderer.
102    
103    2007-09-10 Sascha L. Teichmann <[email protected]>
104    
105            * tools/formed/formed/plugins/web/renderer.py: Highlight selected
106              page in page navigation.
107    
108    2007-09-10 Torsten Irlaender <[email protected]>
109    
110            * tools/formed/formed/plugins/web/controllers.py: Fixed issues on
111              displaying formdata when changing datasets. Loading the right
112              formdata was not handled in a correct way. Hope it is all fixed now.
113              Left some commented code because not all sideeffects of the changes
114              are tested yet.
115    
116            * tools/formed/formed/plugins/web/renderer.py: DataSetDigestRenderer
117              now uses the correct data out of the formdata.
118    
119    2007-09-10 Sascha L. Teichmann <[email protected]>
120    
121            * tools/formed/formed/plugins/web/controllers.py: Pretty
122              print format data (dates e.g)
123    
124    2007-09-10 Sascha L. Teichmann <[email protected]>
125    
126            * tools/formed/formed/plugins/web/controllers.py: Modified
127              ErrorStats a bit to avoid mysterious extra error on page.
128                    No clue why this works.
129    
130    2007-09-10 Sascha L. Teichmann <[email protected]>
131    
132            * tools/formed/formed/plugins/web/form_renderer.py: Fixed value
133              problem with radio groups, too.
134    
135    2007-09-10 Torsten Irlaender <[email protected]>
136            * tools/formed/formed/plugins/web/controllers.py: Sessions are now
137              really removed when deleting a dataset.
138            
139    2007-09-10 Torsten Irlaender <[email protected]>
140    
141            * tools/formed/formed/plugins/web/controllers.py: Added new Class
142              ErrorStats which provides Information on remaining errors per page.
143    
144            * tools/formed/formed/plugins/web/renderers.py: Finished movement of
145              the renderer methods from controllers.py to renderers.py.
146    
147            * tools/formed/formed/plugins/web/plugin.py: Removed render_session
148              handlers
149    
150    2007-09-10 Sascha L. Teichmann <[email protected]>
151    
152            * tools/formed/formed/plugins/web/form_renderer.py: values for
153              choices are generated from the document tree now. This brings
154                    the state storage of select boxes in HTML to live.
155    
156    2007-09-09 Sascha L. Teichmann <[email protected]>
157    
158            * tools/formed/formed/plugins/web/semantic.py: Fixed problems with
159              range checking of integers.
160    
161            * tools/formed/formed/plugins/web/controllers.py: Added class
162              ErrorItem to track errors. They are stored in the session.
163    
164    2007-09-09 Sascha L. Teichmann <[email protected]>
165    
166            * tools/formed/formed/model/nodecomponents.py: Fixed returning
167              wrong index in Document.indexOfcomponentByClassAndName.
168    
169            * tools/formed/formed/plugins/web/form_renderer.py: 'error' was
170              written 'errot' in renderer for textareas.
171    
172            * tools/formed/formed/plugins/web/controllers.py: Some clean-ups.
173    
174    2007-09-09 Sascha L. Teichmann <[email protected]>
175    
176            * tools/formed/formed/plugins/web/help.py: Added a 'hasHelp'
177              method. Could be cheaper for some implementations of help.
178    
179            * tools/formed/formed/plugins/web/form_renderer.py: Modified
180              FormData to have distinct getData(), getHelp() and getError()
181                    methods. Various bug fixes.
182    
183            * tools/formed/formed/plugins/web/controllers.py: Implements the
184              new FormData (trivial by now).
185    
186            * tools/formed/formed/plugins/web/renderer.py: New FormData and
187              some bug fixes.
188    
189    2007-09-09 Sascha L. Teichmann <[email protected]>
190    
191            * tools/formed/formed/model/memory.py,
192              tools/formed/formed/model/persistent.py: Add a getValue() method
193                    to dataset abstraction. This is a bit of a workaround to bring
194                    global access across pages for rule checking to work.
195    
196            * tools/formed/formed/model/data.py: Fixed: When setting a new expression
197              the compiled version was not stored in the RuleLeaf.
198    
199            * tools/formed/formed/model/expr.py: shlex lexer does not like unicode.
200              convert the expression string to ascii for compilation.
201    
202            * tools/formed/formed/plugins/web/semantic.py: Remove the 'box' because
203              valid data is stored to the dataset immediately now. Fixed a bug
204                    with integer handler.
205    
206            * tools/formed/formed/plugins/web/controllers.py: Removed the semantic 'box'
207              stuff. When a submit is done extract the rules from the tree document
208                    that are effected by the modified variables and check them.
209    
210            * tools/formed/formed/plugins/web/renderer.py: Fixed exception handling
211              when dealing with templates.
212    
213    2007-09-07 Torsten Irlaender <[email protected]>
214            * tools/formed/formed/plugins/web/controllers.py,
215              tools/formed/formed/plugins/web/renderer.py: Moved more render
216              functions into renderer.py. New render classes are:
217              DataSetDigestRenderer, DataSetNavigationRenderer,
218              DataSetFormularRenderer, ConfirmationDialogRenderer
219    
220              Note: The new methods are only called from selected handlers. Other
221              handlers call the renderes in the old way.
222    
223    2007-09-07 Torsten Irlaender <[email protected]>
224            * tools/formed/formed/plugins/web/form_renderer.py: Renamed
225              renderer.py to form_renderer.py. This file will contain formular
226              specfic render methods in the future.
227            * tools/formed/formed/plugins/web/renderer.py: Added new renderer.py
228              which will contain general render methods.
229            * tools/formed/formed/plugins/web/controllers.py: Began to move all
230              rendering into renderer.py or form_renderer.py. This file will only
231              contain teh handlers in the future.
232    
233    2007-09-07 Torsten Irlaender <[email protected]>
234            * tools/formed/formed/plugins/web/renderer.py,
235              tools/formed/formed/plugins/web/controller.py:
236              Renderes now get an instance of the formdata object to provide
237              access the data needed to render various infoboxes etc. Handler
238              instanciate the formdata.
239            
240    2007-09-06 Torsten Irlaender <[email protected]>
241            * tools/formed/formed/plugins/web/renderer.py: Mainly tried to get the
242              getFormData interface to work. Added two small semantic fixes, but
243              did not manage to get it up. Need to exime this a little bit more
244            * tools/formed/formed/plugins/web/controllers.py: Put <div> tags
245              around the menus on the right side to be able to assign different
246              styles. Added dataset actions while editing a dataset.
247            
248    2007-09-05 Torsten Irlaender <[email protected]>
249            * tools/formed/formed/model/memory.py: Fixed deleting datasets by
250              removing unwanted del method
251            * tools/formed/formed/plugins/web/controllers.py: Implemented
252              confiration dialogs for create, delete, and select aof datasets. Started to use
253              templates as well for larger information units like the dataset summary.
254            
255    2007-09-05 Sascha L. Teichmann <[email protected]>
256    
257            * tools/formed/formed/model/nodecomponents.py: Added a
258              method to document to find index of page.
259    
260            * tools/formed/formed/plugins/web/semantic.py: Added getValue()
261              to fetch data from semantic box.
262    
263            * tools/formed/formed/plugins/web/controllers.py: Added new
264              FormData implementation to support DB and semantic box.
265    
266    2007-09-05 Sascha L. Teichmann <[email protected]>
267    
268            * tools/formed/formed/plugins/web/renderer.py: escaped
269              error message.
270    
271            * tools/formed/formed/plugins/web/controllers.py: Don't fetch
272              dataset from backend each time a page is up to edit.
273    
274    2007-09-05 Sascha L. Teichmann <[email protected]>
275    
276            * tools/formed/formed/plugins/web/renderer.py: SimplePageRenderer
277              returns "Page not found" if given page is None.
278    
279            * tools/formed/formed/plugins/web/controllers.py: Added checks
280              to avoid crashing when ask for a non-existent page.
281    
282    2007-09-05 Sascha L. Teichmann <[email protected]>
283    
284            * tools/formed/formed/plugins/web/controllers.py: Some clean-ups.
285    
286    2007-09-05 Sascha L. Teichmann <[email protected]>
287    
288            * tools/formed/formed/plugins/web/plugin.py: Remove request handlers
289              and renderers.
290    
291            * tools/formed/formed/plugins/web/controllers.py: New. Contains handlers
292              and renderers now. TODO: Move renderers to renderer.py
293    
294    2007-09-05 Torsten Irlaender <[email protected]>
295    
296            * tools/formed/formed/plugins/web/www/main.tmpl: Adopted web template
297              and bound in the the new added functions to create, edit, delete and
298              show formdata.
299            
300    2007-09-05 Sascha L. Teichmann <[email protected]>
301    
302            * tools/formed/formed/model/memory.py: Removed bisect and use a
303              simple linear scan for dataset lookup now.
304    
305            * tools/formed/formed/plugins/web/plugin.py: Fixed various issues
306              of different sizes.
307    
308    2007-09-05 Torsten Irlaender <[email protected]>
309    
310            * tools/formed/formed/plugins/web/memory.py: Fixed getDataSetById
311              fuction
312                    
313            * tools/formed/formed/plugins/web/persistent.py: Added store() method
314              to the DataSet interface
315    
316            * tools/formed/formed/plugins/web/renderer.py: Added handlers and
317              renderes for create, update, delete and show actions on formular data.
318    
319    2007-09-04 Sascha L. Teichmann <[email protected]>
320    
321            * tools/formed/formed/plugins/web/server.py: The mapping
322              to methods is now driven by regualar expressions and
323                    a dictionary. Response objects are now able to send
324                    error codes.
325    
326            * tools/formed/formed/plugins/web/renderer.py: Fixed an issue
327              when help in Formdata is None. Moved text for help into
328                    a top level '''...''' variable.
329    
330            * tools/formed/test-data/simple.xml: Added test for help.
331    
332            * tools/formed/formed/plugins/web/help.py: extra None check.
333    
334            * tools/formed/formed/plugins/web/plugin.py: Uses the new
335              table driven mapping of reguest handling. TODO: split the
336                    WebPlugIn.pageHandler() method further to smaller handlers.
337                    Smaller clean ups and better exception handling.
338    
339            * tools/formed/formed/plugins/web/cache.py: Report OSErrors
340              and do not catch them.
341    
342    2007-09-04 Torsten Irlaender <[email protected]>
343    
344            * tools/formed/formed/plugins/web/renderer.py,
345            * tools/formed/formed/plugins/web/plugin.py: Added Interface to
346              the HelpProvider and inserted help icons to the html output.
347              Added decorator for Formelemnts, so textfields, choices etc. are now
348              within a <div> tag.
349              Modified the error messages.
350    
351    2007-09-04 Sascha L. Teichmann <[email protected]>
352    
353            * tools/formed/formed/plugins/web/cache.py: New. Implements
354              the server-side caching more clean. Fixes a bug with
355                    serving static content.
356    
357            * tools/formed/formed/plugins/web/plugin.py: Use the new cache.
358    
359    2007-09-04 Sascha L. Teichmann <[email protected]>
360    
361            * tools/formed/formed/plugins/web/plugin.py: Set MIME type
362              to "application/xhtml+xml" when serving help texts.
363    
364    2007-09-03 Sascha L. Teichmann <[email protected]>
365    
366            * tools/formed/formed/plugins/export/diff.py: New. Exports
367              pairwise differences between all modes.
368    
369            * tools/formed/formed/config.py: Use new export filter.
370    
371    2007-09-03 Sascha L. Teichmann <[email protected]>
372    
373            * tools/formed/formed/plugins/web/help.py: New. Parses an
374              XHTML document for id'ed divs and builds a help lookup.
375    
376            * tools/formed/formed/plugins/web/www/help.tmpl: Template for
377              the help content frame.
378    
379            * tools/formed/formed/plugins/web/www/help.xhtml: Some simple
380              help text index.
381    
382            * tools/formed/formed/plugins/web/plugin.py: Serves the help
383              texts now.
384    
385    2007-09-03 Torsten Irlaender <[email protected]>
386    
387            * tools/formed/formed/plugins/web/plugin.py: Only visible group
388              elements will be rendered in the formular navigation.
389              Formular pages in the navigation now have their own css-style
390              attributes.
391    
392    2007-09-03 Torsten Irlaender <[email protected]>
393    
394            * tools/formed/formed/plugins/web/www/main.tmpl: Added div area for page
395              errors in template
396            * tools/formed/formed/plugins/web/plugin.py: Fixed undefined
397              pageerrors variable
398    
399    2007-09-03 Frank Koormann <[email protected]>
400    
401            * tools/formed/formed/plugins/export/html.py
402            (RecursiveExporter): Added annotation to export
403            (fillRow()): Renamed old fillNine to this more generic name.
404            
405    
406    2007-09-03 Sascha L. Teichmann <[email protected]>
407    
408            * tools/formed/formed/plugins/web/renderer.py: Using the decorator
409              from model.misc now.
410    
411    2007-09-03 Sascha L. Teichmann <[email protected]>
412    
413            * tools/formed/formed/model/nodecomponents.py: Added an
414              'annotation' attribute to node components. This is to
415                    enable FormEd document authors to add comments to groups
416                    and fields.
417    
418    2007-09-03 Frank Koormann <[email protected]>
419    
420            * tools/formed/formed/model/nodecomponents.py
421            (NodeComponent.getParent): New method to get node components parent.
422    
423            * tools/formed/formed/plugins/export/html.py: Export Choice option
424            as simple list instead of collection of bools.
425    
426    2007-09-02 Sascha L. Teichmann <[email protected]>
427    
428            * tools/formed/formed/model/persistent.py: Interfaces to abstract
429              from persistent storage details.
430    
431            * tools/formed/formed/model/memory.py: In core implementation
432              of the persistent interfaces.
433    
434            * tools/formed/formed/main.py: Holds a memory data store now.
435    
436    2007-09-02 Sascha L. Teichmann <[email protected]>
437    
438            * tools/formed/formed/plugins/export/sql.py,
439              tools/formed/formed/plugins/export/html.py: Fixed constructor chains
440                    for FileDialogFilter sub classes.
441    
442    2007-09-02 Sascha L. Teichmann <[email protected]>
443    
444            * tools/formed/formed/model/misc.py: Checking the mode in recursive
445              tree traversals is a common task. To ease this a decorator function
446                    checkMode in union with sub classing ModeChecker can be used.
447                    To make it work simply subclass from ModeChecker and add the decorator
448                    to the methods that need mode tracking. Before you start the recursion
449                    call self.prepareDescent().
450    
451            * tools/formed/formed/plugins/export/html.py: Uses the new decorator scheme
452              now which replace the old. TODO: Make the web renderer use the new scheme
453                    too.
454    
455    2007-09-02 Sascha L. Teichmann <[email protected]>
456    
457            * tools/formed/formed/plugins/export/sql.py: Removed needless import.
458    
459            * tools/formed/formed/plugins/export/html.py: HTML table exporter
460              uses new FileDialogFilter base class too.
461    
462    2007-09-02 Sascha L. Teichmann <[email protected]>
463    
464            * tools/formed/formed/plugins/ui/*: New. All file exporters
465              need a file dialog. Till now each of them pulled up its
466                    own. This was silly code replication. Now there is an abstract
467                    base class 'FileDialogFilter' which implements the common
468                    behavior. The file exporters should subclass it.
469    
470            * tools/formed/formed/plugins/export/sql.py: Subclass the SQL
471              exporters from the new base class. TODO: Subclass the HTML
472                    exporter too.
473    
474    2007-08-31 Sascha L. Teichmann <[email protected]>
475    
476            * tools/formed/formed/plugins/export/html.py: Make mode check
477              work (again).
478    
479    2007-08-31 Torsten Irlaender <[email protected]>
480    
481            * tools/formed/formed/plugins/export/html.py: Rendering of the HTML
482              exprt works now in a recursive way. This change was needed because
483              the structure of the formedtree has changed to be able to render
484              full hirachically document stuctures. (nested lists)
485              TODO: Fix modechecking
486    
487    2007-08-31 Torsten Irlaender <[email protected]>
488    
489            * tools/formed/formed/plugins/web/plugin.py: Navigation rendering works
490              now in recursive way. This change was needed because the structure
491              of the formedtree has changed to be able to render full hirachically
492              document stuctures. (nested lists)
493    
494    2007-08-31 Sascha L. Teichmann <[email protected]>
495    
496            * tools/formed/formed/model/nodecomponents.py: use discard()
497              instead of remove on sets.
498    
499            * tools/formed/formed/plugins/export/sql.py: Added an
500              exporter for table views.
501    
502            * tools/formed/formed/config.py: Added the new exporter
503              to the list of export filters.
504    
505    2007-08-30 Sascha L. Teichmann <[email protected]>
506    
507            * tools/formed/formed/model/data.py: Fixed a bug in
508              Page.allWidgets()
509    
510            * tools/formed/formed/plugins/export/sql.py: Added an exporter
511              for stored procudeures.
512    
513            * tools/formed/formed/config.py: Add the new SP exporter.
514    
515    2007-08-29 Torsten Irlaender <[email protected]>
516    
517            * tools/formed/formed/plugins/web/plugin.py,
518              tools/formed/formed/plugins/web/error_renderer.py: Added interface
519              to get the errors for a whole page in te formular. These errors can
520              now be displayed on the top of the formular.
521    
522    2007-08-29 Torsten Irlaender <[email protected]>
523    
524            * tools/formed/formed/plugins/web/renderer.py: Finished implementation
525              of the getFromData interface and prepared the rederer for generating
526              nice error messages
527    
528    2007-08-28 Frank Koormann <[email protected]>
529    
530            * tools/formed/formed/plugins/export/sql.py
531            (SchemaCreator.createSchema, SchemaCreator._createGroup):
532            Fixed typo in created DDS (PRIMRAY -> PRIMARY)
533    
534    2007-08-28 Torsten Irlaender <[email protected]>
535    
536            * tools/formed/formed/plugins/export/sql.py: Added small helper
537              function to generated valid quotes within the sql statements
538    
539    2007-08-29 Sascha L. Teichmann <[email protected]>
540    
541            * tools/formed/formed/plugins/export/sql.py: Added foreign keys
542              for repeat tables.
543              
544    2007-08-29 Sascha L. Teichmann <[email protected]>
545    
546            * tools/formed/formed/plugins/export/sql.py: When generating
547              an extra table check in a table of same content exists. In
548                    this case reference the existing table.
549    
550    2007-08-29 Sascha L. Teichmann <[email protected]>
551    
552            * tools/formed/formed/plugins/export/sql.py: Rewritten to produce
553              _real_ SQL and respect repeat groups.
554    
555            * tools/formed/formed/model/data.py: Fixed bug with Group.isRepeat()
556    
557            * tools/formed/formed/plugins/web/renderer.py: Use "".join([])
558              instead of expensive += string concat in some places.
559    
560    2007-08-29 Sascha L. Teichmann <[email protected]>
561    
562            * tools/formed/formed/model/data.py: Renamed GroupNode.getRepeat()
563              to .isRepeat and return a bool. Fixed a bug in Page.allWidgets().
564    
565    2007-08-28 Torsten Irlaender <[email protected]>
566    
567            * tools/formed/plugins/web/renderer.py: Added Formdata interface.
568            * tools/formed/model/data.py: Implements Formadata interface to
569              textfields. Fieldset generated depends now on the "invisible"
570              attribute of the groupnode. Field-label generation slightly changed.
571              Added error indication to textfields
572    
573    2007-08-28 Sascha L. Teichmann <[email protected]>
574    
575            * tools/formed/formed/model/data.py,
576              tools/formed/formed/io/document.py: Removed support
577                    of logical groups.
578    
579    2007-08-28 Sascha L. Teichmann <[email protected]>
580    
581            * tools/formed/formed/io/document.py: Avoid saving empty
582              attributes.
583    
584            * tools/formed/test-data/simple.xml: Applied.
585    
586    2007-08-28 Sascha L. Teichmann <[email protected]>
587    
588            * tools/formed/formed/model/data.py: Added 'repeat' and
589              'invisible' attributes to group. TODO: remove logical group.
590    
591    2007-08-27 Torsten Irlaender <[email protected]>
592    
593            * tools/formed/plugins/web/plugin.py,
594              tools/formed/plugins/web/renderer.py: Started to  include stylesheet
595              depending tags in the html generation.
596    
597    2007-08-27 Sascha L. Teichmann <[email protected]>
598    
599            * tools/formed/formed/model/data.py,
600              tools/formed/formed/io/document.py: Added a logical group.
601                    It has an attribute 'repeat' to indicate that it might
602                    be worthy an external table in DB schema.
603    
604    2007-08-27 Sascha L. Teichmann <[email protected]>
605    
606            * tools/formed/formed/plugins/web/plugin.py: Support
607              serving of static content.
608    
609            * tools/formed/formed/plugins/web/server.py: Removed
610              old send code.
611    
612    2007-08-27 Sascha L. Teichmann <[email protected]>
613    
614            * tools/formed/formed/plugins/web/plugin.py: Use new
615              Response object. Fix typo.
616    
617            * tools/formed/formed/plugins/web/server.py: support
618              response object to serve different MIME types.
619    
620    2007-08-27 Sascha L. Teichmann <[email protected]>
621    
622            * tools/formed/formed/plugins/web/plugin.py: Add web.path
623              to FORMED environment  variable to specify the
624                    root of the static content.
625    
626    2007-08-26 Sascha L. Teichmann <[email protected]>
627    
628            * tools/formed/formed/model/data.py,
629              tools/formed/formed/model/nodecomponents.py: Fixed mode issues.
630    
631            * tools/formed/formed/plugins/web/www,
632              tools/formed/formed/plugins/web/www/main.tmpl: New. Contains
633                    a template for the HTML output.
634    
635            * tools/formed/formed/plugins/web/plugin.py: Fixes several smaller
636              mode issues. Introduces CSS support. Simplified the action
637                    handling.
638    
639            * tools/formed/formed/plugins/web/renderer.py: Removed the
640              nagivation code.
641    
642            * tools/formed/formed/plugins/web/server.py: Added missing import.
643    
644  2007-08-26 Sascha L. Teichmann <[email protected]>  2007-08-26 Sascha L. Teichmann <[email protected]>
645    
646          * tools/formed/formed/model/data.py: Added missing broadcast          * tools/formed/formed/model/data.py: Added missing broadcast

Legend:
Removed from v.94  
changed lines
  Added in v.175

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26