Cómo funciona la Web
Capítulo 6 XML: Transformando la Web en una Base de Datos 82 <?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl=" http://www.w3.org/1999/XSL/Transform "> <xsl:template match="/"> <html> <body bgcolor="#FFFFFF"> <center> <h2> <xsl:applytemplates select="/libreria/nombre"/> </h2> </center> <ul> <xsl:applytemplates select="/libreria/libro"/> </ul> </body> </html> </xsl:template> <xsl:template match="/libreria/nombre"> <xsl:valueof select="."/> </xsl:template> <xsl:template match="/libreria/libro"> ... </xsl:template> ... </xsl:stylesheet> Figura 6.1: Reglas XSLT para transformar un documento XML en HTML.
Made with FlippingBook
RkJQdWJsaXNoZXIy Mzc3MTg=