web/component.py
changeset 7990 a673d1d9a738
parent 7879 9aae456abab5
child 7991 dcc5a4d48122
equal deleted inserted replaced
7989:db76e8aaec29 7990:a673d1d9a738
   730             return
   730             return
   731         self.w(u'<div class="%s">' % self.cssclass)
   731         self.w(u'<div class="%s">' % self.cssclass)
   732         self.w(u'<h4>%s</h4>\n' % self._cw._(self.title).capitalize())
   732         self.w(u'<h4>%s</h4>\n' % self._cw._(self.title).capitalize())
   733         self.wview(self.vid, rset)
   733         self.wview(self.vid, rset)
   734         self.w(u'</div>')
   734         self.w(u'</div>')
   735 
       
   736 
       
   737 
       
   738 VComponent = class_renamed('VComponent', Component,
       
   739                            '[3.2] VComponent is deprecated, use Component')
       
   740 SingletonVComponent = class_renamed('SingletonVComponent', Component,
       
   741                                     '[3.2] SingletonVComponent is deprecated, use '
       
   742                                     'Component and explicit registration control')