Skip to content

Commit 0773ac9

Browse files
committed
Added ASCII version of IESG telechat agenda
- Legacy-Id: 1874
1 parent 3e6a099 commit 0773ac9

6 files changed

Lines changed: 167 additions & 0 deletions

File tree

ietf/iesg/testurl.list

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
301 /iesg/telechat/354/
66

77
200 /iesg/agenda/
8+
200 /iesg/agenda/agenda.txt
89
200 /iesg/agenda/documents.txt
910
200 /iesg/agenda/documents/
1011
200 /iesg/discusses/

ietf/iesg/urls.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
(r'^ann/ind/$',views.inddocs),
5252
(r'^ann/(?P<cat>[^/]+)/$',views.wgdocs),
5353
(r'^agenda/$', views.agenda),
54+
(r'^agenda/agenda.txt$', views.agenda_txt),
5455
(r'^agenda/scribe_template.html$', views.agenda_scribe_template),
5556
(r'^agenda/documents.txt$', views.agenda_documents_txt),
5657
(r'^agenda/documents/$', views.agenda_documents),

ietf/iesg/views.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,10 @@ def agenda(request, date=None):
170170
data['private'] = 'private' in request.REQUEST
171171
return render_to_response("iesg/agenda.html", data, context_instance=RequestContext(request))
172172

173+
def agenda_txt(request):
174+
data = _agenda_data(request)
175+
return render_to_response("iesg/agenda.txt", data, context_instance=RequestContext(request), mimetype="text/plain")
176+
173177
def agenda_scribe_template(request):
174178
date = TelechatDates.objects.all()[0].date1
175179
docs = agenda_docs(date, True)

ietf/templates/iesg/agenda.txt

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{% comment %}
2+
Copyright (C) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
3+
All rights reserved. Contact: Pasi Eronen <pasi.eronen@nokia.com>
4+
5+
Redistribution and use in source and binary forms, with or without
6+
modification, are permitted provided that the following conditions
7+
are met:
8+
9+
* Redistributions of source code must retain the above copyright
10+
notice, this list of conditions and the following disclaimer.
11+
12+
* Redistributions in binary form must reproduce the above
13+
copyright notice, this list of conditions and the following
14+
disclaimer in the documentation and/or other materials provided
15+
with the distribution.
16+
17+
* Neither the name of the Nokia Corporation and/or its
18+
subsidiary(-ies) nor the names of its contributors may be used
19+
to endorse or promote products derived from this software
20+
without specific prior written permission.
21+
22+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #}
33+
{% endcomment %}{% autoescape off %}{% load ietf_filters %}{% filter compress_empty_lines %}
34+
INTERNET ENGINEERING STEERING GROUP (IESG)
35+
Summarized Agenda for the {{date}} IESG Teleconference
36+
37+
This agenda was generated at {% now "Y-m-d H:i:s T" %}
38+
Up-to-date web version of this agenda can be found at:
39+
http://datatracker.ietf.org/iesg/agenda/
40+
41+
1. Administrivia
42+
43+
1.1 Roll Call
44+
1.2 Bash the Agenda
45+
1.3 Approval of the Minutes of Past Telechats
46+
1.4 List of Remaining Action Items from Last Telechat
47+
48+
{{ action_items|indent|indent }}
49+
50+
{% with "iesg/agenda_doc.txt" as doc_template %}
51+
{% include "iesg/agenda_outline_23.html" %}
52+
{% endwith %}
53+
54+
{% with "iesg/agenda_wg.txt" as wg_template %}
55+
{% include "iesg/agenda_outline_4.html" %}
56+
{% endwith %}
57+
58+
5. IAB News We Can Use
59+
60+
6. Management Issues
61+
{% for m in mgmt %}
62+
6.{{forloop.counter}} {{m}}
63+
{% endfor %}
64+
65+
7. Working Group News
66+
{% endfilter %}{% endautoescape %}

ietf/templates/iesg/agenda_doc.txt

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{% comment %}
2+
Copyright (C) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
3+
All rights reserved. Contact: Pasi Eronen <pasi.eronen@nokia.com>
4+
5+
Redistribution and use in source and binary forms, with or without
6+
modification, are permitted provided that the following conditions
7+
are met:
8+
9+
* Redistributions of source code must retain the above copyright
10+
notice, this list of conditions and the following disclaimer.
11+
12+
* Redistributions in binary form must reproduce the above
13+
copyright notice, this list of conditions and the following
14+
disclaimer in the documentation and/or other materials provided
15+
with the distribution.
16+
17+
* Neither the name of the Nokia Corporation and/or its
18+
subsidiary(-ies) nor the names of its contributors may be used
19+
to endorse or promote products derived from this software
20+
without specific prior written permission.
21+
22+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33+
{% endcomment %}
34+
{% comment %}
35+
Some parts Copyright (c) 2009 The IETF Trust, all rights reserved.
36+
{% endcomment %}
37+
{% load ietf_filters %}
38+
{% if title2_first %}{% if title1_first %}{{ title1 }}{% endif %}
39+
{{ title2 }}
40+
{% endif %}{{ title3 }}
41+
{% for doc in section_docs %}
42+
o {{doc.obj.document.filename}}{% if not doc.obj.rfc_flag %}-{{doc.obj.document.revision}}{% endif %}
43+
{% filter wordwrap:"68"|indent|indent %}{{ doc.obj.document.title }} ({{ doc.obj.document.intended_status }}){% endfilter %}
44+
{% if doc.obj.note %}{# note: note is not escaped #} {% filter wordwrap:"68"|indent|indent %}Note: {{ doc.obj.note|striptags }}{% endfilter %}
45+
{% endif %} Token: {{ doc.obj.token_name }}
46+
{% if doc.obj.ballot.defer %} Was deferred by {{doc.obj.ballot.defer_by}} on {{doc.obj.ballot.defer_date}}{% endif %}
47+
{% empty %}
48+
NONE
49+
{% endfor %}

ietf/templates/iesg/agenda_wg.txt

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{% comment %}
2+
Copyright (C) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
3+
All rights reserved. Contact: Pasi Eronen <pasi.eronen@nokia.com>
4+
5+
Redistribution and use in source and binary forms, with or without
6+
modification, are permitted provided that the following conditions
7+
are met:
8+
9+
* Redistributions of source code must retain the above copyright
10+
notice, this list of conditions and the following disclaimer.
11+
12+
* Redistributions in binary form must reproduce the above
13+
copyright notice, this list of conditions and the following
14+
disclaimer in the documentation and/or other materials provided
15+
with the distribution.
16+
17+
* Neither the name of the Nokia Corporation and/or its
18+
subsidiary(-ies) nor the names of its contributors may be used
19+
to endorse or promote products derived from this software
20+
without specific prior written permission.
21+
22+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33+
{% endcomment %}{% autoescape off %}{% load ietf_filters %}
34+
{% if title2_first %}{% if title1_first %}{{ title1 }}{% endif %}
35+
{{ title2 }}
36+
{% endif %}{{ title3 }}
37+
{% for wg in section_wgs %}
38+
o {{ wg.obj.group_acronym.name }} ({{wg.obj.group_acronym}})
39+
{% if wg.obj.token_name %} Token: {{ wg.obj.token_name }}
40+
{% endif %}
41+
{% if wg.obj.note %} {% filter wordwrap:"68"|indent|indent %}Note: {{wg.obj.note|striptags}}{% endfilter %}
42+
{% endif %}
43+
{% empty %}
44+
NONE
45+
{% endfor %}
46+
{% endautoescape %}

0 commit comments

Comments
 (0)