Changeset 12235 for main/waeup.ikoba/trunk/src/waeup
- Timestamp:
- 14 Dec 2014, 22:15:37 (10 years ago)
- Location:
- main/waeup.ikoba/trunk/src/waeup/ikoba
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/browser/layout.py
r12229 r12235 211 211 template = default_waeup_edit_template 212 212 213 def setUpWidgets(self,ignore_request=False): 214 super(IkobaAddFormPage,self).setUpWidgets(ignore_request) 215 for widget in self.widgets: 216 if 'address' in widget.name or \ 217 'comment' in widget.name or \ 218 'description' in widget.name or \ 219 'notice' in widget.name: 220 widget.height = 3 221 213 222 class SiteLayout(IkobaLayout): 214 223 """ The general site layout. -
main/waeup.ikoba/trunk/src/waeup/ikoba/documents/document.py
r12227 r12235 155 155 def __init__(self, *args, **kw): 156 156 super(HTMLDocument, self).__init__(*args, **kw) 157 self.html_dict = None157 self.html_dict = {} 158 158 159 159 HTMLDocument = attrs_to_fields(HTMLDocument) -
main/waeup.ikoba/trunk/src/waeup/ikoba/utils/helpers.py
r12229 r12235 806 806 return result 807 807 808 809 808 def html2dict(value=None,portal_language='en'): 810 809 """Transforms a localized HTML text string into a dictionary.
Note: See TracChangeset for help on using the changeset viewer.