Uploaded image for project: 'CMS'
  1. CMS
  2. CMS-242

Puces dans xml2html

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Major Major
    • 2.0.7
    • 2.0 M2
    • Skins
    • None
    • Operating System: Windows XP
      Platform: PC

      Bug trouvé par nicolas
      les li imbriqués marchent pas.
      Comme j'avais corrigé un truc similaire faut simplement vérifié s'il n'est pas
      parti d'une version non corrigée.

      avant :
      <xsl:template match="listitem" mode="ordered">
      <li>
      <xsl:apply-templates mode="listitem"/>
      </li>
      </xsl:template>

      après :

      <xsl:template match="listitem" mode="ordered">
      <xsl:choose>
      <xsl:when test="itemizedlist|orderedlist">
      <xsl:apply-templates select="itemizedlist|orderedlist"/>
      </xsl:when>
      <xsl:otherwise>
      <li>
      <xsl:apply-templates mode="listitem"/>
      </li>
      </xsl:otherwise>
      </xsl:choose>
      </xsl:template>

            raphael Raphaël Franchet
            raphael Raphaël Franchet
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: