equal
deleted
inserted
replaced
161 textsize = self._cw.property_value('navigation.short-line-size') |
161 textsize = self._cw.property_value('navigation.short-line-size') |
162 w(self.link_template % ( |
162 w(self.link_template % ( |
163 xml_escape(url), xml_escape(uilib.cut(title, textsize)))) |
163 xml_escape(url), xml_escape(uilib.cut(title, textsize)))) |
164 else: |
164 else: |
165 textsize = self._cw.property_value('navigation.short-line-size') |
165 textsize = self._cw.property_value('navigation.short-line-size') |
166 w(uilib.cut(unicode(part), textsize)) |
166 w(xml_escape(uilib.cut(unicode(part), textsize))) |
167 |
167 |
168 |
168 |
169 class BreadCrumbETypeVComponent(BreadCrumbEntityVComponent): |
169 class BreadCrumbETypeVComponent(BreadCrumbEntityVComponent): |
170 __select__ = (basecomponents.HeaderComponent.__select__ |
170 __select__ = (basecomponents.HeaderComponent.__select__ |
171 & multi_lines_rset() & one_etype_rset() |
171 & multi_lines_rset() & one_etype_rset() |