Changeset 3e73f9 in indico
- Timestamp:
- 08/24/12 17:03:48 (9 months ago)
- Branches:
- master, ipv6, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, 0da0c1403bae8e51d8229f460181c71b9e6dda72
- Children:
- 334288
- Parents:
- a3d7d74
- git-author:
- Alberto Resco Perez <alberto.resco.perez@…> (08/07/12 16:31:27)
- git-committer:
- Pedro Ferreira <jose.pedro.ferreira@…> (08/24/12 17:03:48)
- Location:
- indico
- Files:
-
- 4 edited
-
MaKaC/fossils/conference.py (modified) (1 diff)
-
MaKaC/fossils/contribution.py (modified) (2 diffs)
-
MaKaC/webinterface/tpls/ContributionDisplayFull.tpl (modified) (2 diffs)
-
htdocs/js/indico/Timetable/Draw.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
indico/MaKaC/fossils/conference.py
re7ad64 r3e73f9 82 82 """ Conference Participation Family Name """ 83 83 84 def getDirectFullName(self): 85 """ Conference Participation Full Name """ 86 87 getDirectFullName.name = "name" 88 89 84 90 85 91 class IConferenceParticipationFossil(IConferenceParticipationMinimalFossil): -
indico/MaKaC/fossils/contribution.py
rbefda7 r3e73f9 78 78 pass 79 79 80 def get FullNameNoTitle(self):80 def getDirectFullName(self): 81 81 pass 82 get FullNameNoTitle.name = "name"82 getDirectFullName.name = "name" 83 83 84 84 … … 92 92 pass 93 93 94 def get FullNameNoTitle(self):94 def getDirectFullName(self): 95 95 pass 96 get FullNameNoTitle.name = "name"96 getDirectFullName.name = "name" 97 97 98 98 class IContributionParticipationMinimalFossil(IFossil): -
indico/MaKaC/webinterface/tpls/ContributionDisplayFull.tpl
r364fc7 r3e73f9 99 99 <ul> 100 100 % for pa in Contribution.getPrimaryAuthorList()[:4]: 101 <li><a href="${getAuthorURL(pa)}">${pa.getDirectFullName NoTitle()}</a>101 <li><a href="${getAuthorURL(pa)}">${pa.getDirectFullName()}</a> 102 102 <span style="font-size:10px">${pa.getAffiliation()}</span> 103 103 % endfor … … 111 111 <ul> 112 112 % for ca in Contribution.getCoAuthorList()[:4]: 113 <li><a href="${getAuthorURL(ca)}">${ca.getDirectFullName NoTitle()}</a>113 <li><a href="${getAuthorURL(ca)}">${ca.getDirectFullName()}</a> 114 114 <span style="font-size:10px">${ca.getAffiliation()}</span> 115 115 % endfor -
indico/htdocs/js/indico/Timetable/Draw.js
rbefda7 r3e73f9 122 122 conveners, 123 123 function(conv) { 124 return conv.firstName + ' ' + 125 conv.familyName; 124 return conv.name; 126 125 }).join(', '); 127 126 } else {
Note: See TracChangeset
for help on using the changeset viewer.
