This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]