From 8d13b68cbfe8698d4e884b9f59757bc7c0d1a66f Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Sun, 19 Jul 2026 16:41:35 +0200 Subject: [PATCH 1/3] fix: on search, order then truncate in all branches (#11250) --- ietf/doc/views_search.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ietf/doc/views_search.py b/ietf/doc/views_search.py index 4232d77f6c4..5d59adb349f 100644 --- a/ietf/doc/views_search.py +++ b/ietf/doc/views_search.py @@ -260,6 +260,10 @@ def retrieve_search_results(form, all_types=False): docs=docs.distinct() + # order by time here to retain the most recent documents in case we + # find too many and have to chop the results list in prepare_document_table + docs = docs.order_by('-time') + return docs From 66e204d3658e234486a7bb9327f5159df050131e Mon Sep 17 00:00:00 2001 From: Benson Muite Date: Tue, 21 Jul 2026 16:07:17 +0300 Subject: [PATCH 2/3] fix: datatracker shepherd writeup template is authoritative (#11278) There is no longer a shepherd writeup template hosted at chairs.ietf.org --- ietf/templates/doc/shepherd_writeup.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/templates/doc/shepherd_writeup.txt b/ietf/templates/doc/shepherd_writeup.txt index 54821e59161..b366e395711 100644 --- a/ietf/templates/doc/shepherd_writeup.txt +++ b/ietf/templates/doc/shepherd_writeup.txt @@ -1,4 +1,4 @@ -{# Keep in sync with https://github.com/ietf-chairs/chairs.ietf.org/blob/main/documents/qa-style-writeup-template.md #}{% if stream %}{% if stream == 'ietf' %}# Document Shepherd Write-Up{% if type != "individ" %} for Group Documents{% else %} for Individual Documents{% endif %} +{# For more information see https://github.com/ietf/chairs.ietf.org/blob/main/documents/document-shepherding.md #}{% if stream %}{% if stream == 'ietf' %}# Document Shepherd Write-Up{% if type != "individ" %} for Group Documents{% else %} for Individual Documents{% endif %} *This version is dated 4 July 2022.* From ecbe4f9bc0c23b77413e5a9d01f431267ee5390f Mon Sep 17 00:00:00 2001 From: Jennifer Richards Date: Thu, 23 Jul 2026 11:50:26 +0200 Subject: [PATCH 3/3] chore: expose meetecho_slides_notify_time config (#11284) --- k8s/settings_local.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/k8s/settings_local.py b/k8s/settings_local.py index 5dc31bac0e5..e5f0a9af0f3 100644 --- a/k8s/settings_local.py +++ b/k8s/settings_local.py @@ -217,6 +217,9 @@ def _multiline_to_list(s): "client_id": _MEETECHO_CLIENT_ID, "client_secret": _MEETECHO_CLIENT_SECRET, "request_timeout": 3.01, # python-requests doc recommend slightly > a multiple of 3 seconds + "slides_notify_time": int( + os.environ.get("DATATRACKER_MEETECHO_SLIDES_NOTIFY_TIME_MINUTES", "15") + ), } else: raise RuntimeError(