Skip to content

Commit e2c332e

Browse files
committed
Added agenda links for various meeting resources
Added links to Jabber room, Etherpad, Audio stream, and Meetecho video participation, up to the time a session ends; switching out Jabber, Meetecho and Audio streams with links to logs or recordings after the end of a session. - Legacy-Id: 11645
1 parent 7bc8e04 commit e2c332e

1 file changed

Lines changed: 46 additions & 2 deletions

File tree

ietf/templates/meeting/agenda.html

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,13 +317,57 @@ <h4>Slides</h4>
317317
</div>
318318
</div>
319319
</td>
320-
<td class="text-nowrap">
320+
<td class="text-nowrap text-right">
321321
<span class="hidden-xs">
322322
{% if item.session.agenda %}
323-
<button class="btn btn-default btn-xs" data-toggle="modal" data-target="#modal-{{item.slug}}"><span class="fa fa-arrows-alt" title="Show meeting materials"></span></button>
323+
<button class="btn btn-default btn-xs" data-toggle="modal" data-target="#modal-{{item.slug}}" title="Show meeting materials"><span class="fa fa-arrows-alt"></span></button>
324324
<a class="btn btn-default btn-xs" href="/meeting/{{schedule.meeting.number}}/agenda/{{item.session.historic_group.acronym}}-drafts.tgz" title="Download meeting materials as .tar archive"><span class="fa fa-file-archive-o"></span></a>
325325
<a class="btn btn-default btn-xs" href="/meeting/{{ schedule.meeting.number }}/agenda/{{item.session.historic_group.acronym}}-drafts.pdf" title="Download meeting materials as PDF file"><span class="fa fa-file-pdf-o"></span></a>
326326
{% endif %}
327+
<a class="btn btn-default btn-xs" href="http://etherpad.tools.ietf.org:9000/p/notes-ietf-{{ schedule.meeting.number }}-{{item.session.historic_group.acronym}}?useMonospaceFont=true" title="Etherpad for note-takers"><span class="fa fa-edit"></span></a>
328+
{# show stream buttons up till end of session, then show archive buttons #}
329+
{% if now < item.timeslot.end_time %}
330+
<!-- Jabber -->
331+
<a class="btn btn-default btn-xs"
332+
href="xmpp:{{item.session.historic_group.acronym}}@jabber.ietf.org?join"
333+
title="Jabber room for {{item.session.historic_group.acronym}}"><span class="fa fa-lightbulb-o"></span>
334+
</a>
335+
<!-- Video stream (meetecho) -->
336+
{% if item.timeslot.location.video_stream_url %}
337+
<a class="btn btn-default btn-xs"
338+
href="{{ item.timeslot.location.video_stream_url }}"
339+
title="Meetecho video stream"><span class="fa fa-video-camera"></span>
340+
</a>
341+
{% endif %}
342+
<!-- Audio stream -->
343+
{% if item.timeslot.location.audio_stream_url %}
344+
<a class="btn btn-default btn-xs"
345+
href="{{item.timeslot.location.audio_stream_url }}"
346+
title="Audio stream"><span class="glyphicon glyphicon-headphones"></span>
347+
</a>
348+
{% endif %}
349+
{% else %}
350+
<!-- Jabber logs -->
351+
{% if schedule.meeting.number|add:"0" >= 60 %}
352+
<a class="btn btn-default btn-xs"
353+
href="https://www.ietf.org/jabber/logs/{{item.session.historic_group.acronym}}"
354+
title="Jabber logs for {{item.session.historic_group.acronym}}">
355+
<span class="fa fa-stack">
356+
<i class="fa fa-file-o fa-stack-1x"></i>
357+
<i class="fa fa-lightbulb-o fa-stack-1x"></i>
358+
</span>
359+
</a>
360+
{% endif %}
361+
<!-- Video recording -->
362+
{% if schedule.meeting.number|add:"0" >= 80 %}
363+
<a class="btn btn-default btn-xs"
364+
href="http://www.meetecho.com/ietf{{schedule.meeting.number}}/recordings#{{item.session.historic_group.acronym.upper}}"
365+
title="Meetecho video recording"><span class="fa fa-file-video-o"></span>
366+
</a>
367+
{% endif %}
368+
<!-- Audio recording -->
369+
{# <a class="btn btn-default btn-xs" href="" title="Audio recording"><span class="fa fa-file-audio-o"></span></a>#}
370+
{% endif %}
327371
</span>
328372
</td>
329373
</tr>

0 commit comments

Comments
 (0)