Skip to content

Commit e8d5f17

Browse files
committed
Show action items in IESG agenda; updated some links in IESG agenda
- Legacy-Id: 1860
1 parent 7efd6f4 commit e8d5f17

4 files changed

Lines changed: 18 additions & 12 deletions

File tree

ietf/iesg/views.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@
3232
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3333
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3434

35-
# Create your views here.
36-
#from django.views.generic.date_based import archive_index
35+
import codecs
3736
from ietf.idtracker.models import IDInternal, InternetDraft,AreaGroup, Position
3837
from django.views.generic.list_detail import object_list
3938
from django.views.generic.simple import direct_to_template
4039
from django.http import Http404, HttpResponse
4140
from django.template import RequestContext, Context, loader
4241
from django.shortcuts import render_to_response
42+
from django.conf import settings
4343
from ietf.iesg.models import TelechatDates, TelechatAgendaItem, WGAction
4444
from ietf.idrfc.idrfc_wrapper import IdWrapper, RfcWrapper
4545
from ietf.idrfc.models import RfcIndex
@@ -162,7 +162,13 @@ def telechat_agenda(request, date=None):
162162
mgmt = agenda_management_issues(date)
163163
wgs = agenda_wg_actions(date)
164164
private = 'private' in request.REQUEST
165-
return render_to_response('iesg/agenda.html', {'date':str(date), 'docs':docs,'mgmt':mgmt,'wgs':wgs, 'private':private}, context_instance=RequestContext(request) )
165+
try:
166+
f = codecs.open(settings.IESG_TASK_FILE, 'r', 'utf-8', 'replace')
167+
action_items = f.read().strip()
168+
f.close()
169+
except IOError:
170+
action_items = "(Error reading task.txt)"
171+
return render_to_response('iesg/agenda.html', {'date':str(date), 'docs':docs,'mgmt':mgmt,'wgs':wgs, 'action_items':action_items,'private':private}, context_instance=RequestContext(request) )
166172

167173

168174
def telechat_agenda_documents_txt(request):

ietf/settings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@
167167
IPR_DOCUMENT_PATH = '/a/www/ietf-ftp/ietf/IPR/'
168168
# Path to Work Group Description Text Files
169169
IETFWG_DESCRIPTIONS_PATH = '/a/www/www6s/wg-descriptions/'
170+
IESG_TASK_FILE = '/a/www/www6/iesg/internal/task.txt'
170171

171172
# External page top and bottom, which gives a html page the current menubar
172173
# and footer used in the current web-page design

ietf/templates/iesg/agenda.html

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
.agenda h4 { margin-left: 60px; margin-top: 0; margin-bottom: 0; }
4444
.agenda table { margin-left: 90px; margin-top:0em; margin-bottom: 1em;}
4545
.agenda #section2 p, #section3 p, #section4 p { margin-left:90px; margin-top: 0; margin-bottom:0; font-style:italic;}
46+
.agenda #section1 pre { margin-left: 60px; }
4647
.agenda blockquote { margin-left: 30px; width: 70ex;}
4748
.agenda #section3 blockquote { margin-left: 60px; }
4849
</style>
@@ -60,13 +61,15 @@ <h1>IESG Agenda</h1>
6061
<h2>1. Administrivia</h2>
6162
<div id="section1">
6263

63-
<h3>1.1 {% if private %}<a href="https://www.ietf.org/IESG/internal/rollcall.txt">Roll Call</a>{%else%}Roll Call{%endif%}</h3>
64+
<h3>1.1 {% if private %}<a href="https://www.ietf.org/iesg/internal/rollcall.txt">Roll Call</a>{%else%}Roll Call{%endif%}</h3>
6465

6566
<h3>1.2 Bash the Agenda</h3>
6667

67-
<h3>1.3 Approval of the {% if private %}<a href="https://www.ietf.org/IESG/internal/MINUTES.txt">Minutes</a>{%else%}Minutes{%endif%} of the past telechat</h3>
68-
69-
<h3>1.4 List of Remaining {% if private %}<a href="https://www.ietf.org/IESG/internal/task.txt">Action Items</a>{%else%}Action Items{%endif%} from Last Telechat</h3>
68+
<h3>1.3 Approval of the {% if private %}<a href="https://www.ietf.org/iesg/internal/minutes.txt">Minutes</a>{%else%}Minutes{%endif%} of the past telechat</h3>
69+
<h3>1.4 List of Remaining Action Items from Last Telechat</h3>
70+
<pre>
71+
{{ action_items }}
72+
</pre>
7073
</div>
7174

7275
<h2>2. Protocol Actions</h2>

ietf/templates/iesg/agenda_wg.html

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,9 @@
4141
<td>{{wg.area|upper}}</td>
4242
<td>{{ wg.obj.status_date|date:"M d"}}</td>
4343
<td>
44-
{% if private %}
45-
<a href="http://www.ietf.org/IESG/EVALUATIONS/{{wg.obj.group_acronym}}-charter.txt">
46-
{% endif %}
44+
<a href="http://www.ietf.org/iesg/evaluation/{{wg.obj.group_acronym}}-charter.txt">
4745
{{ wg.obj.group_acronym.name|escape }} ({{wg.obj.group_acronym}})
48-
{% if private %}
4946
</a>
50-
{% endif %}
5147
</td>
5248
</tr>
5349
{% if wg.obj.token_name %}

0 commit comments

Comments
 (0)