You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by lg...@apache.org on 2018/10/01 21:13:30 UTC

svn commit: r1842568 - /httpd/httpd/trunk/docs/manual/style/manual.es.xsl

Author: lgilbernabe
Date: Mon Oct  1 21:13:30 2018
New Revision: 1842568

URL: http://svn.apache.org/viewvc?rev=1842568&view=rev
Log:
Spanish html doc files : UTF-8 encoding in order to get rid of HTML entities.

Modified:
    httpd/httpd/trunk/docs/manual/style/manual.es.xsl

Modified: httpd/httpd/trunk/docs/manual/style/manual.es.xsl
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/style/manual.es.xsl?rev=1842568&r1=1842567&r2=1842568&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/manual.es.xsl (original)
+++ httpd/httpd/trunk/docs/manual/style/manual.es.xsl Mon Oct  1 21:13:30 2018
@@ -18,7 +18,7 @@
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-<xsl:output method="xml" encoding="ISO-8859-1" indent="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
+<xsl:output method="xml" encoding="UTF-8" indent="no" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
 
 <!-- Read the localized messages from the specified language file -->
 <xsl:variable name="message" select="document('lang/es.xml')/language/messages/message"/>
@@ -26,7 +26,7 @@
 <xsl:variable name="allmodules" select="document('xsl/util/allmodules.xml')/items/item[@lang=$doclang]"/>
 
 <!-- some meta information have to be passed to the transformation -->
-<xsl:variable name="output-encoding">ISO-8859-1</xsl:variable>
+<xsl:variable name="output-encoding">UTF-8</xsl:variable>
 <xsl:variable name="is-chm" select="false()"/>
 <xsl:variable name="is-zip" select="false()"/>
 <xsl:variable name="is-retired" select="false()"/>