![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
30/04/2004, 02:58
|
![Avatar de Helbira](http://static.forosdelweb.com/customavatars/avatar6439_3.gif) | | | Fecha de Ingreso: octubre-2001 Ubicación: Sevilla, España
Mensajes: 1.228
Antigüedad: 23 años, 3 meses Puntos: 5 | |
<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<title>
<xsl:apply-templates select="/procesos/titulo"/>
</title>
</head>
<body>
<P>
<B>
<xsl:apply-templates select="/procesos/titulo"/>
</B>
</P>
<table border="1">
<TR>
<TD>Regional</TD>
<TD>Línea</TD>
<TD>Numero</TD>
<TD>Responsable</TD>
<TD>Objetivo</TD>
<TD>Online</TD>
<TD>BD</TD>
<TD>Ejecutor</TD>
<TD>Observación</TD>
</TR>
<xsl:for-each select="*/proceso">
<tr>
<td>
<xsl:value-of select="regional/@nombre"/>
</td>
<td>
<xsl:value-of select="@linea"/>
</td>
<td>
<xsl:value-of select="@numero"/>
</td>
<td>
<xsl:value-of select="responsable"/>
</td>
<td>
<xsl:value-of select="objetivo"/>
</td>
<td> <table border="0">
<xsl:for-each select="regional/bd/online">
<tr>
<td>
<xsl:value-of select="@name"/>
</td>
</tr>
</xsl:for-each>
</table> </td>
<td>
<xsl:value-of select="regional/bd/@name"/>
</td>
<td>
<xsl:value-of select="regional/ejecutor"/>
</td>
<td>
</td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet> |