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] javahelp - sort index


----- Original Message ----- 
From: "Melanie Rösch" 

> Hi,
> 
> is it possible to sort the generated index-file for javahelp alphabetical?

Yes, it is. Modify the helpidx.content template in javahelp.xsl. Change this line:

<xsl:apply-templates select="//indexterm" mode="idx"/>

to this: 

<xsl:apply-templates select="//indexterm" mode="idx">
 <xsl:sort select="primary"/>
 <xsl:sort select="secondary"/>
 <xsl:sort select="tertiary"/>
</xsl:apply-templates>


/MJ


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