Обтекание всех элементов атрибутом href с использованием XSLT - PullRequest
2 голосов
/ 17 августа 2011

Я хочу обернуть любой тег, содержащий атрибут href, в тег .

например.

<img src="someimage.jpg" href="someurl.xml"/>

станет:

<a href="someurl.xml"><img src="someimage.jpg"/></a>

Ответы [ 2 ]

3 голосов
/ 17 августа 2011
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="yes"/>
    <!--standard identity template that just copies content -->
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>

    <!--For every element that has an href attribute-->
    <xsl:template match="*[@href]">
     <!--create an anchor element and an href attribute 
          with the value of the matched element's href attribute-->
        <a href="{@href}">
                   <!--then copy the matched element -->
            <xsl:copy>
                         <!--then apply templates (which will either match the 
                              identity template above or this template,
                              if any child elements have href attributes) -->
                <xsl:apply-templates select="@*|node()"/>
            </xsl:copy>
        </a>
    </xsl:template>

    <!--redact the href attribute-->
    <xsl:template match="*/@href"/>
</xsl:stylesheet>
0 голосов
/ 17 августа 2011

Это преобразование :

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

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

 <xsl:template match="*[@href]">
  <a href="{@href}">
   <xsl:copy>
     <xsl:apply-templates select=
         "node()|@*[not(name()='href')]"/>
   </xsl:copy>
  </a>
 </xsl:template>
</xsl:stylesheet>

при применении к предоставленному документу XML :

<img src="someimage.jpg" href="someurl.xml"/>

дает именно нужный, правильный результат (в отличие от другого ответа):

<a href="someurl.xml">
   <img src="someimage.jpg"/>
</a>

Объяснение : Правило идентификации , переопределено для любого элемента, имеющего атрибут href.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...