Next in thread → Next in month →

Re: [docbook-apps] Index in htmlhelp is showing broken charactersfor swedish

From
Jirka Kosek <>
Date
2003-10-29T13:20:10+00:00
ID
Thread
Re: [docbook-apps] Index in htmlhelp is showing broken charactersfor swedish
Kenneth Johansson wrote:

> That didn't work.
> 
> Very weird though. When I removed the <xsl:param name="htmlhelp.encoding"
> select="windows-1252"></xsl:param> and <xsl:param
> name="chunker.output.encoding" select="windows-1252"></xsl:param> it worked.

There is typo in your parameter defition. You must use

<xsl:param name="htmlhelp.encoding" select="'windows-1250'"/>

instead of

<xsl:param name="htmlhelp.encoding" select="windows-1250"/>

Note apostrophes inside quotes. Without apostrophes expression is 
eveluated as node test returning empty nodeset which is considered empty 
string, resulting in non-existent encoding name. So use former variant 
or another safe method for specifying string content of parameter:

<xsl:param name="htmlhelp.encoding">windows-1250</xsl:param>

					Jirka

-- 
-----------------------------------------------------------------
   Jirka Kosek  	
   e-mail: 
   http://www.kosek.cz
Next in thread → Next in month →