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
This commit is contained in:
parent
4309e7b020
commit
361246024a
@ -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,
|
||||
|
@ -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 \
|
||||
|
@ -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
|
||||
|
@ -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="''"/>
|
||||
|
Loading…
Reference in New Issue
Block a user