Пример #1
0
 def _getHeadContent(self):
     head_content = WPDecorated._getHeadContent(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._getHeadContent(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 _getHeadContent(self):
        path = config.BASE_URL
        try:
            timestamp = os.stat(__file__).st_mtime
        except OSError:
            timestamp = 0
        css = '<link rel="stylesheet" type="text/css" href="{}/css/Conf_Basic.css?{}">'.format(path, timestamp)

        return '\n'.join([
            css,
            MathjaxMixin._getHeadContent(self),
            WPEventBase._getHeadContent(self)
        ])
Пример #4
0
    def _getHeadContent(self):
        path = config.BASE_URL
        try:
            timestamp = os.stat(__file__).st_mtime
        except OSError:
            timestamp = 0
        css = '<link rel="stylesheet" type="text/css" href="{}/css/Conf_Basic.css?{}">'.format(path, timestamp)

        return '\n'.join([
            css,
            WConfMetadata(self._conf).getHTML(),
            MathjaxMixin._getHeadContent(self)
        ])
Пример #5
0
 def _getHeadContent(self):
     return '\n'.join([
         MathjaxMixin._getHeadContent(self),
         WPEventBase._getHeadContent(self)
     ])
Пример #6
0
 def _getHeadContent(self):
     return MathjaxMixin._getHeadContent(
         self) + WPEventBase._getHeadContent(self)
Пример #7
0
 def _get_head_content(self):
     return MathjaxMixin._get_head_content(self) + WPEventBase._get_head_content(self)
Пример #8
0
 def _getHeadContent(self):
     return '\n'.join([
         MathjaxMixin._getHeadContent(self),
         WPEventBase._getHeadContent(self)
     ])
Пример #9
0
 def _getHeadContent(self):
     return MathjaxMixin._getHeadContent(self) + WPEventBase._getHeadContent(self)
Пример #10
0
 def _get_head_content(self):
     return WPEventManagement._get_head_content(
         self) + MathjaxMixin._get_head_content(self)
Пример #11
0
 def _get_head_content(self):
     return WPEventManagement._get_head_content(self) + MathjaxMixin._get_head_content(self)
Пример #12
0
 def _getHeadContent(self):
     return WPConferenceDefaultDisplayBase._getHeadContent(
         self) + MathjaxMixin._getHeadContent(self)
Пример #13
0
 def _getHeadContent(self):
     return WConfMetadata(self._conf).getHTML() + MathjaxMixin._getHeadContent(self)
Пример #14
0
 def _get_head_content(self):
     return MathjaxMixin._get_head_content(self) + WPEventBase._get_head_content(self)
Пример #15
0
 def _getHeadContent(self):
     return WPConferenceModifBase._getHeadContent(
         self) + MathjaxMixin._getHeadContent(self)