nd 2003/04/17 09:28:04
Modified: docs/manual/style manual.de.xsl manual.en.xsl manual.ja.xsl
manual.pt-br.xsl manual.ru.xsl manual.sv.xsl
Log:
well, start with chm-support. (more commits to come)
Further development should take place in CVS.
Revision Changes Path
1.4 +4 -1 httpd-2.0/docs/manual/style/manual.de.xsl
Index: manual.de.xsl
===================================================================
RCS file: /home/cvs/httpd-2.0/docs/manual/style/manual.de.xsl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- manual.de.xsl 9 Apr 2003 12:21:19 -0000 1.3
+++ manual.de.xsl 17 Apr 2003 16:28:03 -0000 1.4
@@ -12,9 +12,12 @@
<!-- Read the localized messages from the specified language file -->
<xsl:variable name="messages" select="document('lang/de.xml')/messages"/>
+
+<!-- some meta information have to be passed to the transformation -->
<xsl:variable name="output-encoding" select="'ISO-8859-1'" />
+<xsl:variable name="is-chm" select="false()" />
<!-- Now get the real guts of the stylesheet -->
<xsl:include href="xsl/common.xsl"/>
-</xsl:stylesheet>
\ No newline at end of file
+</xsl:stylesheet>
1.4 +4 -1 httpd-2.0/docs/manual/style/manual.en.xsl
Index: manual.en.xsl
===================================================================
RCS file: /home/cvs/httpd-2.0/docs/manual/style/manual.en.xsl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- manual.en.xsl 9 Apr 2003 12:21:20 -0000 1.3
+++ manual.en.xsl 17 Apr 2003 16:28:03 -0000 1.4
@@ -12,9 +12,12 @@
<!-- Read the localized messages from the specified language file -->
<xsl:variable name="messages" select="document('lang/en.xml')/messages"/>
+
+<!-- some meta information have to be passed to the transformation -->
<xsl:variable name="output-encoding" select="'ISO-8859-1'" />
+<xsl:variable name="is-chm" select="false()" />
<!-- Now get the real guts of the stylesheet -->
<xsl:include href="xsl/common.xsl"/>
-</xsl:stylesheet>
\ No newline at end of file
+</xsl:stylesheet>
1.6 +3 -0 httpd-2.0/docs/manual/style/manual.ja.xsl
Index: manual.ja.xsl
===================================================================
RCS file: /home/cvs/httpd-2.0/docs/manual/style/manual.ja.xsl,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- manual.ja.xsl 9 Apr 2003 12:21:20 -0000 1.5
+++ manual.ja.xsl 17 Apr 2003 16:28:03 -0000 1.6
@@ -12,7 +12,10 @@
<!-- Read the localized messages from the specified language file -->
<xsl:variable name="messages" select="document('lang/ja.xml')/messages"/>
+
+<!-- some meta information have to be passed to the transformation -->
<xsl:variable name="output-encoding" select="'iso-2022-jp'" />
+<xsl:variable name="is-chm" select="false()" />
<!-- Now get the real guts of the stylesheet -->
<xsl:include href="xsl/common.xsl"/>
1.4 +3 -0 httpd-2.0/docs/manual/style/manual.pt-br.xsl
Index: manual.pt-br.xsl
===================================================================
RCS file: /home/cvs/httpd-2.0/docs/manual/style/manual.pt-br.xsl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- manual.pt-br.xsl 9 Apr 2003 12:21:20 -0000 1.3
+++ manual.pt-br.xsl 17 Apr 2003 16:28:04 -0000 1.4
@@ -12,7 +12,10 @@
<!-- Read the localized messages from the specified language file -->
<xsl:variable name="messages" select="document('lang/pt-br.xml')/messages"/>
+
+<!-- some meta information have to be passed to the transformation -->
<xsl:variable name="output-encoding" select="'ISO-8859-1'" />
+<xsl:variable name="is-chm" select="false()" />
<!-- Now get the real guts of the stylesheet -->
<xsl:include href="xsl/common.xsl"/>
1.3 +4 -1 httpd-2.0/docs/manual/style/manual.ru.xsl
Index: manual.ru.xsl
===================================================================
RCS file: /home/cvs/httpd-2.0/docs/manual/style/manual.ru.xsl,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- manual.ru.xsl 9 Apr 2003 12:21:20 -0000 1.2
+++ manual.ru.xsl 17 Apr 2003 16:28:04 -0000 1.3
@@ -12,9 +12,12 @@
<!-- Read the localized messages from the specified language file -->
<xsl:variable name="messages" select="document('lang/ru.xml')/messages"/>
+
+<!-- some meta information have to be passed to the transformation -->
<xsl:variable name="output-encoding" select="'KOI8-R'" />
+<xsl:variable name="is-chm" select="false()" />
<!-- Now get the real guts of the stylesheet -->
<xsl:include href="xsl/common.xsl"/>
-</xsl:stylesheet>
\ No newline at end of file
+</xsl:stylesheet>
1.2 +5 -1 httpd-2.0/docs/manual/style/manual.sv.xsl
Index: manual.sv.xsl
===================================================================
RCS file: /home/cvs/httpd-2.0/docs/manual/style/manual.sv.xsl,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- manual.sv.xsl 5 Sep 2002 23:06:16 -0000 1.1
+++ manual.sv.xsl 17 Apr 2003 16:28:04 -0000 1.2
@@ -13,7 +13,11 @@
<!-- Read the localized messages from the specified language file -->
<xsl:variable name="messages" select="document('lang/sv.xml')/messages"/>
+<!-- some meta information have to be passed to the transformation -->
+<xsl:variable name="output-encoding" select="'ISO-8859-1'" />
+<xsl:variable name="is-chm" select="false()" />
+
<!-- Now get the real guts of the stylesheet -->
<xsl:include href="xsl/common.xsl"/>
-</xsl:stylesheet>
\ No newline at end of file
+</xsl:stylesheet>
|