示例#1
0
文件: views.py 项目: imfht/flaskapps
 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
文件: views.py 项目: indico/indico
 def _get_head_content(self):
     return WPEventManagement._get_head_content(self) + MathjaxMixin._get_head_content(self)
示例#7
0
文件: views.py 项目: indico/indico
 def _get_head_content(self):
     return '\n'.join([
         MathjaxMixin._get_head_content(self),
         WPEventBase._get_head_content(self)
     ])
示例#8
0
文件: views.py 项目: indico/indico
 def _get_head_content(self):
     return MathjaxMixin._get_head_content(self) + WPEventBase._get_head_content(self)