-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: merge main to release
- Loading branch information
Showing
11 changed files
with
186 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
82 changes: 82 additions & 0 deletions
82
ietf/person/migrations/0002_alter_historicalperson_ascii_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
# Generated by Django 4.2.13 on 2024-05-22 18:50 | ||
|
||
from django.db import migrations, models | ||
import ietf.person.models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("person", "0001_initial"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="historicalperson", | ||
name="ascii", | ||
field=models.CharField( | ||
help_text="Name as rendered in ASCII (Latin, unaccented) characters.", | ||
max_length=255, | ||
validators=[ietf.person.models.name_character_validator], | ||
verbose_name="Full Name (ASCII)", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="historicalperson", | ||
name="ascii_short", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Example: A. Nonymous. Fill in this with initials and surname only if taking the initials and surname of the ASCII name above produces an incorrect initials-only form. (Blank is OK).", | ||
max_length=32, | ||
null=True, | ||
validators=[ietf.person.models.name_character_validator], | ||
verbose_name="Abbreviated Name (ASCII)", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="historicalperson", | ||
name="plain", | ||
field=models.CharField( | ||
blank=True, | ||
default="", | ||
help_text="Use this if you have a Spanish double surname. Don't use this for nicknames, and don't use it unless you've actually observed that the datatracker shows your name incorrectly.", | ||
max_length=64, | ||
validators=[ietf.person.models.name_character_validator], | ||
verbose_name="Plain Name correction (Unicode)", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="person", | ||
name="ascii", | ||
field=models.CharField( | ||
help_text="Name as rendered in ASCII (Latin, unaccented) characters.", | ||
max_length=255, | ||
validators=[ietf.person.models.name_character_validator], | ||
verbose_name="Full Name (ASCII)", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="person", | ||
name="ascii_short", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Example: A. Nonymous. Fill in this with initials and surname only if taking the initials and surname of the ASCII name above produces an incorrect initials-only form. (Blank is OK).", | ||
max_length=32, | ||
null=True, | ||
validators=[ietf.person.models.name_character_validator], | ||
verbose_name="Abbreviated Name (ASCII)", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="person", | ||
name="plain", | ||
field=models.CharField( | ||
blank=True, | ||
default="", | ||
help_text="Use this if you have a Spanish double surname. Don't use this for nicknames, and don't use it unless you've actually observed that the datatracker shows your name incorrectly.", | ||
max_length=64, | ||
validators=[ietf.person.models.name_character_validator], | ||
verbose_name="Plain Name correction (Unicode)", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{# Copyright The IETF Trust 2016-2023, All Rights Reserved #} | ||
{% load origin %} | ||
{% load ietf_filters %} | ||
{% origin %} | ||
{% if doc.type_id == "rfc" %} | ||
{% if doc.stream.slug != "ietf" and doc.std_level.slug|default:"unk" not in "bcp,ds,ps,std"|split:"," %} | ||
<div class="alert alert-warning {% if document_html %}small p-2 mt-2{% endif %}" role="alert"> | ||
This RFC was published on the {{ doc.stream.desc }} stream. | ||
This RFC is <strong>not endorsed by the IETF</strong> and has <strong>no formal standing</strong> in the | ||
<a href="{% url 'ietf.doc.views_doc.document_main' name='rfc2026' %}">IETF standards process</a>. | ||
</div> | ||
{% endif %} | ||
{% elif doc|is_in_stream %} | ||
{% if doc.stream.slug != "ietf" and doc.std_level.slug|default:"unk" not in "bcp,ds,ps,std"|split:"," %} | ||
<div class="alert alert-warning {% if document_html %}small p-2 mt-2{% endif %}" role="alert"> | ||
This document is an Internet-Draft (I-D) that has been submitted to the {{ doc.stream.desc }} stream. | ||
This I-D is <strong>not endorsed by the IETF</strong> and has <strong>no formal standing</strong> in the | ||
<a href="{% url 'ietf.doc.views_doc.document_main' name='rfc2026' %}">IETF standards process</a>. | ||
</div> | ||
{% endif %} | ||
{% else %} | ||
<div class="alert alert-warning {% if document_html %}small p-2 mt-2{% endif %}" role="alert"> | ||
This document is an Internet-Draft (I-D). | ||
Anyone may submit an I-D to the IETF. | ||
This I-D is <strong>not endorsed by the IETF</strong> and has <strong>no formal standing</strong> in the | ||
<a href="{% url 'ietf.doc.views_doc.document_main' name='rfc2026' %}">IETF standards process</a>. | ||
</div> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters