* 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
41 lines
1.9 KiB
HTML
41 lines
1.9 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load static %}
|
|
{% load django_bootstrap5 %}
|
|
{% load ietf_filters %}
|
|
{% load textfilters %}
|
|
{% block title %}Status update for {{ group.acronym }} {{ group.type.name }}{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
Status update for {{ group.type.name }}
|
|
<br>
|
|
<small class="text-muted">{{ group.acronym }}</small>
|
|
</h1>
|
|
{% if can_provide_status_update %}
|
|
<div class="my-3 alert alert-info">
|
|
<h2>About Status Updates</h2>
|
|
<p>
|
|
Capturing group status updates in the datatracker allows including them in meeting proceedings. This capability was added to address the IESG request at
|
|
<a href="https://trac.ietf.org/trac/ietfdb/ticket/1773">ticket 1773</a>.
|
|
Not all groups are expected to provide status updates. Those that do have historically sent messages by email or have placed them on a wiki. For example, see
|
|
<a href="https://mailarchive.ietf.org/arch/msg/saag/fo2b3KA47SM4MuQuYj5VIh-Tjok">
|
|
the Kitten report sent to SAAG for IETF94
|
|
</a>
|
|
or the
|
|
<a href="https://trac.ietf.org/trac/rtg/wiki/IETF94summary">Routing area high level summaries for IETF94</a>.
|
|
</p>
|
|
</div>
|
|
{% endif %}
|
|
<pre class="border p-3 my-3 pasted">{{ status_update.desc|default:"(none)"|urlize_ietf_docs|linkify }}</pre>
|
|
{% if can_provide_status_update %}
|
|
<a id="edit_button"
|
|
class="btn btn-primary"
|
|
href="{% url "ietf.group.views.group_about_status_edit" acronym=group.acronym %}">
|
|
Edit
|
|
</a>
|
|
{% endif %}
|
|
<a class="btn btn-secondary float-end"
|
|
href="{% url "ietf.group.views.group_about" acronym=group.acronym %}">Back</a>
|
|
{% endblock %} |