Changeset 2862
- Timestamp:
- 04/12/07 10:38:18 (2 years ago)
- Files:
-
- branches/1.0/CHANGELOG.txt (modified) (1 diff)
- branches/1.0/turbogears/widgets/forms.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/CHANGELOG.txt
r2852 r2862 27 27 28 28 * CatWalk now handles customized addRemoveName in SO. #911 by Joost 29 * SelectionField now properly renders complex values. #1314 by rick44630 29 * using base64.decodestring in visitor.py for 2.3 compatibility. #1279 by pnfisher. 31 30 * Config file in quickstarted app now has config option to load identity classes. Thanks to Felix branches/1.0/turbogears/widgets/forms.py
r2843 r2862 906 906 if self._is_option_selected(option[0], d['value']): 907 907 option_attrs[self._selected_verb] = self._selected_verb 908 if self._multiple_selection: 909 optlist[i] = (self.validator.from_python(option[0])[0], option[1], option_attrs) 910 else: 911 optlist[i] = (self.validator.from_python(option[0]), option[1], option_attrs) 908 optlist[i] = (option[0], option[1], option_attrs) 912 909 options.extend(optlist) 913 910 if group: