Пример #1
0
 def _get_head_content(self):
     head_content = WPDecorated._get_head_content(self)
     if self.atom_feed_url:
         title = self.atom_feed_title or _("Indico Atom feed")
         head_content += ('<link rel="alternate" type="application/atom+xml" title="{}" href="{}">'
                          .format(escape(title), self.atom_feed_url))
     if self._mathjax:
         head_content += MathjaxMixin._get_head_content(self)
     return head_content
Пример #2
0
 def _get_head_content(self):
     head_content = WPDecorated._get_head_content(self)
     if self.atom_feed_url:
         title = self.atom_feed_title or _("Indico Atom feed")
         head_content += ('<link rel="alternate" type="application/atom+xml" title="{}" href="{}">'
                          .format(escape(title), self.atom_feed_url))
     if self._mathjax:
         head_content += MathjaxMixin._get_head_content(self)
     return head_content
Пример #3
0
 def _get_head_content(self):
     return '\n'.join([
         MathjaxMixin._get_head_content(self),
         WPEventBase._get_head_content(self)
     ])
Пример #4
0
 def _get_head_content(self):
     return MathjaxMixin._get_head_content(self) + WPEventBase._get_head_content(self)
Пример #5
0
 def _get_head_content(self):
     return WPEventManagement._get_head_content(
         self) + MathjaxMixin._get_head_content(self)
Пример #6
0
 def _get_head_content(self):
     return WPEventManagement._get_head_content(self) + MathjaxMixin._get_head_content(self)
Пример #7
0
 def _get_head_content(self):
     return '\n'.join([
         MathjaxMixin._get_head_content(self),
         WPEventBase._get_head_content(self)
     ])
Пример #8
0
 def _get_head_content(self):
     return MathjaxMixin._get_head_content(self) + WPEventBase._get_head_content(self)