diff options
author | gjb <gjb@FreeBSD.org> | 2014-09-09 19:51:57 +0000 |
---|---|---|
committer | gjb <gjb@FreeBSD.org> | 2014-09-09 19:51:57 +0000 |
commit | ef9091f941decea89d4145ed966738a249a67465 (patch) | |
tree | f2ba1110d843a191a9772871ca87d60cdba658e9 /release | |
parent | d63cc6f68aae576f241e0c4447ef46a6f7ad8502 (diff) | |
download | FreeBSD-src-ef9091f941decea89d4145ed966738a249a67465.zip FreeBSD-src-ef9091f941decea89d4145ed966738a249a67465.tar.gz |
Change how the recommended mailing list to track is
added to the footer of the release/doc/ pages by
moving a hard-coded value (that is subject to human
error to change) to release.ent where other values
are regularly changed, and adding parsing logic to
release.xsl.
Approved by: re (implicit)
MFC after: 3 days
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'release')
-rw-r--r-- | release/doc/en_US.ISO8859-1/share/xml/release.xsl | 3 | ||||
-rw-r--r-- | release/doc/share/mk/doc.relnotes.mk | 2 | ||||
-rw-r--r-- | release/doc/share/xml/release.ent | 3 | ||||
-rw-r--r-- | release/doc/share/xml/release.xsl | 1 |
4 files changed, 8 insertions, 1 deletions
diff --git a/release/doc/en_US.ISO8859-1/share/xml/release.xsl b/release/doc/en_US.ISO8859-1/share/xml/release.xsl index f1d1479..a854cd9 100644 --- a/release/doc/en_US.ISO8859-1/share/xml/release.xsl +++ b/release/doc/en_US.ISO8859-1/share/xml/release.xsl @@ -8,6 +8,7 @@ <xsl:param name="release.url"/> <xsl:param name="release.branch"/> + <xsl:param name="release.maillist"/> <xsl:template name="user.footer.content"> <p align="center"><small>This file, and other release-related documents, @@ -18,7 +19,7 @@ contacting <<a href="mailto:questions@FreeBSD.org">questions@FreeBSD.org</a>>.</small></p> <p align="center"><small>All users of FreeBSD <xsl:value-of select="$release.branch"/> should - subscribe to the <<a href="mailto:current@FreeBSD.org">current@FreeBSD.org</a>> + subscribe to the <<a href="mailto:{$release.maillist}@FreeBSD.org"><xsl:value-of select="$release.maillist"/>@FreeBSD.org</a>> mailing list.</small></p> <p align="center"><small>For questions about this documentation, diff --git a/release/doc/share/mk/doc.relnotes.mk b/release/doc/share/mk/doc.relnotes.mk index 8034c63..8ae9fd0 100644 --- a/release/doc/share/mk/doc.relnotes.mk +++ b/release/doc/share/mk/doc.relnotes.mk @@ -6,6 +6,7 @@ DOC_PREFIX?= ${RELN_ROOT}/../../../doc RELEASETYPE!= grep -o 'release.type "[a-z]*"' ${RELN_ROOT}/share/xml/release.ent | sed 's|[a-z.]* "\([a-z]*\)"|\1|' RELEASEURL!= grep -o 'release.url \"[^\"]*\"' ${RELN_ROOT}/share/xml/release.ent | sed 's|[^ ]* "\([^"]*\)"|\1|' RELEASEBRANCH!= grep -o 'release.branch "\([^"]*\)"' ${RELN_ROOT}/share/xml/release.ent | sed 's|[^ ]* "\([^"]*\)"|\1|' +RELEASEMAILLIST!= grep -o 'release.maillist "\([^"]*\)"' ${RELN_ROOT}/share/xml/release.ent | sed 's|[^ ]* "\([^"]*\)"|\1|' .if ${RELEASETYPE} == "current" PROFILING+= --param profile.attribute "'releasetype'" --param profile.value "'current'" .elif ${RELEASETYPE} == "snapshot" @@ -15,6 +16,7 @@ PROFILING+= --param profile.attribute "'releasetype'" --param profile.value "'re .endif XSLTPROCFLAGS+= --param release.url "'${RELEASEURL}'" XSLTPROCFLAGS+= --param release.branch "'${RELEASEBRANCH}'" +XSLTPROCFLAGS+= --param release.maillist "'${RELEASEMAILLIST}'" # Find the RELNOTESng document catalogs EXTRA_CATALOGS+= file://${RELN_ROOT}/${LANGCODE}/share/xml/catalog.xml \ diff --git a/release/doc/share/xml/release.ent b/release/doc/share/xml/release.ent index bdd58b7..5cc3c85 100644 --- a/release/doc/share/xml/release.ent +++ b/release/doc/share/xml/release.ent @@ -27,6 +27,9 @@ <!-- The URL for obtaining this version of FreeBSD. --> <!ENTITY release.url "http://www.FreeBSD.org/snapshots/"> +<!-- The recommended mailing list to track. --> +<!ENTITY release.maillist "current"> + <!-- The type of release (usually this will be either "snapshot" or "release" --> <!-- WARNING: Do not forget to also change the release type in diff --git a/release/doc/share/xml/release.xsl b/release/doc/share/xml/release.xsl index d3616a0..f76ae68 100644 --- a/release/doc/share/xml/release.xsl +++ b/release/doc/share/xml/release.xsl @@ -12,6 +12,7 @@ <xsl:param name="release.url"/> <xsl:param name="release.branch"/> + <xsl:param name="release.maillist"/> <xsl:template name="paragraph"> <xsl:param name="class" select="''"/> |