2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

[master] [rt37398] version string in ARM page footers

3986.	[doc]		Add the BIND version number to page footers
			in the ARM. [RT #37398]
This commit is contained in:
Evan Hunt 2014-10-20 23:34:21 -07:00
parent 78ec962d98
commit dd66b77417
6 changed files with 26 additions and 4 deletions

View File

@ -1,3 +1,6 @@
3986. [doc] Add the BIND version number to page footers
in the ARM. [RT #37398]
3985. [doc] Describe how +ndots and +search interact in dig.
[RT #37529]

3
configure vendored
View File

@ -667,6 +667,7 @@ SO_CFLAGS
SO
BIND9_CONFIGARGS
BIND9_SRCID
BIND9_VERSIONSTRING
BIND9_MAJOR
BIND9_VERSION
BIND9_DESCRIPTION
@ -20513,6 +20514,8 @@ BIND9_VERSION="VERSION=${MAJORVER}.${MINORVER}${PATCHVER:+.}${PATCHVER}${RELEASE
BIND9_MAJOR="MAJOR=${MAJORVER}.${MINORVER}"
BIND9_VERSIONSTRING="${PRODUCT} ${MAJORVER}.${MINORVER}${PATCHVER:+.}${PATCHVER}${RELEASETYPE}${RELEASEVER}${EXTENSIONS}${DESCRIPTION:+ }${DESCRIPTION}"
BIND9_SRCID="SRCID=unset"
if test -f "${srcdir}/srcid"; then

View File

@ -4134,6 +4134,8 @@ BIND9_VERSION="VERSION=${MAJORVER}.${MINORVER}${PATCHVER:+.}${PATCHVER}${RELEASE
AC_SUBST(BIND9_VERSION)
BIND9_MAJOR="MAJOR=${MAJORVER}.${MINORVER}"
AC_SUBST(BIND9_MAJOR)
BIND9_VERSIONSTRING="${PRODUCT} ${MAJORVER}.${MINORVER}${PATCHVER:+.}${PATCHVER}${RELEASETYPE}${RELEASEVER}${EXTENSIONS}${DESCRIPTION:+ }${DESCRIPTION}"
AC_SUBST(BIND9_VERSIONSTRING)
BIND9_SRCID="SRCID=unset"
if test -f "${srcdir}/srcid"; then

View File

@ -57,7 +57,7 @@
</xsl:template>
<xsl:template name="user.footer.navigation">
<p style="text-align: center;">BIND Version @PACKAGE_VERSION@</p>
<p style="text-align: center;">@BIND9_VERSIONSTRING@</p>
</xsl:template>
</xsl:stylesheet>

View File

@ -50,7 +50,7 @@
</xsl:template>
<xsl:template name="user.footer.navigation">
<p style="text-align: center;">BIND Version @PACKAGE_VERSION@</p>
<p style="text-align: center;">@BIND9_VERSIONSTRING@</p>
</xsl:template>
</xsl:stylesheet>

View File

@ -14,8 +14,6 @@
- PERFORMANCE OF THIS SOFTWARE.
-->
<!-- $Id: isc-docbook-latex.xsl.in,v 1.9 2010/04/20 23:51:12 tbox Exp $ -->
<!-- ISC customizations for db2latex generator -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
@ -135,6 +133,22 @@
<xsl:text>&#10;</xsl:text>
</xsl:param>
<!-- Add version in footer. -->
<xsl:param name="latex.book.preamble.post">
<xsl:text>
\pagestyle{fancy}
\fancyfoot[ce,co]{\thepage}
\fancyfoot[le,ro]{@BIND9_VERSIONSTRING@}
\renewcommand{\headrulewidth}{0.4 pt}
\fancypagestyle{plain}{%
\fancyhf{}%
\fancyfoot[ce,co]{\thepage}%
\fancyfoot[le,ro]{@BIND9_VERSIONSTRING@}%
\renewcommand{\headrulewidth}{0 pt}
}
</xsl:text>
</xsl:param>
<!--
- More front matter: copyright notice, CVS revision number, table
- of contents.