diff options
author | André Malo <nd@apache.org> | 2003-06-04 11:57:18 +0200 |
---|---|---|
committer | André Malo <nd@apache.org> | 2003-06-04 11:57:18 +0200 |
commit | f3d0156c227ae22960dd36268f6c25bd6d9abcfc (patch) | |
tree | 6873928676c36a4c8aafcbde15f2ccebdad0e83c /docs/manual/style/chm | |
parent | add Ben's streamy PROPFIND change (diff) | |
download | apache2-f3d0156c227ae22960dd36268f6c25bd6d9abcfc.tar.xz apache2-f3d0156c227ae22960dd36268f6c25bd6d9abcfc.zip |
add support for localized docs download packages. (currently en only)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100167 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/style/chm')
-rw-r--r-- | docs/manual/style/chm/chm.de.xsl | 1 | ||||
-rw-r--r-- | docs/manual/style/chm/chm.en.xsl | 1 | ||||
-rw-r--r-- | docs/manual/style/chm/chm.ja.xsl | 1 | ||||
-rw-r--r-- | docs/manual/style/chm/chm.ko.xsl | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/docs/manual/style/chm/chm.de.xsl b/docs/manual/style/chm/chm.de.xsl index 4b139ba144..511ba20b17 100644 --- a/docs/manual/style/chm/chm.de.xsl +++ b/docs/manual/style/chm/chm.de.xsl @@ -16,6 +16,7 @@ <!-- some meta information have to be passed to the transformation --> <xsl:variable name="output-encoding" select="'windows-1252'" /> <xsl:variable name="is-chm" select="true()" /> +<xsl:variable name="is-zip" select="false()" /> <!-- Now get the real guts of the stylesheet --> <xsl:include href="../xsl/common.xsl"/> diff --git a/docs/manual/style/chm/chm.en.xsl b/docs/manual/style/chm/chm.en.xsl index bb63fdba9a..bb903ac9c3 100644 --- a/docs/manual/style/chm/chm.en.xsl +++ b/docs/manual/style/chm/chm.en.xsl @@ -16,6 +16,7 @@ <!-- some meta information have to be passed to the transformation --> <xsl:variable name="output-encoding" select="'windows-1252'" /> <xsl:variable name="is-chm" select="true()" /> +<xsl:variable name="is-zip" select="false()" /> <!-- Now get the real guts of the stylesheet --> <xsl:include href="../xsl/common.xsl"/> diff --git a/docs/manual/style/chm/chm.ja.xsl b/docs/manual/style/chm/chm.ja.xsl index f3db56ea6e..3f8b6f52e0 100644 --- a/docs/manual/style/chm/chm.ja.xsl +++ b/docs/manual/style/chm/chm.ja.xsl @@ -16,6 +16,7 @@ <!-- some meta information have to be passed to the transformation --> <xsl:variable name="output-encoding" select="'SHIFT_JIS'" /> <xsl:variable name="is-chm" select="true()" /> +<xsl:variable name="is-zip" select="false()" /> <!-- Now get the real guts of the stylesheet --> <xsl:include href="../xsl/common.xsl"/> diff --git a/docs/manual/style/chm/chm.ko.xsl b/docs/manual/style/chm/chm.ko.xsl index 0e0114a2e0..ea8b926dd7 100644 --- a/docs/manual/style/chm/chm.ko.xsl +++ b/docs/manual/style/chm/chm.ko.xsl @@ -17,6 +17,7 @@ <!-- some meta information have to be passed to the transformation --> <xsl:variable name="output-encoding" select="'EUC-KR'" /> <xsl:variable name="is-chm" select="true()" /> +<xsl:variable name="is-zip" select="false()" /> <!-- Now get the real guts of the stylesheet --> <xsl:include href="../xsl/common.xsl"/> |