Changeset 357ac6 in indico
- Timestamp:
- 05/25/10 18:56:31 (3 years ago)
- Branches:
- master, burotel, hello-world-walkthrough, ipv6, new-webex, v0.97-series, v0.98-series, v0.98.2, v0.98.3, v0.98b1, v0.98b2, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, 4c7d4152dff271ba5df5a8606605969cab454080
- Children:
- 36827b
- Parents:
- ba8adf
- git-author:
- Leszek Syroka <leszek.marek.syroka@…> (05/19/10 11:50:08)
- git-committer:
- Pedro Ferreira <jose.pedro.ferreira@…> (05/25/10 18:56:31)
- File:
-
- 1 edited
-
indico/MaKaC/PDFinterface/conference.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
indico/MaKaC/PDFinterface/conference.py
r77cb9e r357ac6 1388 1388 if not self._ttPDFFormat.showSpeakerTitle(): 1389 1389 spkName = self._getNameWithoutTitle(spk) 1390 if self._showSpeakerAffiliation and spk.getAffiliation().strip() != "": 1391 spkName += " (" + spk.getAffiliation() + ")" 1390 1392 spkList.append(spkName) 1391 1393 if len(spkList) > 0: … … 1411 1413 if not self._ttPDFFormat.showSpeakerTitle(): 1412 1414 spkName = self._getNameWithoutTitle(spk) 1415 if self._showSpeakerAffiliation and spk.getAffiliation().strip() != "": 1416 spkName += " (" + spk.getAffiliation() + ")" 1413 1417 p=Paragraph(escape(spkName),self._styles["table_body"]) 1414 1418 spkList.append([p]) … … 1477 1481 if not self._ttPDFFormat.showSpeakerTitle(): 1478 1482 spkName = self._getNameWithoutTitle(spk) 1483 if self._showSpeakerAffiliation and spk.getAffiliation().strip() != "": 1484 spkName += " (" + spk.getAffiliation() + ")" 1479 1485 spkList.append(spkName) 1480 1486 if len(spkList) > 0: … … 1591 1597 conv=[] 1592 1598 for c in sessionSlot.getConvenerList(): 1593 if self._showSpeakerAffiliation :1599 if self._showSpeakerAffiliation and c.getAffiliation().strip() != "": 1594 1600 conv.append("%s (%s)"%(escape(c.getFullName()), escape(c.getAffiliation()))) 1595 1601 else: … … 1737 1743 spks=[] 1738 1744 for c in contrib.getSpeakerList(): 1739 if self._showSpeakerAffiliation :1745 if self._showSpeakerAffiliation and c.getAffiliation().strip() != "": 1740 1746 spks.append("%s (%s)"%(escape(c.getFullName()), escape(c.getAffiliation()))) 1741 1747 else:
Note: See TracChangeset
for help on using the changeset viewer.
