As by default the browse links on the index page do not produce lists that include these artists, I currently have defined a link to each of the characters in question, for example:
Code: Select all
<A HREF="BandList.xsl?SortBy=N*{$browseartistalbum}">N</A><xsl:text> </xsl:text>
<A HREF="BandList.xsl?SortBy=O*{$browseartistalbum}">O</A><xsl:text> </xsl:text>
<A HREF="BandList.xsl?SortBy=Ó*{$browseartistalbum}">Ó</A><xsl:text> </xsl:text>
<A HREF="BandList.xsl?SortBy=Ö*{$browseartistalbum}">Ö</A><xsl:text> </xsl:text>
<A HREF="BandList.xsl?SortBy=Ø*{$browseartistalbum}">Ø</A><xsl:text> </xsl:text>
<A HREF="BandList.xsl?SortBy=P*{$browseartistalbum}">P</A><xsl:text> </xsl:text>
<A HREF="BandList.xsl?SortBy=Q*{$browseartistalbum}">Q</A><xsl:text> </xsl:text>
<A HREF="BandList.xsl?SortBy=R*{$browseartistalbum}">R</A><xsl:text> </xsl:text>
<A HREF="BandList.xsl?SortBy=S*{$browseartistalbum}">S</A><xsl:text> </xsl:text>
<A HREF="BandList.xsl?SortBy=Š*{$browseartistalbum}">Š</A><xsl:text> </xsl:text>
<A HREF="BandList.xsl?SortBy=T*{$browseartistalbum}">T</A><xsl:text> </xsl:text>
I've tried inserting a character map as follows with no success:
Code: Select all
<xsl:character-map name="map">
<xsl:output-character character="Ä" string="A"/>
<xsl:output-character character="Ó" string="O"/>
<xsl:output-character character="Ö" string="O"/>
<xsl:output-character character="Ø" string="O"/>
<xsl:output-character character="Š" string="S"/>
<xsl:output-character character="Ż" string="Z"/>
</xsl:character-map>
<xsl:output indent="yes" use-character-maps="map"/>
Thanks for looking.