diff options
author | André Malo <nd@apache.org> | 2004-02-22 02:58:31 +0100 |
---|---|---|
committer | André Malo <nd@apache.org> | 2004-02-22 02:58:31 +0100 |
commit | 886a964d9825445097e5a9595889bd88a8b08763 (patch) | |
tree | c4687163c38b2f2a64361183fe64a5c27a7e2dd7 /docs | |
parent | update transformation (diff) | |
download | apache2-886a964d9825445097e5a9595889bd88a8b08763.tar.xz apache2-886a964d9825445097e5a9595889bd88a8b08763.zip |
add properties
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102742 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/style/build.properties | 8 | ||||
-rw-r--r-- | docs/manual/style/chm/hhp.xsl | 7 |
2 files changed, 14 insertions, 1 deletions
diff --git a/docs/manual/style/build.properties b/docs/manual/style/build.properties new file mode 100644 index 0000000000..f125957c96 --- /dev/null +++ b/docs/manual/style/build.properties @@ -0,0 +1,8 @@ +# This file contains version specific properties + +# No xml files yet +noxml.ja=developer/modules.html.ja.jis +noxml.fr=new_features_2_0.html.fr upgrading.html.fr + +# (pending) httpd version +httpd.version=2.1.0-dev diff --git a/docs/manual/style/chm/hhp.xsl b/docs/manual/style/chm/hhp.xsl index 19b1b33a45..751330ec86 100644 --- a/docs/manual/style/chm/hhp.xsl +++ b/docs/manual/style/chm/hhp.xsl @@ -23,6 +23,9 @@ xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns=""> +<!-- the accompanying server version --> +<xsl:param name="httpd.version" select="'generic'" /> + <!-- create nodeset for referencing later --> <xsl:variable name="htmlhelp.def" select="document('')/xsl:stylesheet /xsl:template[@name='htmlhelp.def']" /> @@ -41,7 +44,9 @@ <xsl:text>Compatibility=1.0</xsl:text>&lf; <!-- resulting filename --> -<xsl:text>Compiled file=manual.</xsl:text> +<xsl:text>Compiled file=httpd-docs-</xsl:text> +<xsl:value-of select="$httpd.version" /> +<xsl:text>.</xsl:text> <xsl:value-of select="$messages/@lang" /> <xsl:text>.chm</xsl:text>&lf; |