* Update vnu.jar * Fix py2 -> py3 issue * Run pyupgrade * test: Add default-jdk to images * test: Add option to also validate HTML with vnu.jar Since it's already installed in bin. Don't do this by default, since it increases the time needed for tests by ~50%. * fix: Stop the urlizer from urlizing in linkified mailto: text * More HTML fixes * More HTML validation fixes * And more HTML fixes * Fix floating badge * Ignore unicode errors * Only URLize docs that are existing * Final fixes * Don't URLize everything during test-crawl * Feed HTML into vnu using python rather than Java to speed things up * Allow test-crawl to start vnu on a different port * Increase retry count to vnu. Restore batch size to 30. * More HTML validation fixes * Use urllib3 to make requests to vnu, since overriding requests_mock is tricky * Undo commit of unmodified file * Also urlize ftp links * Fix matching of file name * More HTML fixes * Add `is_valid_url` filter * weekday -> data-weekday * urlencode URLs * Add and use vnu_fmt_message. Bump vnu max buffer. * Simplify doc_exists * Don't add tab link to mail archive if the URL is invalid * Run urlize_ietf_docs before linkify Reduces the possibility of generating incorrect HTML * Undo superfluous change * Runner fixes * Consolidate vnu message filtering into vnu_filter_message * Correctly handle multiple persons with same name * Minimze diff * Fix HTML nits * Print source snippet in vnu_fmt_message * Only escape if there is something to escape * Fix snippet * Skip crufty old IPR declarations * Only include modal when needed. Add handles. * Fix wordwrap+linkification * Update ietf/doc/templatetags/ietf_filters.py * Update ietf/doc/templatetags/tests_ietf_filters.py * Don't right-align second column
115 lines
5.5 KiB
HTML
115 lines
5.5 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load ietf_filters textfilters %}
|
|
{% block pagehead %}<link rel="alternate" type="application/atom+xml" href="/feed/iesg-agenda/">{% endblock %}
|
|
{% block title %}IESG agenda: {{ date }}{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
IESG agenda
|
|
<br>
|
|
<small class="text-muted">{{ date }}</small>
|
|
</h1>
|
|
{% include "iesg/nav.html" with active="agenda" %}
|
|
{% for num, section in sections %}
|
|
{% if num|sectionlevel == 1 %}
|
|
<h2 class="mt-3" id="sec-{{ num|slugify }}">{{ num }}. {{ section.title|safe }}</h2>
|
|
{% elif num|sectionlevel == 2 %}
|
|
<h3 class="mt-3" id="sec-{{ num|slugify }}">{{ num }} {{ section.title|safe }}</h3>
|
|
{% elif num|sectionlevel == 3 %}
|
|
<h4 class="mt-3" id="sec-{{ num|slugify }}">{{ num }} {{ section.title|safe }}</h4>
|
|
{% endif %}
|
|
{% if num == "1.4" %}<pre>{{ section.text }}</pre>{% endif %}
|
|
{% if num >= "2" and num < "5" %}
|
|
{% if num == "2" %}
|
|
<p class="alert alert-info my-3">
|
|
Reviews should focus on these questions: "Is this document a
|
|
reasonable basis on which to build the salient part of the Internet
|
|
infrastructure? If not, what changes would make it so?"
|
|
</p>
|
|
{% endif %}
|
|
{% if num == "3.1" or num == "3.2" %}
|
|
<p class="alert alert-info my-3">
|
|
Reviews should focus on these questions: "Is this document a
|
|
reasonable contribution to the area of Internet engineering
|
|
which it covers? If not, what changes would make it so?"
|
|
</p>
|
|
{% endif %}
|
|
{% if num == "3.3" %}
|
|
<p class="alert alert-info my-3">
|
|
Reviews should focus on these questions: "Are the proposed
|
|
changes to document status appropriate? Have all requirements
|
|
for such a change been met? If not, what changes to the proposal
|
|
would make it appropriate?"
|
|
</p>
|
|
{% endif %}
|
|
{% if num == "3.4" %}
|
|
<p class="alert alert-info my-3">
|
|
The IESG will use RFC 5742 responses:
|
|
</p>
|
|
<ol>
|
|
<li>
|
|
The IESG has concluded
|
|
that there is no conflict between this document and IETF work;
|
|
</li>
|
|
<li>
|
|
The IESG has concluded that this work is related to IETF work done
|
|
in WG <X>, but this relationship does not prevent
|
|
publishing;
|
|
</li>
|
|
<li>
|
|
The IESG has concluded that publication could
|
|
potentially disrupt the IETF work done in WG <X> and
|
|
recommends not publishing the document at this time;
|
|
</li>
|
|
<li>
|
|
The IESG
|
|
has concluded that this document violates IETF procedures for
|
|
<Y> and should therefore not be published without IETF
|
|
review and IESG approval; or
|
|
</li>
|
|
<li>
|
|
The IESG has concluded that this
|
|
document extends an IETF protocol in a way that requires IETF
|
|
review and should therefore not be published without IETF review
|
|
and IESG approval.
|
|
</li>
|
|
</ol>
|
|
<p>
|
|
The document shepherd must propose one of these responses in the
|
|
conflict-review document, and the document shepherd may supply text
|
|
for an IESG Note in that document. The Area Director ballot positions
|
|
indicate consensus with the response proposed by the document shepherd
|
|
and agreement that the IESG should request inclusion of the IESG Note.
|
|
</p>
|
|
<p>
|
|
Other matters may be recorded in comments, and the comments will
|
|
be passed on to the RFC Editor as community review of the document.
|
|
</p>
|
|
{% endif %}
|
|
{% if "docs" in section %}
|
|
{% for doc in section.docs %}
|
|
{% if doc.type_id == "draft" or doc.type_id == "statchg" %}
|
|
{% include "iesg/agenda_doc.html" %}
|
|
{% endif %}
|
|
{% if doc.type_id == "conflrev" %}
|
|
{% include "iesg/agenda_conflict_doc.html" %}
|
|
{% endif %}
|
|
{% if doc.type_id == "charter" %}
|
|
{% include "iesg/agenda_charter.html" %}
|
|
{% endif %}
|
|
{% empty %}
|
|
<p class="text-muted">
|
|
(None)
|
|
</p>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if num|startswith:"6." and user|has_role:"Area Director,IAB Chair,Secretariat" %}
|
|
<pre class="border p-3">{{ section.text|maybewordwrap|urlize_ietf_docs|linkify }}</pre>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
{% block js %}<script>// automatically generate a right-hand navigation tab for long pages</script>{% endblock %}
|