OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: 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: jirka@kosek.cz
   http://www.kosek.cz

S/MIME Cryptographic Signature



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]