0

私は XSLT プログラミングが初めてで、次の問題に苦しんでいます。

XML:

<All_Results>
<Result>
<url>http://server/sites/sitecoll/library/Folder/NewFolder/test v1.0.docx</url>
<hithighlightedproperties>        
      <HHUrl>SomeValue1</HHUrl>
    </hithighlightedproperties>
<isdocument>True</isdocument>
<serverredirectedurl>SomeValue</serverredirectedurl>
</Result>
<Result>
<url>http://server/sites/sitecoll/library/NewFolder1/test v2.0.docx</url>
<hithighlightedproperties>        
      <HHUrl>SomeValue1</HHUrl>
    </hithighlightedproperties>
<isdocument>True</isdocument>
<serverredirectedurl>SomeValue</serverredirectedurl>
</Result>
<Result>
<url>http://server/sites/sitecoll/library/NewFolder/test v1.0.docx</url>
<hithighlightedproperties>        
      <HHUrl>SomeValue1</HHUrl>
    </hithighlightedproperties>
<isdocument>False</isdocument>
<serverredirectedurl>SomeValue1</serverredirectedurl>
</Result>
......
......

要件は次のとおりです。

各「結果」セクションで、(「isdocument」ノード = True) の場合、「url」ノードを読み取り、その値の「library/」の後に部分文字列を取得します。この出力から、「/」が最後に出現する前の部分文字列を取得します。(これを実現するために別のテンプレートを使用) たとえば、最初の「結果」の場合、「Folder/NewFolder」になります。最後に、この出力の前後にハードコーディングされた文字列を連結し、「結果」の下のすべての「結果」について、「HHUrl」と「ServerRedirectUrl」の値をこの最終出力に置き換えます。

出力

 <All_Results>
<Result>
<url>http://server/sites/sitecoll/library/Folder/NewFolder/test v1.0.docx</url>
<hithighlightedproperties>        
      <HHUrl>http://SomeHardCodedString1/Folder/NewFolder/SomeHardCodedString2</HHUrl>
    </hithighlightedproperties>
<isdocument>True</isdocument>
<serverredirectedurl>
        http://SomeHardCodedString1/Folder/NewFolder/SomeHardCodedString2
    </serverredirectedurl>
</Result>
<Result>
<url>http://server/sites/sitecoll/library/NewFolder1/test v2.0.docx</url>
<hithighlightedproperties>        
      <HHUrl>http://SomeHardCodedString1/NewFolder1/SomeHardCodedString2</HHUrl>
    </hithighlightedproperties>
<isdocument>True</isdocument>
<serverredirectedurl>http://SomeHardCodedString1/NewFolder1/SomeHardCodedString2
     </serverredirectedurl>
</Result>
<Result>
<url>http://server/sites/sitecoll/library/NewFolder/test v1.0.docx</url>
<hithighlightedproperties>        
      <HHUrl>SomeValue1</HHUrl>
    </hithighlightedproperties>
<isdocument>False</isdocument>
<serverredirectedurl>SomeValue1</serverredirectedurl>
</Result>
......
......

要件を簡素化するために元の XML 出力をトリミングし、元の XML に関連付けられた長く複雑な XLST を作成しました。目標は、HTML としてレンダリングされる前に、"HHUrl" 文字列をオンザフライで変更することです。この特定の要件のために、部分的に機能する次のコードを作成して埋め込みました。

<xsl:template name="stripLast">
    <xsl:param name="pText"/>
    <xsl:param name="pDelim" select="'/'"/>
     <xsl:if test="contains($pText, $pDelim)">
       <xsl:value-of select="substring-before($pText, $pDelim)"/>
       <xsl:if test="contains(substring-after($pText, $pDelim), $pDelim)">
         <xsl:value-of select="$pDelim"/>
       </xsl:if>
       <xsl:call-template name="stripLast">
         <xsl:with-param name="pText" select=
          "substring-after($pText, $pDelim)"/>
         <xsl:with-param name="pDelim" select="$pDelim"/>
       </xsl:call-template>
     </xsl:if>
   </xsl:template>  

<xsl:template match="@* | node()">
   <xsl:copy>
    <xsl:apply-templates select="@* | node()"/>
  </xsl:copy>
</xsl:template>  

 <xsl:template match="All_Results/Result/hithighlightedproperties/HHUrl">  
     <xsl:param name="staticUrl" select=" 'https://SomeHardCodedString1/' "/> 
      <xsl:copy>  
      <xsl:variable name="urlValue" select="string(.)"/>
      <xsl:variable name="s" select="substring-after($urlValue, 'Portal/')"/>      
      <xsl:variable name="qsValue">
      <xsl:call-template name="stripLast">
        <xsl:with-param name="pText" select="$s"/>
      </xsl:call-template>
   </xsl:variable>
        <xsl:value-of select="concat($staticUrl, $qsValue, 'SomeHardCodedString2')"/>        
    </xsl:copy>
 </xsl:template>

どんな助けでも大歓迎です。

ありがとう、

SharePoint 開発者。

4

1 に答える 1

0

少し遊んでみましたが、次のアイデアが役立つかもしれません。ただし、ハードコーディングしたいビットに 2 つ以上のレベルがある場合 (つまり、"Folder/"、"Folder/Folder1/"、(そして壊れる場合)、"Folder/ Folder1/Folder2/") ですが、アイデアを拡張できます。

<xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="//HHUrl[ancestor::Result[isdocument[.='True']]]">
    <xsl:variable name="url" select="../../url"></xsl:variable>
    <xsl:variable name="firsttoken" select="concat(substring-before(substring-after($url,'library/'),'/'),'/')"></xsl:variable>
    <xsl:variable name="secondtoken" select="substring-before(substring-after($url,$firsttoken),'/')"></xsl:variable>
    <xsl:variable name="thirdtoken" select="concat($firsttoken,$secondtoken)"></xsl:variable>

    <HHUrl>http://SomeHardCodedString1/<xsl:if test="$secondtoken!=''"><xsl:value-of select="$thirdtoken"/></xsl:if><xsl:if test="$secondtoken=''"><xsl:value-of select="substring-before($firsttoken,'/')"/></xsl:if>/SomeHardCodedString2</HHUrl>

</xsl:template>

<xsl:template match="//serverredirectedurl[ancestor::Result[isdocument[.='True']]]">
    <xsl:variable name="url" select="../url"></xsl:variable>
    <xsl:variable name="firsttoken" select="concat(substring-before(substring-after($url,'library/'),'/'),'/')"></xsl:variable>
    <xsl:variable name="secondtoken" select="substring-before(substring-after($url,$firsttoken),'/')"></xsl:variable>
    <xsl:variable name="thirdtoken" select="concat($firsttoken,$secondtoken)"></xsl:variable>

    <serverredirectedurl>http://SomeHardCodedString1/<xsl:if test="$secondtoken!=''"><xsl:value-of select="$thirdtoken"/></xsl:if><xsl:if test="$secondtoken=''"><xsl:value-of select="substring-before($firsttoken,'/')"/></xsl:if>/SomeHardCodedString2</serverredirectedurl>

</xsl:template>
于 2013-09-26T02:54:22.357 に答える