File 3728-docgen-Link-directly-to-notes.patch of Package erlang
From e8b0b0492a77ac2bba72bbb57015ceaa3e9f6a82 Mon Sep 17 00:00:00 2001
From: Lukas Larsson <lukas@erlang.org>
Date: Mon, 13 Sep 2021 11:13:30 +0200
Subject: [PATCH 08/12] docgen: Link directly to notes
Before this change you had to navigate via release_notes
to get to the notes section as there used to be multiple
notes chapters. But that functionality has not been used
in a long time, so we can link directly to notes.html.
---
lib/erl_docgen/priv/xsl/db_html.xsl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/erl_docgen/priv/xsl/db_html.xsl b/lib/erl_docgen/priv/xsl/db_html.xsl
index 9f453283c9..42ab3014b9 100644
--- a/lib/erl_docgen/priv/xsl/db_html.xsl
+++ b/lib/erl_docgen/priv/xsl/db_html.xsl
@@ -979,7 +979,7 @@
<li><a href="internal_docs.html">Internal Documentation</a></li>
</xsl:if>
<xsl:if test="boolean(/book/releasenotes)">
- <li><a href="release_notes.html">Release Notes</a></li>
+ <li><a href="notes.html">Release Notes</a></li>
</xsl:if>
<xsl:choose>
<xsl:when test="string-length($pdfname) > 0">
--
2.31.1