diff options
author | Joshua Slive <slive@apache.org> | 2002-05-17 19:24:41 +0200 |
---|---|---|
committer | Joshua Slive <slive@apache.org> | 2002-05-17 19:24:41 +0200 |
commit | 0de64a192c82ceccbea3c5a235f1c56dd70166b5 (patch) | |
tree | 4c74fb9f30024ac9a21f21b279a323a20187fdc3 /docs/manual/style/manual.ja.xsl | |
parent | Spelling corrections. (diff) | |
download | apache2-0de64a192c82ceccbea3c5a235f1c56dd70166b5.tar.xz apache2-0de64a192c82ceccbea3c5a235f1c56dd70166b5.zip |
Change the way language-dependent xslt works. Now a different
stylesheet must be used for different languages. The language-dependent
stylesheets simply include the appropriate language settings and then
include common.xsl to get the real stylesheet.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95154 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/style/manual.ja.xsl')
-rw-r--r-- | docs/manual/style/manual.ja.xsl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/manual/style/manual.ja.xsl b/docs/manual/style/manual.ja.xsl new file mode 100644 index 0000000000..4aba62275c --- /dev/null +++ b/docs/manual/style/manual.ja.xsl @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<xsl:stylesheet version="1.0" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> + +<xsl:output method="html" encoding="ISO-2202-JP" indent="no"/> + +<!-- Read the localized messages from the specified language file --> +<xsl:variable name="messages" select="document('ja.xml')/messages"/> + +<!-- Now get the real guts of the stylesheet --> +<xsl:include href="common.xsl"/> + +</xsl:stylesheet>
\ No newline at end of file |