← 返回首页
fix: adjust draft-stream-ietf state descriptions per IESG (#10437) · ietf-tools/datatracker@619b2ae · GitHub
Skip to content

Navigation Menu

Toggle navigation
Sign in
Appearance settings
Search or jump to...

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Include my email address so I can be contacted

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Resetting focus

Commit 619b2ae

Browse files
authored
fix: adjust draft-stream-ietf state descriptions per IESG (#10437)
1 parent 8d804f3 commit 619b2ae

1 file changed

Lines changed: 57 additions & 0 deletions

File tree

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Copyright The IETF Trust 2026, All Rights Reserved
2+
3+
from django.db import migrations
4+
5+
6+
def forward(apps, schema_editor):
7+
State = apps.get_model("doc", "State")
8+
for name, desc in [
9+
(
10+
"Adopted by a WG",
11+
"The individual submission document has been adopted by the Working Group (WG), but some administrative matter still needs to be completed (e.g., a WG document replacing this document with the typical naming convention of 'draft-ietf-wgname-topic-nn' has not yet been submitted).",
12+
),
13+
(
14+
"WG Document",
15+
"The document has been identified as a Working Group (WG) document and is under development per Section 7.2 of RFC2418.",
16+
),
17+
(
18+
"Waiting for WG Chair Go-Ahead",
19+
"The Working Group (WG) document has completed Working Group Last Call (WGLC), but the WG chairs are not yet ready to call consensus on the document. The reasons for this may include comments from the WGLC need to be responded to, or a revision to the document is needed.",
20+
),
21+
(
22+
"Submitted to IESG for Publication",
23+
"The Working Group (WG) document has been submitted to the Internet Engineering Steering Group (IESG) for evaluation and publication per Section 7.4 of RFC2418. See the “IESG State” or “RFC Editor State” for further details on the state of the document.",
24+
),
25+
]:
26+
State.objects.filter(name=name).update(desc=desc, type="draft-stream-ietf")
27+
28+
29+
def reverse(apps, schema_editor):
30+
State = apps.get_model("doc", "State")
31+
for name, desc in [
32+
(
33+
"Adopted by a WG",
34+
"The individual submission document has been adopted by the Working Group (WG), but a WG document replacing this document with the typical naming convention of 'draft- ietf-wgname-topic-nn' has not yet been submitted.",
35+
),
36+
(
37+
"WG Document",
38+
"The document has been adopted by the Working Group (WG) and is under development. A document can only be adopted by one WG at a time. However, a document may be transferred between WGs.",
39+
),
40+
(
41+
"Waiting for WG Chair Go-Ahead",
42+
"The Working Group (WG) document has completed Working Group Last Call (WGLC), but the WG chair(s) are not yet ready to call consensus on the document. The reasons for this may include comments from the WGLC need to be responded to, or a revision to the document is needed",
43+
),
44+
(
45+
"Submitted to IESG for Publication",
46+
"The Working Group (WG) document has left the WG and been submitted to the Internet Engineering Steering Group (IESG) for evaluation and publication. See the “IESG State” or “RFC Editor State” for further details on the state of the document.",
47+
),
48+
]:
49+
State.objects.filter(name=name).update(desc=desc, type="draft-stream-ietf")
50+
51+
52+
class Migration(migrations.Migration):
53+
dependencies = [
54+
("doc", "0030_alter_dochistory_title_alter_document_title"),
55+
]
56+
57+
operations = [migrations.RunPython(forward, reverse)]

0 commit comments

Comments
 (0)

Footer

© 2026 GitHub, Inc.