git-svn-id: svn://svn.c3d2.de/c3d2-web/trunk@507 31f61c52-7bfb-0310-b897-fc00f8a278f0
This commit is contained in:
astro 2006-08-03 15:02:31 +00:00
parent cf43a9d427
commit 7c1d0497a1
2 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@
-->
<xsl:for-each select="resource">
<enclosure
url="{replace(., ' ', '+')}"
url="{translate(., ' ', '+')}"
length="{@size}"
type="{@type}"
/>

View File

@ -251,7 +251,7 @@
<ul>
<xsl:for-each select="resource">
<li>
<a href="{replace(., ' ', '+'}" type="{@type}">
<a href="{translate(., ' ', '+')}" type="{@type}">
<xsl:choose>
<xsl:when test="@title"><xsl:value-of select="@title"/></xsl:when>
<xsl:otherwise><xsl:value-of select="."/></xsl:otherwise>
@ -267,7 +267,7 @@
<ul>
<xsl:for-each select="resource[not(@hide='yes')]">
<li>
<a href="{replace(., ' ', '+')}" type="{@type}">
<a href="{translate(., ' ', '+')}" type="{@type}">
<xsl:choose>
<xsl:when test="@title"><xsl:value-of select="@title"/></xsl:when>
<xsl:otherwise><xsl:value-of select="."/></xsl:otherwise>