Font size:
Apache Forrest Notes
Reenable the External Link Image
When leaving out the <group-*> tags, including the <group-url>
tag in skinconf.xml the external link image does not show, even though
<disable-external-link-image> is set to false. This is due
to a test in
{FORREST_HOME}\main\webapp\skins\common\xslt\html\site2xhtml.xsl .
With the following modification the external link image is displayed again dispite the fact that <group-url> is not defined in skinconf.xml.
...
</xsl:when>
<xsl:when test="not($disable-external-link-image='true') and contains(@href, ':'
and not(contains(@href, //skinconfig/group-url))
and not(contains(@href, //skinconfig/project-url))">
<a href="{@href}" class="external">
<xsl:apply-templates/>
</a>
</xsl:when>
...

