/[formed]/trunk/ChangeLog
ViewVC logotype

Diff of /trunk/ChangeLog

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

revision 29 by teichmann, Fri Aug 10 13:10:35 2007 UTC revision 101 by torsten, Mon Aug 27 17:47:57 2007 UTC
# Line 1  Line 1 
1    2007-08-27 Torsten Irlaender <[email protected]>
2    
3            * tools/formed/plugins/web/plugin.py,
4              tools/formed/plugins/web/renderer.py: Started to  include stylesheet
5              depending tags in the html generation.
6    
7    207-08-27 Sascha L. Teichmann <[email protected]>
8    
9            * tools/formed/formed/model/data.py,
10              tools/formed/formed/io/document.py: Added a logical group.
11                    It has an attribute 'repeat' to indicate that it might
12                    be worthy an external table in DB schema.
13    
14    2007-08-27 Sascha L. Teichmann <[email protected]>
15    
16            * tools/formed/formed/plugins/web/plugin.py: Support
17              serving of static content.
18    
19            * tools/formed/formed/plugins/web/server.py: Removed
20              old send code.
21    
22    2007-08-27 Sascha L. Teichmann <[email protected]>
23    
24            * tools/formed/formed/plugins/web/plugin.py: Use new
25              Response object. Fix typo.
26    
27            * tools/formed/formed/plugins/web/server.py: support
28              response object to serve different MIME types.
29    
30    2007-08-27 Sascha L. Teichmann <[email protected]>
31    
32            * tools/formed/formed/plugins/web/plugin.py: Add web.path
33              to FORMED environment  variable to specify the
34                    root of the static content.
35    
36    2007-08-26 Sascha L. Teichmann <[email protected]>
37    
38            * tools/formed/formed/model/data.py,
39              tools/formed/formed/model/nodecomponents.py: Fixed mode issues.
40    
41            * tools/formed/formed/plugins/web/www,
42              tools/formed/formed/plugins/web/www/main.tmpl: New. Contains
43                    a template for the HTML output.
44    
45            * tools/formed/formed/plugins/web/plugin.py: Fixes several smaller
46              mode issues. Introduces CSS support. Simplified the action
47                    handling.
48    
49            * tools/formed/formed/plugins/web/renderer.py: Removed the
50              nagivation code.
51    
52            * tools/formed/formed/plugins/web/server.py: Added missing import.
53    
54    2007-08-26 Sascha L. Teichmann <[email protected]>
55    
56            * tools/formed/formed/model/data.py: Added missing broadcast
57              parameter to setAttribute() of RuleLeaf.
58    
59            * tools/formed/formed/plugins/web/plugin.py: Factorize
60              HTTP server code out to separate module.
61    
62            * tools/formed/formed/plugins/web/renderer.py: Removed
63              needless -1 from pop()
64    
65            * tools/formed/formed/plugins/web/server.py: New. Contains
66              the HTTP server code now.
67    
68    2007-08-26 Sascha L. Teichmann <[email protected]>
69    
70            * tools/formed/test-data/simple.xml: Modified to contain a rule.
71    
72            * tools/formed/formed/model/expr.py: Added. A simple RPN
73              expression evaluator. To avoid the problem of eval()ing
74                    arbitrary python expressions I've decided to use a very
75                    basic and limited stack machine to support rule checking.
76    
77            * tools/formed/formed/model/data.py: Added a RuleLeaf.
78    
79            * tools/formed/formed/io/document.py: Added factories for rules.
80    
81            * tools/formed/formed/model/nodecomponents.py: Add a method
82              to find all items of a given type in document for a given
83                    mode. Usefull to find all rules in the tree.
84    
85            * tools/formed/formed/ui/controls.py: Added a listener mechanism
86              to attribute table to report exceptions when setting a value
87                    from GUI. Useful to report compilation errors when setting
88                    expr of rule leafs.
89    
90            * tools/formed/formed/main.py: Added a method to track exceptions
91              from the attribute table and pop up dialogs if they occur.
92                    Added a counter of rule modifications in tree. Useful if you
93                    want build cached data structures like rule sets and you want
94                    to know if they are still valid.
95    
96    2007-08-24 Torsten Irlaender <[email protected]>
97    
98            * tools/formed/formed/plugins/export/sql.py: Fixed CHECK-constraint
99              for checkbox values. (Syntax error).
100    
101            * tools/formed/formed/plugins/names/filter.py: Fixes in formularname
102              generation  
103    
104    2007-08-24 Torsten Irlaender <[email protected]>
105    
106            * tools/formed/formed/plugins/names/filter.py: Separated Class for
107              making the formularnames more database friendly. Added some more
108              checks.
109            * tools/formed/formed/plugins/export/sql.py: Make use of the fresh
110              separated class, and some fixes in sql generation.
111    
112    2007-08-24 Sascha L. Teichmann <[email protected]>
113    
114            * tools/formed/formed/plugins/export/html.py: Print lengths
115              of external choice list.
116    
117    2007-08-24 Sascha L. Teichmann <[email protected]>
118    
119            * tools/formed/formed/main.py: Little workaround for
120              mode selection if someone adds an removes a mode.
121    
122    2007-08-24 Sascha L. Teichmann <[email protected]>
123    
124            * tools/formed/test-data/simple.xml: Better test case for
125              mode depended leaf items.
126    
127            * tools/formed/formed/model/nodecomponents.py: Added a method
128              to calculate the effective mode of an item.
129    
130            * tools/formed/formed/plugins/export/html.py: Use effective
131              mode. TODO: the 'all' modus return false results sometimes.
132                    Cause: The modes are only cumulated over time. Removal is
133                    not done.
134    
135    2007-08-24 Sascha L. Teichmann <[email protected]>
136    
137            * tools/formed/formed/plugins/export/html.py: Dump the items
138              of radio groups and choices too.
139    
140    2007-08-24 Torsten Irlaender <[email protected]>
141    
142            * tools/formed/formed/plugins/names/filter.py: Modified the renaming
143              by formular names to make the naming more database friendly.
144              Now only alphanumeric and underscore chars is allowed.
145    
146    2007-08-24 Sascha L. Teichmann <[email protected]>
147    
148            * tools/formed/formed/plugins/export/html.py: Tweaked
149              HTML table exporter a bit to be on par with the XSLT
150                    script. TODO: Dump items in radio and choice groups.
151    
152    2007-08-23 Sascha L. Teichmann <[email protected]>
153    
154            * tools/formed/formed/plugins/names/filter.py: Removed
155              HTML and SQL exporters.
156    
157            * tools/formed/formed/plugins/export,
158              tools/formed/formed/plugins/export/__init__.py,
159              tools/formed/formed/plugins/export/sql.py,
160              tools/formed/formed/plugins/export/html.py: New: Contain
161                    the HTML and the SQL exporters now.
162    
163            * tools/formed/formed/config.py: Use exporters from different
164              package now.
165    
166    2007-08-23 Torsten Irlaender <[email protected]>
167    
168            * tools/formed/formed/plugins/names/filter.py: Added an
169              pseudo SQL export filters. TODO: Move HTML and SQL filter
170              in a new file (formed/plugins/export/htmlexport.py and
171              sqlexport.py?)
172    
173            * tools/formed/formed/config.py: Install the new SQL filter.
174    
175    2007-08-23 Sascha L. Teichmann <[email protected]>
176    
177            * tools/formed/formed/model/nodecomponents.py: Added a depth()
178              method to determine the depth of particular tree item.
179    
180            * tools/formed/formed/plugins/names/filter.py: Added an
181              HTML export filters. TODO: needs more work.
182    
183            * tools/formed/formed/config.py: Install the new HTML filter.
184    
185    2007-08-23 Torsten Irlaender <[email protected]>
186    
187            * contrib/extract-xfa-fields_and_options.xsl: Added small xsl script
188              to extract fields and options in the XFA Data in teh PDF. This
189              script might me handy to indicate changes between the different
190              formular versions.
191            
192    2007-08-23 Sascha L. Teichmann <[email protected]>
193    
194            * tools/formed/formed/main.py: Add an 'all' mode to
195              select all modes. ;-)
196    
197    2007-08-22 Sascha L. Teichmann <[email protected]>
198    
199            * tools/formed/test-data/simple.xml,
200              tools/formed/formed/model/data.py,
201              tools/formed/formed/plugins/web/plugin.py,
202              tools/formed/formed/plugins/web/renderer.py,
203              tools/formed/formed/io/document.py,
204              tools/formed/formed/main.py: Removed support for switch nodes.
205              BEWARE: This breaks compatibility with older documents!
206    
207    2007-08-22 Sascha L. Teichmann <[email protected]>
208    
209            * tools/formed/formed/plugins/web/plugin.py: Uses the
210              getSelectedMode() from main now.
211    
212            * tools/formed/formed/main.py: selected mode is now hold
213              in main.
214    
215            * tools/formed/formed/config.py: removed selected mode from
216              env configuration.
217    
218    2007-08-22 Sascha L. Teichmann <[email protected]>
219    
220            * tools/formed/formed/ui/controls.py: Attributes in GUI attribute
221              table are now alphabetically sorted.
222    
223    2007-08-22 Sascha L. Teichmann <[email protected]>
224    
225            * tools/formed/formed/model/nodecomponents.py: Added code to
226              establish the new 'modes' recursively.
227    
228            * tools/formed/formed/plugins/plugin.py: Pass main instead
229              of cfg on plug-in start-up.
230    
231            * tools/formed/formed/plugins/web/plugin.py: Use the new
232              'modes' attribute for rendering.
233    
234            * tools/formed/formed/plugins/web/renderer.py: Use decorators
235              to check the new modes.
236    
237            * tools/formed/formed/main.py: Adjusted to new infrastructure.
238    
239    2007-08-22 Sascha L. Teichmann <[email protected]>
240    
241            * tools/formed/formed/model/nodecomponents.py: Added an
242              attribute 'modes' to NodeComponents.
243    
244    2007-08-22 Sascha L. Teichmann <[email protected]>
245    
246            * tools/formed/formed/model/data.py: Small cosmetic cleanups
247    
248    2007-08-21 Sascha L. Teichmann <[email protected]>
249    
250            * tools/formed/formed/plugins/web/renderer.py: Another fix
251              for the hidden field. Argh!
252    
253    2007-08-21 Sascha L. Teichmann <[email protected]>
254    
255            * tools/formed/formed/plugins/web/renderer.py: Fixed double
256              generation of hidden page field.
257    
258    2007-08-21 Sascha L. Teichmann <[email protected]>
259    
260            * tools/formed/formed/plugins/web/semantic.py: Added semantic
261              checks for radio groups.
262    
263    2007-08-21 Sascha L. Teichmann <[email protected]>
264    
265            * tools/formed/formed/plugins/web/semantic.py: Added semantic
266              checks for choices.
267    
268    2007-08-21      Frank Koormann <[email protected]>
269    
270            * contrib/convert-formedtree2html.xsl: Display switch nodes as
271            alternatives.
272            
273    2007-08-21      Frank Koormann <[email protected]>
274    
275            * contrib/convert-formedtree2html.xsl:
276            Replace technical types with readable descriptions
277    
278    2007-08-21 Sascha L. Teichmann <[email protected]>
279    
280            * tools/formed/formed/plugins/web/plugin.py: Fix a few smaller
281              issues. 'action' looks for all widgets on a page now, goes
282                    through all passed parameters, tries to match them with the
283                    widgets of the page and put them into the semantic box.
284                    Afterwards a list of untouched page parameters are left
285                    which will be deleted from the semantic box.
286    
287            * tools/formed/formed/plugins/web/semantic.py: Simplified.
288              The NodeComponent is passed as an argument now.
289    
290            * tools/formed/formed/plugins/web/renderer.py: Generate a
291              hidden field to store the name of the page.
292    
293    2007-08-21 Sascha L. Teichmann <[email protected]>
294    
295            * tools/formed/formed/plugins/web/plugin.py: Fixed an encoding
296              issue with incoming UTF-8 data.
297    
298    2007-08-21 Sascha L. Teichmann <[email protected]>
299    
300            * tools/formed/test-data/simple.xml: Improve test for widgets
301              in switches.
302    
303            * tools/formed/formed/model/data.py: Added a method to find all
304              widgets in a given page. Fixed a bug when walking in switch
305                    with a given mode.
306    
307            * tools/formed/formed/plugins/web/plugin.py: Simple test for
308              listing all widgets in page.
309    
310    2007-08-21 Torsten Irlaender <[email protected]>
311    
312            * tools/formed/formed/plugins/names/filter.py: Fixed file-encoding to
313              latin-1
314    
315    2007-08-21 Sascha L. Teichmann <[email protected]>
316    
317            * tools/formed/formed/model/data.py: Added mode parameter to
318              walk.
319                    
320            * tools/formed/formed/model/nodecomponents.py: SwitchNode overwrites
321              walk() with usage of the new mode parameter. Added a method to
322                    give children in a given mode.
323    
324            * tools/formed/formed/plugins/web/renderer.py: Simplified to use
325              new Switch.childrenInMode() method.
326    
327    2007-08-21 Sascha L. Teichmann <[email protected]>
328    
329            * tools/formed/formed/plugins/web/semantic.py: Add checks for
330              texts and text areas.
331    
332            * tools/formed/formed/plugins/web/renderer.py: Set accept-charset
333              to UTF-8 in generated form.
334    
335    2007-08-20 Sascha L. Teichmann <[email protected]>
336    
337            * tools/formed/formed/plugins/web/semantic.py: Added semantic
338              tests for dates.
339    
340    2007-08-20 Sascha L. Teichmann <[email protected]>        
341    
342            * tools/formed/test-data/simple.xml: Tweak a bit for integer
343              range test.
344    
345            * tools/formed/formed/model/nodecomponents.py: Added a method
346              to find a tree item for a given name.
347    
348            * tools/formed/formed/plugins/web/semantic.py: New: Box for
349              semantic checking. Has check for integers.
350    
351            * tools/formed/formed/plugins/web/plugin.py: Use semantic
352              check.
353    
354    2007-08-20      Torsten Irlaender <[email protected]>
355    
356            * tools/formed/formed/plugins/web/renderer.py: Fixed Syntax in
357              selection-field generation (Removed quote)
358    
359    2007-08-18      Sascha L. Teichmann <[email protected]>
360    
361            * tools/formed/formed/plugins/web/plugin.py,
362              tools/formed/formed/plugins/web/renderer.py: Added a
363              simple cookie based session management to the HTML
364              renderer. This submit parameters are stored in the
365              session now. This will ease testing the constraint
366              tests which need to be written soon.
367                    
368              BEWARE: The session management is _not_ made for production!
369              Denial of service attacks are too easy, and the
370              cryptographical strength of the session id is doubtful.
371    
372    2007-08-18      Sascha L. Teichmann <[email protected]>
373    
374            * tools/formed/formed/plugins/web/renderer.py: Escaping text
375              coming from the document tree now when inserting it into the
376              HTML output.
377    
378    2007-08-18      Sascha L. Teichmann <[email protected]>
379    
380            * tools/formed/formed/plugins/plugin.py: Added a new kind
381              of plug-in: Filter. They have a short and a long description
382              and can be hooked automatically into the new 'Filters'
383              sub menu under 'Extra'. They got called when the user
384              selects their respective menu item.
385                    
386            * tools/formed/formed/config.py: Contains the list of
387              installed filters.
388    
389            * tools/formed/formed/main.py: Builds the Extra->Filters
390              sub menu during gui initialization. The hard wired code
391              for make unique and formular name/description -> name
392              is removed because they are implemented as filters now.
393    
394            * tools/formed/formed/model/nodecomponents.py,
395              tools/formed/formed/model/data.py: Removed the make
396              unique and formular name/description -> name code.
397    
398            * tools/formed/formed/plugins/names,
399              tools/formed/formed/plugins/names/__init__.py,
400              tools/formed/formed/plugins/names/filter.py: Added. Contains
401              the make unique and formular name/description -> name code
402              in form of filters.
403    
404            * tools/formed/test-data/simple.xml: Modified to be a better
405              test for the formular name/description -> name filter.
406    
407    2007-08-18      Sascha L. Teichmann <[email protected]>
408    
409            * tools/formed/formed.py, tools/formed/formed/main.py: First
410              command line argument is interpreted as filename of document
411              to be loaded at program startup.
412    
413    2007-08-17      Frank Koormann <[email protected]>
414    
415            * contrib/convert-formedtree2html.xsl:
416            Heading level depending on depth of group node.
417            In case of radio/choice/check only list of options.
418    
419    2007-08-17      Torsten Irlaender <[email protected]>
420    
421            * contrib/convert-formedtree2html.xsl: Output is now generated with
422              HTML doc-string and charset information in the meta-header.
423    
424    2007-08-17      Torsten Irlaender <[email protected]>
425    
426            * contrib/convert-formedtree2html.xsl: Added small script for
427              exporting the formed tree to html
428    
429    2007-08-17      Torsten Irlaender <[email protected]>
430    
431            * tools/formed/model/nodecomponents.py: Added function to rename
432              the set the name of the node to the formularname. The formularname
433              gets shorten to <=64 by removing vowels and is stored lowercase.
434              If the name is not unique and additional id value is appended.
435            
436            * tools/formed/formed/model/data.py: Overwritten renaming-function for
437              bool-leafs
438    
439            * tools/formed/formed/main.py: Added menuitem for renaming the names
440              of the element
441    
442    2007-08-16      Sascha L. Teichmann <[email protected]>
443    
444            * tools/formed/formed/main.py: Swaped order of
445              'Make names unique' and 'Selected mode...' in Extra
446                    menu and put a separator between them.
447    
448    2007-08-15      Sascha L. Teichmann <[email protected]>
449    
450            * tools/formed/formed/model/data.py: SwitchNodes can add
451              their modes to a given set now.
452    
453            * tools/formed/formed/plugins/plugin.py: Simplified
454              the plug-in interface. Only the reference to the
455                    global configuration is passed at setup time.
456    
457            * tools/formed/formed/plugins/web/plugin.py: Adjusted
458              to new plug-in setup. The traveral mode is now taken
459                    from the global configuration each time a rendering
460                    is triggered. The FORMED parameter is now named
461                    'doc.mode' instead of 'web.mode'. The parameter
462                    is not needed any more because it can be configured
463                    at runtime.
464    
465            * tools/formed/formed/main.py: Adjusted to new plugin
466              setup. Added a new menu item Extra->Select Mode...
467                    to select the traversal mode. It is stored in the
468                    global config.
469    
470            * tools/formed/formed/config.py: Simplified. Only uses
471              one env dictionary to store global configuration parameters.
472    
473            * tools/formed/formed/ui/controls.py: Add a control to
474              select one item from a list of given strings.
475    
476    2007-08-15      Sascha L. Teichmann <[email protected]>
477    
478            * tools/formed/formed/plugins/web/plugin.py,
479              tools/formed/formed/plugins/web/renderer.py: Added parameter
480                    print out in web plugin.
481    
482    2007-08-15      Torsten Irlaender <[email protected]>
483    
484            * contrib/convert-formedtree2csv.xsl: Added small script for
485              exporting the formed tree to csv
486    
487    2007-08-14      Sascha L. Teichmann <[email protected]>
488    
489            * tools/formed/formed/model/data.py,
490              tools/formed/formed/model/nodecomponents.py,
491              tools/formed/formed/io/document.py: Added a 'switch' node.
492    
493            * tools/formed/formed/plugins/web/renderer.py:Render the
494              new 'switch' node.
495    
496            * tools/formed/formed/plugins/web/plugin.py,
497              tools/formed/formed/config.py: Added a 'web.mode' parameter
498                    to FORMED environment variable.
499                    e.g. 'FORMED=web.mode:modeX' sets the mode 'modeX'.
500                    Defaults to 'default'.
501    
502            * tools/formed/test-data/simple.xml: Added test for switch.
503    
504    2007-08-14      Sascha L. Teichmann <[email protected]>
505    
506            * tools/formed/formed/model/nodecomponents.py: Added an
507              attribute 'formularname' to base class of node components.
508    
509    2007-08-13      Sascha L. Teichmann <[email protected]>
510    
511            * tools/formed/formed/io/document.py,
512              tools/formed/formed/model/data.py,
513              tools/formed/formed/model/nodecomponents.py: Added an item
514                    to model external item lists.
515    
516            * tools/formed/formed/plugins/web/renderer.py: Render new item
517              list.
518            * tools/formed/formed/main.py: Added a forgotten 'self.'
519    
520            * contrib/extract-xfa-items.sh: Modified to generate
521              documents to be loadable from new item lists
522    
523    2007-08-13      Sascha L. Teichmann <[email protected]>
524    
525            * tools/formed/formed/main.py: Fixed typo
526    
527    2007-08-13      Sascha L. Teichmann <[email protected]>
528    
529            * contrib/extract-xfa-items.sh: New. Can be used to extract longer
530              choice item lists for a given field from XFA files. e.g. with
531                    './contrib/extract-xfa-items.sh Muttersprache alles.xml'
532    
533    2007-08-12      Sascha L. Teichmann <[email protected]>
534    
535            * tools/formed/formed/model/data.py,
536              tools/formed/formed/plugins/web/renderer.py,
537                    tools/formed/formed/io/document.py: Changed the structure
538                    of choice constructs. The idea to hold the different items
539                    of a particular choice in a semicolon separated list was bad.
540                    Now choices are groups and  the option items are modelled as
541                    embedded bools. (mainly Torsten Irländer's idea).
542    
543                    WARNING: this makes old document files containing choices incompatible!!!
544                    Use the following XSLT to reestablish compatibility.
545                    
546            * contrib/itemize-choices.xsl: New converts old to new structure.
547              Needs exslt.org's string extensions (which xsltproc includes)
548    
549            * tools/formed/test-data/simple.xml: Ajusted to new structure
550    
551            * tools/formed/formed/plugins/web/plugin.py: remove debug output
552    
553            * tools/formed/formed/model/nodecomponents.py: fixed a small bug in
554              node finding code. It now uses the walk() generator, too.
555    
556    2007-08-12      Sascha L. Teichmann <[email protected]>
557    
558            * tools/formed/formed/main.py: Added a clone item on the toolbar which
559              copies the currently selected item and appends it after the selection.
560    
561            * tools/formed/formed/model/nodecomponents.py: Added code to clone parts
562              of the tree.
563                    
564            * tools/formed/formed/ui/controls.py: Added a getSelected method.
565    
566            * tools/formed/formed/model/misc.py: Fixed a programming bug.
567              forgot a 'self.' prefix.
568    
569    2007-08-12      Sascha L. Teichmann <[email protected]>
570    
571            * tools/formed/formed/model/nodecomponents.py: Added a method to append
572              a second document to the current.
573    
574            * tools/formed/formed/main.py: Added an 'Import' file menu item to load
575              a second document to be appended to the current.
576    
577    2007-08-12      Sascha L. Teichmann <[email protected]>
578    
579            * tools/formed/formed/main.py: Added a 'New' item in file menu which creates
580              a new document when triggered.
581    
582    2007-08-12      Sascha L. Teichmann <[email protected]>
583    
584            * tools/formed/formed/model/nodecomponents.py: Added walk generator over all
585              items in the document tree. Added a method to eliminated duplicated names
586                    in document tree.
587    
588            * tools/formed/formed/model/misc.py: Added update mechanism for id generator
589              after names collisions are eliminated.
590    
591            * tools/formed/formed/main.py: Added an 'Extra' menu with item
592              'Make names   unique'.
593    
594    2007-08-11      Sascha L. Teichmann <[email protected]>
595    
596            * tools/formed/formed/model/data.py,
597              tools/formed/formed/plugins/web/renderer.py: Removed support
598                    for 'text' attributes in bool items. They were never really
599                    used and the 'description' attributes fulfill the same
600                    purpose.
601    
602            * contrib/remove-bool-text.xsl: Transform to remove the
603              'text' attributes from bool items. Apply with:
604                    'xsltproc contrib/remove-bool-text.xsl old.xml > new.xml'
605    
606            * tools/formed/test-data/simple.xml: Removed 'text' attributes
607              from bool items.
608    
609    2007-08-11      Sascha L. Teichmann <[email protected]>
610    
611            * contrib/convert-choices.xsl: Simpified.
612    
613    2007-08-11      Sascha L. Teichmann <[email protected]>
614    
615            * tools/formed/formed/model/data.py: Removed 'options' attribute
616              from ChoiceLeaf. Use 'value' instead, please!
617    
618            * tools/formed/formed/plugins/web/renderer.py: use 'value' attribute
619              instead of 'options' to render choices.
620    
621            * contrib/convert-choices.xsl: Added to convert document files
622              which use the choice 'option' attribute to usage of 'value'.
623                    Apply with e.g. 'xsltproc convert-choices.xsl old.xml > new.xml'
624    
625  2007-08-10      Sascha L. Teichmann <[email protected]>  2007-08-10      Sascha L. Teichmann <[email protected]>
626    
627          * tools/formed/formed/plugins/web/renderer.py: radio buttons          * tools/formed/formed/plugins/web/renderer.py: radio buttons

Legend:
Removed from v.29  
changed lines
  Added in v.101

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26