/ .. / / -> download
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

  <xsl:param name="fix-alts-refs"/>

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

  <xsl:template match="assocWarningMalfunctionAlts|
                       bitMessageAlts|
                       commonInfoDescrParaAlts|
                       correlatedFaultAlts|
                       detectedFaultAlts|
                       dialogAlts|
                       dmNodeAlts|
                       dmSeqAlts|
                       electricalEquipAlts|
                       figureAlts|
                       harnessAlts|
                       isolatedFaultAlts|
                       isolationProcedureEndAlts|
                       isolationStepAlts|
                       levelledParaAlts|
                       messageAlts|
                       multimediaAlts|
                       observedFaultAlts|
                       proceduralStepAlts|
                       taskDefinitionAlts|
                       warningMalfunctionAlts|
                       wireAlts">
    <xsl:choose>
      <xsl:when test="count(*) = 1">
        <xsl:for-each select="*">
          <xsl:copy>
            <xsl:apply-templates select="parent::*/@id|@*[name() != 'id']|node()"/>
          </xsl:copy>
        </xsl:for-each>
      </xsl:when>
      <xsl:otherwise>
        <xsl:copy>
          <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>

  <xsl:template match="internalRef/@internalRefTargetType">
    <xsl:choose>
      <xsl:when test="$fix-alts-refs">
        <xsl:variable name="id" select="parent::internalRef/@internalRefId"/>
        <xsl:variable name="target" select="//*[@id=$id]"/>
        <xsl:attribute name="internalRefTargetType">
          <xsl:choose>
            <xsl:when test="$target/self::figureAlts">irtt01</xsl:when>
            <xsl:when test="$target/self::multimediaAlts">irtt03</xsl:when>
            <xsl:when test="$target/self::levelledParaAlts">irtt07</xsl:when>
            <xsl:when test="$target/self::proceduralStepAlts|$target/self::isolationStepAlts|$target/self::isolationProcedureEndAlts">irtt08</xsl:when>
          </xsl:choose>
        </xsl:attribute>
      </xsl:when>
      <xsl:otherwise>
        <xsl:copy>
          <xsl:apply-templates/>
        </xsl:copy>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>

</xsl:stylesheet>


/ gopher://khzae.net/0/s1kd/s1kd-tools/src/tools/s1kd-instance/xsl/flatten-alts.xsl
Styles: Light Dark Classic