Invalid uppercase HREFs in index-list.xsl
Status: Alpha
Brought to you by:
altumano
pldoc Version 0.8.3.1exp:
Teh value of the HREF attribute generated in line 97 in index-list.xsl uses UPPERCASES which will not work on unix systems because the generated HTML-files are in LOWERCASE.
Problem in line 97:
<xsl:value-of select="$referrer"/>
Solution:
<xsl:value-of select="translate($referrer,'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz')"/>
After this change the links in the index-list work well.
pldoc sample with invalid HREFs
Fixed in 0.9.1
Fixed in 0.9.1