Esempio n. 1
0
 def _getAuthor(self, contrib, author):
     rh = RHContributionAuthor()
     params = {'confId': self._conf.id, 'contrib_id': contrib.id, 'person_id': author.id}
     request.view_args = params
     rh._checkParams(params)
     html = rh._process()
     self._addPage(html, 'contributions.display_author', self._conf, contrib_id=contrib.id, person_id=author.id)
Esempio n. 2
0
 def _getAuthor(self, contrib, author):
     rh = RHContributionAuthor()
     params = {'confId': self.event.id, 'contrib_id': contrib.id, 'person_id': author.id}
     request.view_args = params
     with _override_request_endpoint('contributions.display_author'):
         rh._process_args()
         html = rh._process()
     self._addPage(html, 'contributions.display_author', self.event, contrib_id=contrib.id, person_id=author.id)
Esempio n. 3
0
 def _getAuthor(self, contrib, author):
     rh = RHContributionAuthor()
     params = {"confId": self._conf.id, "contrib_id": contrib.id, "person_id": author.id}
     request.view_args = params
     with _override_request_endpoint("contributions.display_author"):
         rh._checkParams(params)
         html = rh._process()
     self._addPage(html, "contributions.display_author", self._conf, contrib_id=contrib.id, person_id=author.id)
Esempio n. 4
0
 def _get_author(self, contrib, author):
     rh = RHContributionAuthor()
     params = {'confId': self.event.id, 'contrib_id': contrib.id, 'person_id': author.id}
     request.view_args = params
     with override_request_endpoint('contributions.display_author'):
         rh._process_args()
         html = rh._process()
     self._add_page(html, 'contributions.display_author', self.event, contrib_id=contrib.id, person_id=author.id)