web/views/basecomponents.py
branch3.5
changeset 3184 613064b49331
parent 3037 45de36c7d47c
parent 3166 2413e5291e8d
child 3185 bd0126d17e83
child 3818 9522e51d8644
equal deleted inserted replaced
3177:e7ae807554d9 3184:613064b49331
   147 
   147 
   148     def call(self):
   148     def call(self):
   149         title = self.req.property_value('ui.site-title')
   149         title = self.req.property_value('ui.site-title')
   150         if title:
   150         if title:
   151             self.w(u'<span id="appliName"><a href="%s">%s</a></span>' % (
   151             self.w(u'<span id="appliName"><a href="%s">%s</a></span>' % (
   152                 self.req.base_url(), title))
   152                 self.req.base_url(), xml_escape(title)))
   153 
   153 
   154 
   154 
   155 class SeeAlsoVComponent(component.RelatedObjectsVComponent):
   155 class SeeAlsoVComponent(component.RelatedObjectsVComponent):
   156     """display any entity's see also"""
   156     """display any entity's see also"""
   157     id = 'seealso'
   157     id = 'seealso'