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
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
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) ])
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) ])
def _getHeadContent(self): return '\n'.join([ MathjaxMixin._getHeadContent(self), WPEventBase._getHeadContent(self) ])
def _getHeadContent(self): return MathjaxMixin._getHeadContent( self) + WPEventBase._getHeadContent(self)
def _get_head_content(self): return MathjaxMixin._get_head_content(self) + WPEventBase._get_head_content(self)
def _getHeadContent(self): return MathjaxMixin._getHeadContent(self) + WPEventBase._getHeadContent(self)
def _get_head_content(self): return WPEventManagement._get_head_content( self) + MathjaxMixin._get_head_content(self)
def _get_head_content(self): return WPEventManagement._get_head_content(self) + MathjaxMixin._get_head_content(self)
def _getHeadContent(self): return WPConferenceDefaultDisplayBase._getHeadContent( self) + MathjaxMixin._getHeadContent(self)
def _getHeadContent(self): return WConfMetadata(self._conf).getHTML() + MathjaxMixin._getHeadContent(self)
def _getHeadContent(self): return WPConferenceModifBase._getHeadContent( self) + MathjaxMixin._getHeadContent(self)