From 4819180de1e3132d11c98b1d188e18574878744f Mon Sep 17 00:00:00 2001 From: Mechiel Lukkien Date: Tue, 27 Jun 2023 19:31:47 +0200 Subject: [PATCH] fix fetching errata after html changed --- rfc/errata.go | 4 ++-- rfc/index.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/rfc/errata.go b/rfc/errata.go index fb1506f..867d7d7 100644 --- a/rfc/errata.go +++ b/rfc/errata.go @@ -30,7 +30,7 @@ func main() { xcheckf(err, "write") // We will visit the html nodes. We skip
's. We turn on text - // output when we encounter an h3, and we stop again when we see a div + // output when we encounter an h4, and we stop again when we see a div // or form. This works at the moment, but may break in the future. output := false var walk func(*html.Node) @@ -39,7 +39,7 @@ func main() { if n.Data == "form" { return } - if !output && n.Data == "h3" { + if !output && n.Data == "h4" { output = true } else if output && (n.Data == "div" || n.Data == "form") { output = false diff --git a/rfc/index.md b/rfc/index.md index 9af5728..3d58e30 100644 --- a/rfc/index.md +++ b/rfc/index.md @@ -194,6 +194,7 @@ Also see IANA assignments, https://www.iana.org/protocols 6855 IMAP Support for UTF-8 6858 Simplified POP and IMAP Downgrading for Internationalized Email 7162 IMAP Extensions: Quick Flag Changes Resynchronization (CONDSTORE) and Quick Mailbox Resynchronization (QRESYNC) +7162-eid5055 errata: space after untagged OK 7377 IMAP4 Multimailbox SEARCH Extension 7888 IMAP4 Non-synchronizing Literals 7889 The IMAP APPENDLIMIT Extension