Tema: Xsl
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/08/2002, 03:43
Melissa
 
Fecha de Ingreso: abril-2002
Mensajes: 161
Antigüedad: 22 años, 1 mes
Puntos: 0
Re: Xsl

Ups! que fallo, se me olvidó poner el código!

Código:
 
<TD valign="top" align="left" colspan="2">
  <A>
    <xsl:choose>
      <xsl:when test="a:propstat/a:prop[attributes:ShortcutTarget != '']">
        <xsl:attribute name="href">
          <xsl:value-of select="dav:propstat/dav:prop/attributes:ShortcutTarget"/>
        </xsl:attribute>
      </xsl:when>
    <xsl:otherwise>
      <xsl:attribute name="href">
        <xsl:value-of select="dav:propstat/dav:prop/dav:href"/>
      </xsl:attribute>
    </xsl:otherwise>
  </xsl:choose>
  <xsl:choose>
    <xsl:when test="a:propstat/a:prop[office:Title != '']">
      <B><xsl:value-of select="dav:propstat/dav:prop/office:Title"/></B>
    </xsl:when>
    <xsl:otherwise>
      <B><xsl:value-of select="dav:propstat/dav:prop/dav:displayname"/></B>
    </xsl:otherwise>
  </xsl:choose>
  </A>
</TD>
Gracias de Nuevo