diff -r b5af2ac0c43c -r 57372dbfd114 web/formwidgets.py --- a/web/formwidgets.py Wed May 05 10:22:11 2010 +0200 +++ b/web/formwidgets.py Wed May 05 10:28:55 2010 +0200 @@ -549,7 +549,7 @@ return (u""" """ % (helperid, inputid, year, month, - form._cw.vreg.config.uiprops['CALENDAR_ICON'], + form._cw.uiprops['CALENDAR_ICON'], form._cw._('calendar'), helperid) ) @@ -573,7 +573,7 @@ req.add_onload(u'jqNode("%s").datepicker(' '{buttonImage: "%s", dateFormat: "%s", firstDay: 1,' ' showOn: "button", buttonImageOnly: true})' % ( - domid, req.vreg.config.uiprops['CALENDAR_ICON'], fmt)) + domid, req.uiprops['CALENDAR_ICON'], fmt)) if self.datestr is None: value = self.values(form, field)[0] else: @@ -935,7 +935,7 @@ if self.settabindex and not 'tabindex' in attrs: attrs['tabindex'] = form._cw.next_tabindex() if self.icon: - img = tags.img(src=form._cw.vreg.config.uiprops[self.icon], alt=self.icon) + img = tags.img(src=form._cw.uiprops[self.icon], alt=self.icon) else: img = u'' return tags.button(img + xml_escape(label), escapecontent=False, @@ -966,7 +966,7 @@ def render(self, form, field=None, renderer=None): label = form._cw._(self.label) - imgsrc = form._cw.vreg.config.uiprops[self.imgressource] + imgsrc = form._cw.uiprops[self.imgressource] return ''\ '%(label)s%(label)s' % { 'label': label, 'imgsrc': imgsrc,