1

次の XSLT があります。

     <xsl:if test="$CurPos mod 2 =1">
         <li style="width:604px;"> 
           <div class="content-left" style="width:300px; height:290px;float:left;">
                <xsl:if test="string-length($SafeImageUrl) != 0">
                  <div class="images-area-left">
                    <a href="{$SafeLinkUrl}" target="{$LinkTarget}">
                      <img class="image" src="{$SafeImageUrl}" alt="{@ImageUrlAltText}" />
                    </a>
                    <div class="Heading-desc">
                        <span class="NewsHeading"><h4><xsl:value-of select="@Title"/></h4></span>
                        <span class="Desc">
                            <xsl:value-of select="substring(@Comments,0,200)"/>
                            <xsl:if test="string-length(@Comments) &gt; 200">…&lt;/xsl:if>
<a href="{$SafeLinkUrl}" class="ReadMore"> Read More</a>    
                        </span>
                    </div>
                </div>
               </xsl:if>            
            </div>

            <div class="content-right" style="float:right; width:300px; height:290px;"> 
                <xsl:value-of select="following-sibling::*[1]/@PublishingRollupImage" disable-output-escaping="yes" />
                <span class="NewsHeading"><h4><xsl:value-of select="following-sibling::*[1]/@Title"/></h4></span>
                <span class="Desc" style="display:block; width:280px;"><xsl:value-of select="substring(following-sibling::*[1]/@Comments,0,200)"/>
                 <xsl:if test="string-length(following-sibling::*[1]/@Comments) &gt; 200">…&lt;/xsl:if><a href="{$SafeLinkUrl}" class="ReadMore"> Read More</a>    
                </span>
            </div>
         </li>
     </xsl:if>  

現在の行のページ URL を取得する別のテンプレートからの変数 $SafeLinkUrl があります。現在のノードにいる間に次の兄弟を取得しているため、次の兄弟の URL を取得できません。

  <xsl:variable name="SafeLinkUrl">
    <xsl:call-template name="OuterTemplate.GetSafeLink">
      <xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
    </xsl:call-template>
  </xsl:variable>

============> このテンプレートを指す

<xsl:template name="OuterTemplate.GetSafeLink">
    <xsl:param name="UrlColumnName"/>
    <xsl:if test="$UseCopyUtil = 'True'">
        <xsl:value-of select="concat($RootSiteRef,'/_layouts/CopyUtil.aspx?Use=id&amp;Action=dispform&amp;ItemId=',@ID,'&amp;ListId=',@ListId,'&amp;WebId=',@WebId,'&amp;SiteId=',$SiteId,'&amp;Source=',$Source)"/>
    </xsl:if>
    <xsl:if test="$UseCopyUtil != 'True'">
        <xsl:call-template name="OuterTemplate.GetSafeStaticUrl">
            <xsl:with-param name="UrlColumnName" select="$UrlColumnName"/>
        </xsl:call-template>
    </xsl:if>
</xsl:template>

これには ====> への呼び出しがあります

<xsl:template name="OuterTemplate.GetSafeStaticUrl">
    <xsl:param name="UrlColumnName"/>
    <xsl:variable name="Url">
        <xsl:call-template name="OuterTemplate.FormatColumnIntoUrl">
            <xsl:with-param name="UrlColumnName" select="$UrlColumnName"/>
        </xsl:call-template>
    </xsl:variable>
    <xsl:value-of select="cmswrt:EnsureIsAllowedProtocol($Url)"/>
</xsl:template>

繰り返し別のテンプレートを呼び出します =====>

<xsl:template name="OuterTemplate.FormatColumnIntoUrl">
    <xsl:param name="UrlColumnName"/>
    <xsl:variable name="Value" select="@*[name()=$UrlColumnName]"/>
    <xsl:if test="contains($DataColumnTypes,concat(';',$UrlColumnName,',URL;'))">
        <xsl:call-template name="OuterTemplate.FormatValueIntoUrl">
            <xsl:with-param name="Value" select="$Value"/>
        </xsl:call-template>
    </xsl:if>
    <xsl:if test="not(contains($DataColumnTypes,concat(';',$UrlColumnName,',URL;')))">
        <xsl:value-of select="$Value"/>
    </xsl:if>
</xsl:template>

実際の XML は次のとおりです: https://gist.github.com/4380967

コンテナーの XSL: https://gist.github.com/4389989

個々の行の XSL: https://gist.github.com/4389997

$SafeLinkUrl を次の兄弟::*[1] に使用することはできません。これは、現在のアイテムに適用され、直接の兄弟には適用されないためです。変数を兄弟にも適用するにはどうすればよいですか??

4

1 に答える 1

0

Use:

 <xsl:variable name="SafeLinkUrl">
   <xsl:for-each select="following-sibling::*[1]">
    <xsl:call-template name="OuterTemplate.GetSafeLink">
      <xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
    </xsl:call-template>
   </xsl:for-each>
  </xsl:variable>

Or even better, add a second parameter to your template:

<xsl:template name="OuterTemplate.GetSafeLink">
    <xsl:param name="UrlColumnName"/>
    <xsl:param name="pContext" select="."/>

    <xsl:if test="$UseCopyUtil = 'True'">
        <xsl:value-of select="concat($RootSiteRef,'/_layouts/CopyUtil.aspx?Use=id&amp;Action=dispform&amp;ItemId=', $pContext/@ID,'&amp;ListId=',$pContext/@ListId,'&amp;WebId=',$pContext/@WebId,'&amp;SiteId=',$pContext/$SiteId,'&amp;Source=',$Source)"/>
    </xsl:if>
    <xsl:if test="$UseCopyUtil != 'True'">
        <xsl:call-template name="OuterTemplate.GetSafeStaticUrl">
            <xsl:with-param name="UrlColumnName" select="$UrlColumnName"/>
        </xsl:call-template>
    </xsl:if>
</xsl:template>

Do so for the other two templates. Specify the $pContext parameter when calling any of the two inner templates.

Then call the outermost template specifying the $pContext parameter as following-sibling::*[1].

于 2012-12-27T17:57:02.120 に答える