Вот код, который я использую:
<xsl:template match="Row[position() = 1]">
<li style="width: 650px; float: left; list-style: none outside none;">
<ul class="liste1">
<xsl:if test="@Style='NewsCustomTemplate'">
<li>
<div style="width:640px; color:#40494f; font-size:12">
<b style="color:black">
<xsl:value-of select="./@Title"/>
</b>
<xsl:choose>
<xsl:when test="string-length(./@Description)>300">
<xsl:value-of disable-output-escaping="yes" select="substring(./@Description,1,300)"/>...
</xsl:when>
<xsl:otherwise>
<xsl:value-of disable-output-escaping="yes" select="./@Description"/>
</xsl:otherwise>
</xsl:choose>
</div>
<div>
<a class="" href="#" target="" title="">
read more
</a>
</div>
</li>
<xsl:if test="following-sibling::*[1]">
<li>
<div style="width:640px; color:#40494f; font-size:12">
<b style="color:black">
<xsl:value-of select="following-sibling::*[1]/@Title"/>
</b>
<xsl:choose>
<xsl:when test="string-length(following-sibling::*[1]/@Description)>300">
<xsl:value-of disable-output-escaping="yes" select="substring(following-sibling::*[1]/@Description,1,300)"/>...
</xsl:when>
<xsl:otherwise>
<xsl:value-of disable-output-escaping="yes" select="following-sibling::*[1]/@Description"/>
</xsl:otherwise>
</xsl:choose>
</div>
<div>
<a class="" href="#" target="" title="">
read more
</a>
</div>
</li>
</xsl:if>
<xsl:if test="following-sibling::*[2]">
<li>
<div style="width:640px; color:#40494f; font-size:12">
<b style="color:black">
<xsl:value-of select="following-sibling::*[2]/@Title"/>
</b>
<xsl:choose>
<xsl:when test="string-length(following-sibling::*[2]/@Description)>300">
<xsl:value-of disable-output-escaping="yes" select="substring(following-sibling::*[2]/@Description,1,300)"/>...
</xsl:when>
<xsl:otherwise>
<xsl:value-of disable-output-escaping="yes" select="following-sibling::*[2]/@Description"/>
</xsl:otherwise>
</xsl:choose>
</div>
<div>
<a class="" href="#" target="" title="">
read more
</a>
</div>
</li>
</xsl:if>
</xsl:if>
<xsl:if test="@Style='AgendaCustomTemplate'">
</xsl:if>
</ul>
</li>
</xsl:template>
Проблема моего кода в том, что я повторяю почти один и тот же код три раза:
- один длятекущий элемент "."
- один для первого родного брата "follow-sibling :: * [1]"
- один для второго родного брата "follow-sibling :: * [2]"
Я хотел бы иметь своего рода общий шаблон для выполнения этой части для узла LOCATIONX:
<li>
<div style="width:640px; color:#40494f; font-size:12">
<b style="color:black">
<xsl:value-of select="LOCATIONX/@Title"/>
</b>
<xsl:choose>
<xsl:when test="string-length(LOCATIONX/@Description)>300">
<xsl:value-of disable-output-escaping="yes" select="substring(LOCATIONX/@Description,1,300)"/>...
</xsl:when>
<xsl:otherwise>
<xsl:value-of disable-output-escaping="yes" select="LOCATIONX/@Description"/>
</xsl:otherwise>
</xsl:choose>
</div>
<div>
<a class="" href="#" target="" title="">
read more
</a>
</div>
</li>
Кто-нибудь знает, возможно ли такое в XSLT?Или я должен сохранить мой код дублированным?