feat(ch 6 & 7): added
@@ -49,7 +49,7 @@
|
|||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body body onload="loadBooks()">
|
<body onload="loadBooks()">
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
<table id="booksTable" border="1" width="100%">
|
<table id="booksTable" border="1" width="100%">
|
||||||
|
|||||||
@@ -0,0 +1,60 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||||
|
<xsl:output method="html" encoding="iso-8859-1"/>
|
||||||
|
|
||||||
|
<xsl:template match="/celebracion">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title><xsl:value-of select="@name"/></title>
|
||||||
|
<xsl:call-template name="css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="menu">
|
||||||
|
<h1>Platos</h1>
|
||||||
|
<xsl:for-each select="plato">
|
||||||
|
<xsl:sort select="." order="ascending"/>
|
||||||
|
<p style="font-weight: bolder">
|
||||||
|
<xsl:value-of select="."/>
|
||||||
|
</p>
|
||||||
|
</xsl:for-each>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="espirituosas">
|
||||||
|
<h1>Espirituosas</h1>
|
||||||
|
<xsl:apply-templates select="bebida">
|
||||||
|
<xsl:sort select="@nombre" order="ascending"/>
|
||||||
|
</xsl:apply-templates>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
|
||||||
|
<xsl:template match="bebida">
|
||||||
|
<p style="font-weight: bolder">
|
||||||
|
<xsl:value-of select="@nombre"/>
|
||||||
|
</p>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template name="css">
|
||||||
|
<style>
|
||||||
|
body{
|
||||||
|
background: red;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="navidad.xsl" ?>
|
||||||
|
<celebracion name="Comida Navidad">
|
||||||
|
<menu>
|
||||||
|
<plato>Patatas bravas</plato>
|
||||||
|
<plato>Entrecot ternera 1ª</plato>
|
||||||
|
<plato>Danonino</plato>
|
||||||
|
</menu>
|
||||||
|
<espirituosas>
|
||||||
|
<bebida nombre="licor de hierbas"/>
|
||||||
|
<bebida nombre="Cocacola Zero"/>
|
||||||
|
<bebida nombre="Fanta naranja"/>
|
||||||
|
</espirituosas>
|
||||||
|
</celebracion>
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<biblioteca>
|
||||||
|
<libro>
|
||||||
|
<titulo>La vida está en otra parte</titulo>
|
||||||
|
<autor>Milan Kundera</autor>
|
||||||
|
<fechaPublicacion año="1973"/>
|
||||||
|
</libro>
|
||||||
|
<libro>
|
||||||
|
<titulo>Pantaleón y las visitadoras</titulo>
|
||||||
|
<autor fechaNacimiento="28/03/1936">Mario Vargas Llosa</autor>
|
||||||
|
<fechaPublicacion año="1973"/>
|
||||||
|
</libro>
|
||||||
|
<libro>
|
||||||
|
<titulo>Conversación en la catedral</titulo>
|
||||||
|
<autor fechaNacimiento="28/03/1936">Mario Vargas Llosa</autor>
|
||||||
|
<fechaPublicacion año="1969"/>
|
||||||
|
</libro>
|
||||||
|
</biblioteca>
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="datosPersonales.xsl"?>
|
||||||
|
|
||||||
|
<!-- Realiza una transformación XSL de este fichero XML en un fichero HTML.
|
||||||
|
Es obligatorio utilizar <xsl:apply-templates>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<alumno dni="111">
|
||||||
|
<nombre>Juan Garcia</nombre>
|
||||||
|
<direccion>
|
||||||
|
<calle>Avenida de la Fuente</calle>
|
||||||
|
<numero>6</numero>
|
||||||
|
<ciudad>Zafra</ciudad>
|
||||||
|
<provincia>Badajoz</provincia>
|
||||||
|
</direccion>
|
||||||
|
<telefono>924555555</telefono>
|
||||||
|
</alumno>
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="xml-xsd-ejercicio2.xsl"?>
|
||||||
|
<ordenadores>
|
||||||
|
<ordenador>
|
||||||
|
<procesador generacion="séptima">Intel I7</procesador>
|
||||||
|
<RAM>
|
||||||
|
<tipo>DDR3</tipo>
|
||||||
|
<capacidad>16GB</capacidad>
|
||||||
|
</RAM>
|
||||||
|
<ROM>
|
||||||
|
<tipo>Tipo1</tipo>
|
||||||
|
<capacidad>128MB</capacidad>
|
||||||
|
</ROM>
|
||||||
|
<HDD>
|
||||||
|
<tipo>SSD</tipo>
|
||||||
|
<capacidad>2TB</capacidad>
|
||||||
|
</HDD>
|
||||||
|
<transporte>
|
||||||
|
<localidad fechaSalida="01/01/2019">Madrid</localidad>
|
||||||
|
<localidad fechaSalida="05/01/2019">Jaén</localidad>
|
||||||
|
<localidad fechaSalida="06/01/2019">Lucena</localidad>
|
||||||
|
</transporte>
|
||||||
|
</ordenador>
|
||||||
|
<ordenador>
|
||||||
|
<procesador generacion="sexta">Intel I5</procesador>
|
||||||
|
<RAM>
|
||||||
|
<tipo>DDR2</tipo>
|
||||||
|
<capacidad>8GB</capacidad>
|
||||||
|
</RAM>
|
||||||
|
<ROM>
|
||||||
|
<tipo>Tipo3</tipo>
|
||||||
|
<capacidad>256MB</capacidad>
|
||||||
|
</ROM>
|
||||||
|
<HDD>
|
||||||
|
<tipo>Mecánico</tipo>
|
||||||
|
<capacidad>4TB</capacidad>
|
||||||
|
</HDD>
|
||||||
|
|
||||||
|
<transporte>
|
||||||
|
<localidad fechaSalida="01/12/2018">Madrid</localidad>
|
||||||
|
<localidad fechaSalida="05/12/2018">Pontevedra</localidad>
|
||||||
|
<localidad fechaSalida="06/12/2018">A Chamusca</localidad>
|
||||||
|
</transporte>
|
||||||
|
</ordenador>
|
||||||
|
</ordenadores>
|
||||||
@@ -0,0 +1,51 @@
|
|||||||
|
<?xml-stylesheet type="text/xsl" href="solucion-ejercicio3.xsl"?>
|
||||||
|
<factura n_fac="f999">
|
||||||
|
<datos_empresa>
|
||||||
|
<nombre>Equipos Digitales S.L.</nombre>
|
||||||
|
<dir>Av. Valladolid</dir>
|
||||||
|
<poblacion cod_postal="28043">Madrid</poblacion>
|
||||||
|
<provincia>Madrid</provincia>
|
||||||
|
<cif>Q-9876543</cif>
|
||||||
|
<telefono/>
|
||||||
|
</datos_empresa>
|
||||||
|
<datos_cliente n_cli="c879" >
|
||||||
|
<nombre>Darío, Bueno Gutiérrez</nombre>
|
||||||
|
<dir_env>Av. Oporto nº7 4ºd</dir_env>
|
||||||
|
<poblacion cod_postal="28043">Madrid</poblacion>
|
||||||
|
<provincia>Madrid</provincia>
|
||||||
|
</datos_cliente>
|
||||||
|
<datos_factura n_ped="p731" iva="16" f_pago= "efectivo" moneda="euro" >
|
||||||
|
<fecha>12-01-2005</fecha>
|
||||||
|
<linea>
|
||||||
|
<ref>MII93000F/8</ref>
|
||||||
|
<desc>MICRO PENTIUM IV 3000MHZ FB800</desc>
|
||||||
|
<cant>1</cant>
|
||||||
|
<precio>230</precio>
|
||||||
|
<importe>266,80</importe>
|
||||||
|
</linea>
|
||||||
|
<linea>
|
||||||
|
<ref>MB8QDIP4</ref>
|
||||||
|
<desc>PLACA BASE QDI P4</desc>
|
||||||
|
<cant>1</cant>
|
||||||
|
<precio>180</precio>
|
||||||
|
<importe>208,80</importe>
|
||||||
|
</linea>
|
||||||
|
<linea>
|
||||||
|
<ref>MEDD512M32</ref>
|
||||||
|
<desc>DIMM DDR 512MB 3200</desc>
|
||||||
|
<cant>2</cant>
|
||||||
|
<precio>40</precio>
|
||||||
|
<importe>92,80</importe>
|
||||||
|
</linea>
|
||||||
|
<linea>
|
||||||
|
<ref>HD250GSA7</ref>
|
||||||
|
<desc>DISCO DURO 250GB S-ATA 7200</desc>
|
||||||
|
<cant>4</cant>
|
||||||
|
<precio>120</precio>
|
||||||
|
<importe>556,80</importe>
|
||||||
|
</linea>
|
||||||
|
<base>970,00</base>
|
||||||
|
<cuota_iva>155,20</cuota_iva>
|
||||||
|
<total>1125,20</total>
|
||||||
|
</datos_factura>
|
||||||
|
</factura>
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet href="gormiti-ap-b.xsl" type="text/xsl"?>
|
||||||
|
<gormitis>
|
||||||
|
<gormiti tribu="volcan">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2014-enero/gormitis/volcan.png</gormiti>
|
||||||
|
<gormiti tribu="agua">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2014-enero/gormitis/agua.png</gormiti>
|
||||||
|
<gormiti tribu="aire">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2014-enero/gormitis/aire.jpg</gormiti>
|
||||||
|
<gormiti tribu="bosque">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2014-enero/gormitis/bosque.png</gormiti>
|
||||||
|
<gormiti tribu="montana">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2014-enero/gormitis/montana.jpg</gormiti>
|
||||||
|
<tablero url="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2014-enero/gormitis/islagorm.jpg">
|
||||||
|
<gormitiEnMapa x="2" y="1" tribu="volcan"/>
|
||||||
|
<gormitiEnMapa x="1" y="2" tribu="agua"/>
|
||||||
|
<gormitiEnMapa x="1" y="0" tribu="aire"/>
|
||||||
|
<gormitiEnMapa x="0" y="1" tribu="bosque"/>
|
||||||
|
<gormitiEnMapa x="2" y="2" tribu="montana"/>
|
||||||
|
</tablero>
|
||||||
|
</gormitis>
|
||||||
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 281 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 9.0 KiB |
|
After Width: | Height: | Size: 9.7 KiB |
@@ -0,0 +1,93 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet href="tanques-ap-b.xsl" type="text/xsl"?>
|
||||||
|
|
||||||
|
<juegoTanques>
|
||||||
|
<jugadasDescritas>
|
||||||
|
<jugada jugador="1" desc="Comienzo del juego moviendo hacía arriba"></jugada>
|
||||||
|
<jugada jugador="2" desc="Comienzo del juego moviendo hacía abajo"></jugada>
|
||||||
|
<jugada jugador="1" desc="Movimiento hacía arriba"></jugada>
|
||||||
|
<jugada jugador="2" desc="Movimiento hacía abajo"></jugada>
|
||||||
|
<jugada jugador="1" desc="Movimiento hacía arriba"></jugada>
|
||||||
|
<jugada jugador="2" desc="Movimiento hacía abajo"></jugada>
|
||||||
|
<jugada jugador="1" desc="Movimiento hacía arriba"></jugada>
|
||||||
|
<jugada jugador="2" desc="Movimiento hacía abajo"></jugada>
|
||||||
|
<jugada jugador="1" desc="Movimiento hacía derecha"></jugada>
|
||||||
|
<jugada jugador="2" desc="Movimiento hacía izquierda"></jugada>
|
||||||
|
</jugadasDescritas>
|
||||||
|
<tanques>
|
||||||
|
<imagenTanque jugador="1">http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/tanque1.jpg</imagenTanque>
|
||||||
|
<imagenTanque jugador="2">http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/tanque2.jpg</imagenTanque>
|
||||||
|
</tanques>
|
||||||
|
<jugadasGraficas>
|
||||||
|
<jugadaGrafica>
|
||||||
|
<posicion y="5" x="1" tipo="tanque" jugador="1"/>
|
||||||
|
<posicion y="4" x="8" tipo="tanque" jugador="2"/>
|
||||||
|
<posicion y="3" x="2" tipo="pared"/>
|
||||||
|
<posicion y="3" x="3" tipo="pared"/>
|
||||||
|
<posicion y="4" x="3" tipo="pared"/>
|
||||||
|
<posicion y="5" x="3" tipo="pared"/>
|
||||||
|
<posicion y="6" x="3" tipo="pared"/>
|
||||||
|
<posicion y="3" x="6" tipo="pared"/>
|
||||||
|
<posicion y="4" x="6" tipo="pared"/>
|
||||||
|
<posicion y="5" x="6" tipo="pared"/>
|
||||||
|
<posicion y="6" x="6" tipo="pared"/>
|
||||||
|
<posicion y="6" x="7" tipo="pared"/>
|
||||||
|
</jugadaGrafica>
|
||||||
|
<jugadaGrafica>
|
||||||
|
<posicion y="4" x="1" tipo="tanque" jugador="1"/>
|
||||||
|
<posicion y="5" x="8" tipo="tanque" jugador="2"/>
|
||||||
|
<posicion y="3" x="2" tipo="pared"/>
|
||||||
|
<posicion y="3" x="3" tipo="pared"/>
|
||||||
|
<posicion y="4" x="3" tipo="pared"/>
|
||||||
|
<posicion y="5" x="3" tipo="pared"/>
|
||||||
|
<posicion y="6" x="3" tipo="pared"/>
|
||||||
|
<posicion y="3" x="6" tipo="pared"/>
|
||||||
|
<posicion y="4" x="6" tipo="pared"/>
|
||||||
|
<posicion y="5" x="6" tipo="pared"/>
|
||||||
|
<posicion y="6" x="6" tipo="pared"/>
|
||||||
|
<posicion y="6" x="7" tipo="pared"/>
|
||||||
|
</jugadaGrafica>
|
||||||
|
<jugadaGrafica>
|
||||||
|
<posicion y="3" x="1" tipo="tanque" jugador="1"/>
|
||||||
|
<posicion y="6" x="8" tipo="tanque" jugador="2"/>
|
||||||
|
<posicion y="3" x="2" tipo="pared"/>
|
||||||
|
<posicion y="3" x="3" tipo="pared"/>
|
||||||
|
<posicion y="4" x="3" tipo="pared"/>
|
||||||
|
<posicion y="5" x="3" tipo="pared"/>
|
||||||
|
<posicion y="6" x="3" tipo="pared"/>
|
||||||
|
<posicion y="3" x="6" tipo="pared"/>
|
||||||
|
<posicion y="4" x="6" tipo="pared"/>
|
||||||
|
<posicion y="5" x="6" tipo="pared"/>
|
||||||
|
<posicion y="6" x="6" tipo="pared"/>
|
||||||
|
<posicion y="6" x="7" tipo="pared"/>
|
||||||
|
</jugadaGrafica>
|
||||||
|
<jugadaGrafica>
|
||||||
|
<posicion y="2" x="1" tipo="tanque" jugador="1"/>
|
||||||
|
<posicion y="7" x="8" tipo="tanque" jugador="2"/>
|
||||||
|
<posicion y="3" x="2" tipo="pared"/>
|
||||||
|
<posicion y="3" x="3" tipo="pared"/>
|
||||||
|
<posicion y="4" x="3" tipo="pared"/>
|
||||||
|
<posicion y="5" x="3" tipo="pared"/>
|
||||||
|
<posicion y="6" x="3" tipo="pared"/>
|
||||||
|
<posicion y="3" x="6" tipo="pared"/>
|
||||||
|
<posicion y="4" x="6" tipo="pared"/>
|
||||||
|
<posicion y="5" x="6" tipo="pared"/>
|
||||||
|
<posicion y="6" x="6" tipo="pared"/>
|
||||||
|
<posicion y="6" x="7" tipo="pared"/>
|
||||||
|
</jugadaGrafica>
|
||||||
|
<jugadaGrafica>
|
||||||
|
<posicion y="2" x="2" tipo="tanque" jugador="1"/>
|
||||||
|
<posicion y="7" x="7" tipo="tanque" jugador="2"/>
|
||||||
|
<posicion y="3" x="2" tipo="pared"/>
|
||||||
|
<posicion y="3" x="3" tipo="pared"/>
|
||||||
|
<posicion y="4" x="3" tipo="pared"/>
|
||||||
|
<posicion y="5" x="3" tipo="pared"/>
|
||||||
|
<posicion y="6" x="3" tipo="pared"/>
|
||||||
|
<posicion y="3" x="6" tipo="pared"/>
|
||||||
|
<posicion y="4" x="6" tipo="pared"/>
|
||||||
|
<posicion y="5" x="6" tipo="pared"/>
|
||||||
|
<posicion y="6" x="6" tipo="pared"/>
|
||||||
|
<posicion y="6" x="7" tipo="pared"/>
|
||||||
|
</jugadaGrafica>
|
||||||
|
</jugadasGraficas>
|
||||||
|
</juegoTanques>
|
||||||
@@ -0,0 +1,110 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
|
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
|
<title>El mundo yesterday</title><style type="text/css">
|
||||||
|
body {
|
||||||
|
font-family: Arial;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol, ul
|
||||||
|
{
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-left: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#menu li
|
||||||
|
{
|
||||||
|
margin-left: 0px;
|
||||||
|
display: inline;
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 10px 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.noticia {
|
||||||
|
/* border: #000 solid 1px; */
|
||||||
|
padding: 10px 5px;
|
||||||
|
float: left;
|
||||||
|
width: 338px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.noticia img {
|
||||||
|
width: 338px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.noticiaDobleAncho {
|
||||||
|
/* border: #000 solid 1px; */
|
||||||
|
padding: 10px 5px;
|
||||||
|
float: left;
|
||||||
|
width: 690px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.noticiaDobleAncho img {
|
||||||
|
width: 690px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fechaNoticia {
|
||||||
|
color: #A3A34B;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comentariosNoticia {
|
||||||
|
color: #A3A34B;
|
||||||
|
padding-left: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.divPublicidad {
|
||||||
|
/* border: #000 solid 1px; */
|
||||||
|
padding: 10px 5px;
|
||||||
|
float: right;
|
||||||
|
width: 280px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.divPublicidad img {
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
</style></head>
|
||||||
|
<body>
|
||||||
|
<div style="width: 1000px; margin: 0 auto;">
|
||||||
|
<div style="width: 1000px;"><img src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/el-mundo-yesterday.jpg" width="997" height="115"></div>
|
||||||
|
<div id="menu" style="width: 1000px; margin: 0px; padding: 0px;">
|
||||||
|
<ul>
|
||||||
|
<li style="background:#DDE640;"><a href="#">Nacional</a></li>
|
||||||
|
<li style="background:orange;"><a href="#">Internacional</a></li>
|
||||||
|
<li style="background:#DDE640;"><a href="#">Sociedad</a></li>
|
||||||
|
<li style="background:orange;"><a href="#">Cultura</a></li>
|
||||||
|
<li style="background:#DDE640;"><a href="#">Ciencia</a></li>
|
||||||
|
<li style="background:orange;"><a href="#">Deportes</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div style="width: 700px; float: left;">
|
||||||
|
<div class="noticiaDobleAncho">
|
||||||
|
<h2>Señora de Badajoz confunde a todos los hombres negros con Morgan Freeman</h2>
|
||||||
|
<h4>"Está en todos los saraos este hombre" - dice la señora</h4><img src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/badajoz.jpg"><br><span class="fechaNoticia">Publicado el
|
||||||
|
22 de febrero</span><span class="comentariosNoticia">10 comentarios
|
||||||
|
</span></div>
|
||||||
|
<div class="noticia">
|
||||||
|
<h2>El Observatorio de la Mujer controlará a Uma Thurman vía satélite para detectar el menor cambio en su aspecto</h2>
|
||||||
|
<h4>El rostro de la actriz ya es la primera preocupación de los españoles por encima del paro y el terrorismo</h4><img src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/umagumma.jpg"><br><span class="fechaNoticia">Publicado el
|
||||||
|
21 de febrero</span><span class="comentariosNoticia">13 comentarios
|
||||||
|
</span></div>
|
||||||
|
<div class="noticia">
|
||||||
|
<h2>Aumenta la producción de uvas gigantes para esas botellas de vino gigantes que hay en los restaurantes</h2>
|
||||||
|
<h4>Los decantadores son hormigoneras</h4><img src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/uvasgigantes.jpg"><br><span class="fechaNoticia">Publicado el
|
||||||
|
20 de febrero</span><span class="comentariosNoticia">20 comentarios
|
||||||
|
</span></div>
|
||||||
|
<div class="noticiaDobleAncho">
|
||||||
|
<h2>Un cirujano interrumpe un transplante de corazón para ver un videotutorial sobre transplantes de corazón</h2>
|
||||||
|
<h4>También buscó trucos en Youtube para comunicar el fallecimiento</h4><img src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/transplante.png"><br><span class="fechaNoticia">Publicado el
|
||||||
|
19 de febrero</span><span class="comentariosNoticia">20 comentarios
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
<div style="width: 295px; float: right;">
|
||||||
|
<div class="divPublicidad"><img width="280px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/publi-sanitas.png"></div>
|
||||||
|
<div class="divPublicidad"><img width="280px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/publi-arriba.png"></div>
|
||||||
|
<div class="divPublicidad"><img width="280px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/publi-sofa.png"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet href="elmundoyesterday.xsl" type="text/xsl"?>
|
||||||
|
<periodico nombre="El mundo yesterday" logo="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/el-mundo-yesterday.jpg">
|
||||||
|
<menu>
|
||||||
|
<enlace href="#">Nacional</enlace>
|
||||||
|
<enlace href="#">Internacional</enlace>
|
||||||
|
<enlace href="#">Sociedad</enlace>
|
||||||
|
<enlace href="#">Cultura</enlace>
|
||||||
|
<enlace href="#">Ciencia</enlace>
|
||||||
|
<enlace href="#">Deportes</enlace>
|
||||||
|
</menu>
|
||||||
|
<noticias>
|
||||||
|
<noticia dobleAncho="s" fecha="22 de febrero" comentarios="10" imagen="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/badajoz.jpg">
|
||||||
|
<titular>Señora de Badajoz confunde a todos los hombres negros con Morgan Freeman</titular>
|
||||||
|
<subtitular>"Está en todos los saraos este hombre" - dice la señora</subtitular>
|
||||||
|
</noticia>
|
||||||
|
<noticia dobleAncho="n" fecha="21 de febrero" comentarios="13" imagen="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/umagumma.jpg">
|
||||||
|
<titular>El Observatorio de la Mujer controlará a Uma Thurman vía satélite para detectar el menor cambio en su aspecto</titular>
|
||||||
|
<subtitular>El rostro de la actriz ya es la primera preocupación de los españoles por encima del paro y el terrorismo</subtitular>
|
||||||
|
</noticia>
|
||||||
|
<noticia dobleAncho="n" fecha="20 de febrero" comentarios="20" imagen="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/uvasgigantes.jpg">
|
||||||
|
<titular>Aumenta la producción de uvas gigantes para esas botellas de vino gigantes que hay en los restaurantes</titular>
|
||||||
|
<subtitular>Los decantadores son hormigoneras</subtitular>
|
||||||
|
</noticia>
|
||||||
|
<noticia dobleAncho="s" fecha="19 de febrero" comentarios="20" imagen="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/transplante.png">
|
||||||
|
<titular>Un cirujano interrumpe un transplante de corazón para ver un videotutorial sobre transplantes de corazón</titular>
|
||||||
|
<subtitular>También buscó trucos en Youtube para comunicar el fallecimiento</subtitular>
|
||||||
|
</noticia>
|
||||||
|
</noticias>
|
||||||
|
<publicidad>
|
||||||
|
<anuncio orden="2" imagen="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/publi-arriba.png"/>
|
||||||
|
<anuncio orden="1" imagen="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/publi-sanitas.png"/>
|
||||||
|
<anuncio orden="3" imagen="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2015-enero/recursos/publi-sofa.png"/>
|
||||||
|
</publicidad>
|
||||||
|
</periodico>
|
||||||
|
After Width: | Height: | Size: 259 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 51 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 125 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 177 KiB |
|
After Width: | Height: | Size: 412 KiB |
|
After Width: | Height: | Size: 264 KiB |
|
After Width: | Height: | Size: 114 KiB |
@@ -0,0 +1,229 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
|
<title></title><style type="text/css">
|
||||||
|
body {
|
||||||
|
font-family: Arial;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol, ul
|
||||||
|
{
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-left: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#menu li
|
||||||
|
{
|
||||||
|
margin-left: 0px;
|
||||||
|
display: inline;
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 10px 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
</style></head>
|
||||||
|
<body>
|
||||||
|
<div style="width: 1000px; margin: 0 auto;">
|
||||||
|
<table border="1">
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td>8:30-9:30</td>
|
||||||
|
<td>9:30-10:30</td>
|
||||||
|
<td>10:30-11:30</td>
|
||||||
|
<td>12:00-13:00</td>
|
||||||
|
<td>13:00-14:00</td>
|
||||||
|
<td>14:00-15:00</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Lunes</td>
|
||||||
|
<td style="background:#b2cfff;">ENT DES</td>
|
||||||
|
<td style="background:#FFFFFF;">PROG</td>
|
||||||
|
<td style="background:#b2cfff;">PROG</td>
|
||||||
|
<td style="background:#FFFFFF;">LMSGI</td>
|
||||||
|
<td style="background:#b2cfff;">SIST INF</td>
|
||||||
|
<td style="background:#FFFFFF;">SIST INF</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Martes</td>
|
||||||
|
<td style="background:#b2cfff;">FOL</td>
|
||||||
|
<td style="background:#FFFFFF;">FOL</td>
|
||||||
|
<td style="background:#b2cfff;">LMSGI</td>
|
||||||
|
<td style="background:#FFFFFF;">ENT DES</td>
|
||||||
|
<td style="background:#b2cfff;">BBDD</td>
|
||||||
|
<td style="background:#FFFFFF;">SIST INF</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Mi<EFBFBD>rcoles</td>
|
||||||
|
<td style="background:#b2cfff;">BBDD</td>
|
||||||
|
<td style="background:#FFFFFF;">BBDD</td>
|
||||||
|
<td style="background:#b2cfff;">ENT DES</td>
|
||||||
|
<td style="background:#FFFFFF;">FOL</td>
|
||||||
|
<td style="background:#b2cfff;">PROG</td>
|
||||||
|
<td style="background:#FFFFFF;">PROG</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Jueves</td>
|
||||||
|
<td style="background:#b2cfff;">BBDD</td>
|
||||||
|
<td style="background:#FFFFFF;">SIST INF</td>
|
||||||
|
<td style="background:#b2cfff;">PROG</td>
|
||||||
|
<td style="background:#FFFFFF;">PROG</td>
|
||||||
|
<td style="background:#b2cfff;">LMSGI</td>
|
||||||
|
<td style="background:#FFFFFF;">LMSGI</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Viernes</td>
|
||||||
|
<td style="background:#b2cfff;">SIST INF</td>
|
||||||
|
<td style="background:#FFFFFF;">SIST INF</td>
|
||||||
|
<td style="background:#b2cfff;">BBDD</td>
|
||||||
|
<td style="background:#FFFFFF;">BBDD</td>
|
||||||
|
<td style="background:#b2cfff;">PROG</td>
|
||||||
|
<td style="background:#FFFFFF;">PROG</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<table border="1">
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Natalia
|
||||||
|
</td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Laura
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#baffc5;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png">Jordi
|
||||||
|
</td>
|
||||||
|
<td style="
 background:#bfd7ff;
 ">ventana</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td style="
 background:#ff543a;
 ">puerta</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Mercedes
|
||||||
|
</td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Araceli
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#baffc5;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png">Willian
|
||||||
|
</td>
|
||||||
|
<td style="
 background:#bfd7ff;
 ">ventana</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="background:#baffc5;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png">Luis
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#baffc5;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png">Justino
|
||||||
|
</td>
|
||||||
|
<td style="background:#baffc5;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png">Jonathan
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#baffc5;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png">Jeremi
|
||||||
|
</td>
|
||||||
|
<td style="
 background:#bfd7ff;
 ">ventana</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Marta
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Paola
|
||||||
|
</td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Alma
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Valeria
|
||||||
|
</td>
|
||||||
|
<td style="
 background:#bfd7ff;
 ">ventana</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Isabel
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Daniela
|
||||||
|
</td>
|
||||||
|
<td style="background:#baffc5;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png">Gorka
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Gema
|
||||||
|
</td>
|
||||||
|
<td style="
 background:#bfd7ff;
 ">ventana</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="background:#baffc5;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png">Tom<EFBFBD>s
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#baffc5;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png">Adolfo
|
||||||
|
</td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Gabriela
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#baffc5;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png">Genaro
|
||||||
|
</td>
|
||||||
|
<td style="
 background:#bfd7ff;
 ">ventana</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="background:#baffc5;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png">Pablo
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#baffc5;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png">Alfonso
|
||||||
|
</td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Roc<EFBFBD>o
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Lourdes
|
||||||
|
</td>
|
||||||
|
<td style="
 background:#bfd7ff;
 ">ventana</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="background:#baffc5;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png">Alfredo
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#baffc5;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png">Juan Pablo
|
||||||
|
</td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Ana
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#baffc5;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png">Ramiro
|
||||||
|
</td>
|
||||||
|
<td style="
 background:#bfd7ff;
 ">ventana</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td style="
 background:#ff543a;
 ">puerta</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td style="background:#fffbd3;"><img width="30px" src="http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png">Rafa
|
||||||
|
</td>
|
||||||
|
<td style="
 background:#bfd7ff;
 ">ventana</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
<td style="
 background:#fccf53;
 ">pared</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,119 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="primerDia1DAW-Ap-c.xsl"?>
|
||||||
|
|
||||||
|
<primerDia1DAW>
|
||||||
|
<horario>
|
||||||
|
<dia desc="Lunes">
|
||||||
|
<hora orden="1">ENT DES</hora>
|
||||||
|
<hora orden="2">PROG</hora>
|
||||||
|
<hora orden="3">PROG</hora>
|
||||||
|
<hora orden="4">LMSGI</hora>
|
||||||
|
<hora orden="5">SIST INF</hora>
|
||||||
|
<hora orden="6">SIST INF</hora>
|
||||||
|
</dia>
|
||||||
|
<dia desc="Martes">
|
||||||
|
<hora orden="1">FOL</hora>
|
||||||
|
<hora orden="2">FOL</hora>
|
||||||
|
<hora orden="3">LMSGI</hora>
|
||||||
|
<hora orden="4">ENT DES</hora>
|
||||||
|
<hora orden="5">BBDD</hora>
|
||||||
|
<hora orden="6">SIST INF</hora>
|
||||||
|
</dia>
|
||||||
|
<dia desc="Miércoles">
|
||||||
|
<hora orden="1">BBDD</hora>
|
||||||
|
<hora orden="3">ENT DES</hora>
|
||||||
|
<hora orden="6">PROG</hora>
|
||||||
|
<hora orden="4">FOL</hora>
|
||||||
|
<hora orden="2">BBDD</hora>
|
||||||
|
<hora orden="5">PROG</hora>
|
||||||
|
</dia>
|
||||||
|
<dia desc="Jueves">
|
||||||
|
<hora orden="4">PROG</hora>
|
||||||
|
<hora orden="1">BBDD</hora>
|
||||||
|
<hora orden="2">SIST INF</hora>
|
||||||
|
<hora orden="5">LMSGI</hora>
|
||||||
|
<hora orden="6">LMSGI</hora>
|
||||||
|
<hora orden="3">PROG</hora>
|
||||||
|
</dia>
|
||||||
|
<dia desc="Viernes">
|
||||||
|
<hora orden="1">SIST INF</hora>
|
||||||
|
<hora orden="3">BBDD</hora>
|
||||||
|
<hora orden="4">BBDD</hora>
|
||||||
|
<hora orden="2">SIST INF</hora>
|
||||||
|
<hora orden="5">PROG</hora>
|
||||||
|
<hora orden="6">PROG</hora>
|
||||||
|
</dia>
|
||||||
|
</horario>
|
||||||
|
<estructuraAula>
|
||||||
|
<bloque x="2" y="3" tipo="puerta"/>
|
||||||
|
<bloque x="2" y="10" tipo="puerta"/>
|
||||||
|
<bloque x="1" y="4" tipo="pared"/>
|
||||||
|
<bloque x="1" y="5" tipo="pared"/>
|
||||||
|
<bloque x="1" y="6" tipo="pared"/>
|
||||||
|
<bloque x="1" y="7" tipo="pared"/>
|
||||||
|
<bloque x="1" y="8" tipo="pared"/>
|
||||||
|
<bloque x="1" y="9" tipo="pared"/>
|
||||||
|
<bloque x="2" y="1" tipo="pared"/>
|
||||||
|
<bloque x="2" y="2" tipo="pared"/>
|
||||||
|
<bloque x="2" y="11" tipo="pared"/>
|
||||||
|
<bloque x="3" y="1" tipo="pared"/>
|
||||||
|
<bloque x="3" y="11" tipo="pared"/>
|
||||||
|
<bloque x="4" y="1" tipo="pared"/>
|
||||||
|
<bloque x="4" y="11" tipo="pared"/>
|
||||||
|
<bloque x="5" y="1" tipo="pared"/>
|
||||||
|
<bloque x="5" y="11" tipo="pared"/>
|
||||||
|
<bloque x="6" y="1" tipo="pared"/>
|
||||||
|
<bloque x="6" y="11" tipo="pared"/>
|
||||||
|
<bloque x="7" y="1" tipo="pared"/>
|
||||||
|
<bloque x="7" y="11" tipo="pared"/>
|
||||||
|
<bloque x="8" y="1" tipo="pared"/>
|
||||||
|
<bloque x="8" y="11" tipo="pared"/>
|
||||||
|
<bloque x="8" y="2" tipo="ventana"/>
|
||||||
|
<bloque x="8" y="3" tipo="ventana"/>
|
||||||
|
<bloque x="8" y="4" tipo="ventana"/>
|
||||||
|
<bloque x="8" y="5" tipo="ventana"/>
|
||||||
|
<bloque x="8" y="6" tipo="ventana"/>
|
||||||
|
<bloque x="8" y="7" tipo="ventana"/>
|
||||||
|
<bloque x="8" y="8" tipo="ventana"/>
|
||||||
|
<bloque x="8" y="9" tipo="ventana"/>
|
||||||
|
<bloque x="8" y="10" tipo="ventana"/>
|
||||||
|
<color tipo="puerta">ff543a</color>
|
||||||
|
<color tipo="pared">fccf53</color>
|
||||||
|
<color tipo="ventana">bfd7ff</color>
|
||||||
|
</estructuraAula>
|
||||||
|
<alumnado>
|
||||||
|
<alumno sexo="H" x="2" y="4">Luis</alumno>
|
||||||
|
<alumno sexo="M" x="2" y="5">Marta</alumno>
|
||||||
|
<alumno sexo="M" x="2" y="6">Isabel</alumno>
|
||||||
|
<alumno sexo="H" x="2" y="7">Tomás</alumno>
|
||||||
|
<alumno sexo="H" x="2" y="8">Pablo</alumno>
|
||||||
|
<alumno sexo="H" x="2" y="9">Alfredo</alumno>
|
||||||
|
<alumno sexo="M" x="4" y="2">Natalia</alumno>
|
||||||
|
<alumno sexo="M" x="4" y="3">Mercedes</alumno>
|
||||||
|
<alumno sexo="H" x="4" y="4">Justino</alumno>
|
||||||
|
<alumno sexo="M" x="4" y="5">Paola</alumno>
|
||||||
|
<alumno sexo="M" x="4" y="6">Daniela</alumno>
|
||||||
|
<alumno sexo="H" x="4" y="7">Adolfo</alumno>
|
||||||
|
<alumno sexo="H" x="4" y="8">Alfonso</alumno>
|
||||||
|
<alumno sexo="H" x="4" y="9">Juan Pablo</alumno>
|
||||||
|
<alumno sexo="M" x="5" y="2">Laura</alumno>
|
||||||
|
<alumno sexo="M" x="5" y="3">Araceli</alumno>
|
||||||
|
<alumno sexo="H" x="5" y="4">Jonathan</alumno>
|
||||||
|
<alumno sexo="M" x="5" y="5">Alma</alumno>
|
||||||
|
<alumno sexo="H" x="5" y="6">Gorka</alumno>
|
||||||
|
<alumno sexo="M" x="5" y="7">Gabriela</alumno>
|
||||||
|
<alumno sexo="M" x="5" y="8">Rocío</alumno>
|
||||||
|
<alumno sexo="M" x="5" y="9">Ana</alumno>
|
||||||
|
<alumno sexo="H" x="7" y="2">Jordi</alumno>
|
||||||
|
<alumno sexo="H" x="7" y="3">Willian</alumno>
|
||||||
|
<alumno sexo="H" x="7" y="4">Jeremi</alumno>
|
||||||
|
<alumno sexo="M" x="7" y="5">Valeria</alumno>
|
||||||
|
<alumno sexo="M" x="7" y="6">Gema</alumno>
|
||||||
|
<alumno sexo="H" x="7" y="7">Genaro</alumno>
|
||||||
|
<alumno sexo="M" x="7" y="8">Lourdes</alumno>
|
||||||
|
<alumno sexo="H" x="7" y="9">Ramiro</alumno>
|
||||||
|
<alumno sexo="M" x="7" y="10">Rafa</alumno>
|
||||||
|
<imagen sexo="M">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiMujer.png</imagen>
|
||||||
|
<imagen sexo="H">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-enero/recursos/miiHombre.png</imagen>
|
||||||
|
</alumnado>
|
||||||
|
</primerDia1DAW>
|
||||||
|
After Width: | Height: | Size: 76 KiB |
|
After Width: | Height: | Size: 89 KiB |
|
After Width: | Height: | Size: 75 KiB |
|
After Width: | Height: | Size: 92 KiB |
@@ -0,0 +1,140 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
|
|
||||||
|
<title>Partido Ap B</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<table width="90%" border="1" align="center" style="background-image: url('recursos/pista.jpg')">
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td><img src="recursos/cbcLucena.png" width="30px">Juan
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td><img src="recursos/Unicaja_CB.png" width="30px">Silvia
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><img src="recursos/cbcLucena.png" width="30px">Tania
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td><img src="recursos/cbcLucena.png" width="30px">Antonio
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td><img src="recursos/Unicaja_CB.png" width="30px">Mar
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td><img src="recursos/Unicaja_CB.png" width="30px">Ainhoa
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td><img src="recursos/cbcLucena.png" width="30px">Jaime
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td><img src="recursos/Unicaja_CB.png" width="30px">Luis
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td><img src="recursos/cbcLucena.png" width="30px">Esther
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td><img src="recursos/Unicaja_CB.png" width="30px">Chicho
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<p></p>
|
||||||
|
<table width="90%" border="1" align="center">
|
||||||
|
<tr>
|
||||||
|
<th>Tiempo</th>
|
||||||
|
<th>Jugador</th>
|
||||||
|
<th>Apodo</th>
|
||||||
|
<th>Imagen</th>
|
||||||
|
<th>Descripción</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>0:12</td>
|
||||||
|
<td>Jaime</td>
|
||||||
|
<td>Arquero</td>
|
||||||
|
<td><img width="30px" src="recursos/canasta.jpg"></td>
|
||||||
|
<td>Entrada a canasta y falta personal</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>0:33</td>
|
||||||
|
<td>Ainhoa</td>
|
||||||
|
<td>Cara de niña</td>
|
||||||
|
<td><img width="30px" src="recursos/canasta.jpg"></td>
|
||||||
|
<td>Triple</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>0:58</td>
|
||||||
|
<td>Antonio</td>
|
||||||
|
<td>Araña</td>
|
||||||
|
<td><img width="30px" src="recursos/falta.jpg"></td>
|
||||||
|
<td>Falta personal</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1:00</td>
|
||||||
|
<td>Chicho</td>
|
||||||
|
<td>Capi</td>
|
||||||
|
<td><img width="30px" src="recursos/canasta.jpg"></td>
|
||||||
|
<td>Dos tiros libres anotados</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1:18</td>
|
||||||
|
<td>Mar</td>
|
||||||
|
<td>Muralla</td>
|
||||||
|
<td><img width="30px" src="recursos/falta.jpg"></td>
|
||||||
|
<td>Falta personal</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2:20</td>
|
||||||
|
<td>Esther</td>
|
||||||
|
<td>Máquina</td>
|
||||||
|
<td><img width="30px" src="recursos/canasta.jpg"></td>
|
||||||
|
<td>Triple</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2:33</td>
|
||||||
|
<td>Juan</td>
|
||||||
|
<td>SuperJuan</td>
|
||||||
|
<td><img width="30px" src="recursos/canasta.jpg"></td>
|
||||||
|
<td>2 puntos</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="partidoBaloncesto-Ap-b.xsl"?>
|
||||||
|
|
||||||
|
<partidoBaloncesto>
|
||||||
|
<equipo tipo="Local" nombre="Baloncesto Lucena 2" imagen="recursos/cbcLucena.png">
|
||||||
|
<jugador nombre="Juan" dorsal="8" apodo="SuperJuan" puntos="14" rebotes="3" asistencias="8" posicionX="2" posicionY="1"/>
|
||||||
|
<jugador nombre="Tania" dorsal="87" apodo="WonderWoman" puntos="18" rebotes="5" asistencias="2" posicionX="1" posicionY="2"/>
|
||||||
|
<jugador nombre="Antonio" dorsal="23" apodo="Araña" puntos="7" rebotes="4" asistencias="2" posicionX="4" posicionY="2"/>
|
||||||
|
<jugador nombre="Jaime" dorsal="32" apodo="Arquero" puntos="13" rebotes="1" asistencias="7" posicionX="5" posicionY="4"/>
|
||||||
|
<jugador nombre="Esther" dorsal="51" apodo="Máquina" puntos="9" rebotes="6" asistencias="6" posicionX="3" posicionY="5"/>
|
||||||
|
</equipo>
|
||||||
|
<equipo tipo="Visitante" nombre="Unicaja Baloncesto" imagen="recursos/Unicaja_CB.png">
|
||||||
|
<jugador nombre="Silvia" dorsal="17" apodo="8 brazos" puntos="8" rebotes="2" asistencias="7" posicionX="7" posicionY="1"/>
|
||||||
|
<jugador nombre="Mar" dorsal="85" apodo="Muralla" puntos="8" rebotes="9" asistencias="3" posicionX="6" posicionY="3"/>
|
||||||
|
<jugador nombre="Ainhoa" dorsal="61" apodo="Cara de niña" puntos="15" rebotes="4" asistencias="3" posicionX="10" posicionY="3"/>
|
||||||
|
<jugador nombre="Luis" dorsal="74" apodo="Cañonero" puntos="12" rebotes="4" asistencias="5" posicionX="8" posicionY="4"/>
|
||||||
|
<jugador nombre="Chicho" dorsal="4" apodo="Capi" puntos="14" rebotes="6" asistencias="4" posicionX="9" posicionY="5"/>
|
||||||
|
</equipo>
|
||||||
|
<historico>
|
||||||
|
<entrada tiempo="0:12" jugador="Jaime" tipo="canasta">Entrada a canasta y falta personal</entrada>
|
||||||
|
<entrada tiempo="0:33" jugador="Ainhoa" tipo="canasta">Triple</entrada>
|
||||||
|
<entrada tiempo="0:58" jugador="Antonio" tipo="falta">Falta personal</entrada>
|
||||||
|
<entrada tiempo="1:00" jugador="Chicho" tipo="canasta">Dos tiros libres anotados</entrada>
|
||||||
|
<entrada tiempo="1:18" jugador="Mar" tipo="falta">Falta personal</entrada>
|
||||||
|
<entrada tiempo="2:20" jugador="Esther" tipo="canasta">Triple</entrada>
|
||||||
|
<entrada tiempo="2:33" jugador="Juan" tipo="canasta">2 puntos</entrada>
|
||||||
|
<imagen tipo="canasta">recursos/canasta.jpg</imagen>
|
||||||
|
<imagen tipo="falta">recursos/falta.jpg</imagen>
|
||||||
|
</historico>
|
||||||
|
<pista>recursos/pista.jpg</pista>
|
||||||
|
</partidoBaloncesto>
|
||||||
|
After Width: | Height: | Size: 45 KiB |
|
After Width: | Height: | Size: 222 KiB |
|
After Width: | Height: | Size: 124 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 98 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 102 KiB |
|
After Width: | Height: | Size: 64 KiB |
@@ -0,0 +1,132 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
|
|
||||||
|
<title>Cine ArteOcho Lucena</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Cine: Batman vs Superman: El Amanecer de la Justicia</h1>
|
||||||
|
<table border="1" align="center" width="80%">
|
||||||
|
<tr>
|
||||||
|
<td rowspan="2"><img src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/Batman-Vs-Superman.jpg" width="100px"></td>
|
||||||
|
<td>Batman vs Superman: El Amanecer de la Justicia</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Fecha de estreno:
|
||||||
|
23/03/2016
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<h1>Sesiones</h1>
|
||||||
|
<table width="90%" border="1" align="center">
|
||||||
|
<tr style="
 background: lightblue;
 ">
|
||||||
|
<td align="center">
|
||||||
|
Sesión: 16:30
|
||||||
|
<table width="70%" align="center" border="1">
|
||||||
|
<tr>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/ocupado.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/ocupado.png"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/ocupado.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center">
|
||||||
|
Sesión: 18:30
|
||||||
|
<table width="70%" align="center" border="1">
|
||||||
|
<tr>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/ocupado.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/ocupado.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/ocupado.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/ocupado.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr style="
 background: lightblue;
 ">
|
||||||
|
<td align="center">
|
||||||
|
Sesión: 20:30
|
||||||
|
<table width="70%" align="center" border="1">
|
||||||
|
<tr>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/ocupado.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/ocupado.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/ocupado.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/ocupado.png"></td>
|
||||||
|
<td align="center"><img width="30px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png"></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<h1>Cartelera</h1>
|
||||||
|
<table width="80%" border="1" align="center">
|
||||||
|
<tr>
|
||||||
|
<td><img width="50px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/13horas.jpg"></td>
|
||||||
|
<td>13 horas</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><img width="50px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/cienanosdeperdon.jpg"></td>
|
||||||
|
<td>100 años de perdón</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><img width="50px" src="http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/deadpoola.jpg"></td>
|
||||||
|
<td>Deadpool</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet href="batmanvssuperman.xsl" type="text/xsl"?>
|
||||||
|
|
||||||
|
<cine nombre="ArteOcho Lucena">
|
||||||
|
<titulo estreno="23/03/2016" nombre="Batman vs Superman: El Amanecer de la Justicia">
|
||||||
|
<imagen>http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/Batman-Vs-Superman.jpg</imagen>
|
||||||
|
</titulo>
|
||||||
|
<sesiones>
|
||||||
|
<sesion hora="16:30">
|
||||||
|
<ocupado fila="2" asiento="3"/>
|
||||||
|
<ocupado fila="2" asiento="4"/>
|
||||||
|
<ocupado fila="4" asiento="1"/>
|
||||||
|
</sesion>
|
||||||
|
<sesion hora="18:30">
|
||||||
|
<ocupado fila="3" asiento="2"/>
|
||||||
|
<ocupado fila="3" asiento="3"/>
|
||||||
|
<ocupado fila="1" asiento="2"/>
|
||||||
|
<ocupado fila="1" asiento="3"/>
|
||||||
|
</sesion>
|
||||||
|
<sesion hora="20:30">
|
||||||
|
<ocupado fila="2" asiento="2"/>
|
||||||
|
<ocupado fila="2" asiento="3"/>
|
||||||
|
<ocupado fila="4" asiento="2"/>
|
||||||
|
<ocupado fila="4" asiento="3"/>
|
||||||
|
</sesion>
|
||||||
|
</sesiones>
|
||||||
|
<cartelera>
|
||||||
|
<pelicula nombre="13 horas" id="13Horas"/>
|
||||||
|
<pelicula nombre="100 años de perdón" id="100AniosPerdon"/>
|
||||||
|
<pelicula nombre="Deadpool" id="Deadpool"/>
|
||||||
|
</cartelera>
|
||||||
|
<imagenes>
|
||||||
|
<imagen id="libre">http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/libre.png</imagen>
|
||||||
|
<imagen id="ocupado">http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/ocupado.png</imagen>
|
||||||
|
<imagen id="13Horas">http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/13horas.jpg</imagen>
|
||||||
|
<imagen id="100AniosPerdon">http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/cienanosdeperdon.jpg</imagen>
|
||||||
|
<imagen id="Deadpool">http://www.webdidacticarafaelmunoz.appspot.com/lmsgi/image/batmanvssumperman/deadpoola.jpg</imagen>
|
||||||
|
</imagenes>
|
||||||
|
</cine>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 6.1 KiB |
@@ -0,0 +1,45 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<callejero barrio="Centro" ciudad="Lucena" cod_postal="14900" provincia="Córdoba">
|
||||||
|
<imagen>images/callejero.png</imagen>
|
||||||
|
<callejero>
|
||||||
|
<calle nombre="Juan Valera" anexas="Plaza de España - Julio Romero de Torres"/>
|
||||||
|
<calle nombre="Alta y baja" anexas="Plaza de España - Las tiendas"/>
|
||||||
|
<calle nombre="San Miguel" anexas="Plaza de España - Plaza Nueva"/>
|
||||||
|
</callejero>
|
||||||
|
<monumentos>
|
||||||
|
<monumento imagen="monumento1" nombre="Ayuntamiento" calle="Juan Valera">
|
||||||
|
<coordX>2</coordX>
|
||||||
|
<coordY>1</coordY>
|
||||||
|
</monumento>
|
||||||
|
<monumento imagen="monumento2" nombre="Castillo" calle="Alta y baja">
|
||||||
|
<coordX>4</coordX>
|
||||||
|
<coordY>5</coordY>
|
||||||
|
</monumento>
|
||||||
|
<monumento imagen="monumento3" nombre="San Mateo" calle="San Miguel">
|
||||||
|
<coordX>2</coordX>
|
||||||
|
<coordY>4</coordY>
|
||||||
|
</monumento>
|
||||||
|
</monumentos>
|
||||||
|
<patrocinadores>
|
||||||
|
<Patrocinador nombre="Joyería Medallón">
|
||||||
|
<imagen id="patrocinador1"/>
|
||||||
|
<direccion>Plaza Nueva, 6</direccion>
|
||||||
|
</Patrocinador>
|
||||||
|
<Patrocinador nombre="Zapatería Zapatón">
|
||||||
|
<imagen id="patrocinador2"/>
|
||||||
|
<direccion>Plaza Alta y baja, 10</direccion>
|
||||||
|
</Patrocinador>
|
||||||
|
<Patrocinador nombre="Supermercado Superbarato">
|
||||||
|
<imagen id="patrocinador3"/>
|
||||||
|
<direccion>Juan Valera, 13</direccion>
|
||||||
|
</Patrocinador>
|
||||||
|
</patrocinadores>
|
||||||
|
<Imagenes>
|
||||||
|
<imagen id="monumento1">images/ayuntamiento.jpg</imagen>
|
||||||
|
<imagen id="monumento2">images/castillo.jpg</imagen>
|
||||||
|
<imagen id="monumento3">images/sanMateo.jpg</imagen>
|
||||||
|
<imagen id="patrocinador1">images/joyeria.jpg</imagen>
|
||||||
|
<imagen id="patrocinador2">images/zapateria.jpg</imagen>
|
||||||
|
<imagen id="patrocinador3">images/supermercado.jpg</imagen>
|
||||||
|
</Imagenes>
|
||||||
|
</callejero>
|
||||||
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 138 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 45 KiB |
|
After Width: | Height: | Size: 43 KiB |
@@ -0,0 +1,48 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="videoclub.xsl" ?>
|
||||||
|
<videoclub nombre="VideoAlquiler Muñoz">
|
||||||
|
<videojuegos>
|
||||||
|
<videoJuego order="4" plataforma="XBox One" alquilerDiario="1.5 €" pegi="18" x="5" y="1">Assasins Creed
|
||||||
|
<idImg valor="juegoAssasins"/>
|
||||||
|
</videoJuego>
|
||||||
|
<videoJuego order="3" plataforma="Playstation 4" alquilerDiario="1.5 €" pegi="18" x="4" y="4" idimg="juegoFarCry">Far Cry Primal
|
||||||
|
<idImg valor="juegoFarCry"/>
|
||||||
|
</videoJuego>
|
||||||
|
<videoJuego order="1" plataforma="Playstation 4" alquilerDiario="1.8 €" pegi="25" x="3" y="4" idimg="juegoGodOfWar">God of War 4
|
||||||
|
<idImg valor="juegoGodOfWar"/>
|
||||||
|
</videoJuego>
|
||||||
|
<videoJuego order="2" plataforma="Wii U" alquilerDiario="1.5 €" pegi="18" x="2" y="5" idimg="juegoZelda">Zelda: Breath of the Wild
|
||||||
|
<idImg valor="juegoZelda"/>
|
||||||
|
</videoJuego>
|
||||||
|
</videojuegos>
|
||||||
|
<Peliculas>
|
||||||
|
<pelicula order="1" pegi="18" duracionEnMinutos="157" alquilerDiario="1.5 €" idimg="peliIt" titulo="It">
|
||||||
|
<coordenadas x="2" y="1" />
|
||||||
|
</pelicula>
|
||||||
|
<pelicula order="2" pegi="7" duracionEnMinutos="142" alquilerDiario="1.7 €" idimg="peliDespertar" titulo="El despertar de la fuerza">
|
||||||
|
<coordenadas x="1" y="2" />
|
||||||
|
</pelicula>
|
||||||
|
<pelicula order="4" pegi="7" duracionEnMinutos="137" alquilerDiario="1.2 €" idimg="peliVengadores" titulo="Los Vengadores">
|
||||||
|
<coordenadas x="2" y="3" />
|
||||||
|
</pelicula>
|
||||||
|
<pelicula order="5" pegi="7" duracionEnMinutos="139" alquilerDiario="1.5 €" idimg="peliUltron" titulo="La era de Ultrón">
|
||||||
|
<coordenadas x="1" y="3" />
|
||||||
|
</pelicula>
|
||||||
|
<pelicula order="3" pegi="7" duracionEnMinutos="150" alquilerDiario="235.5 €" idimg="peliInfinityWar" titulo="Infinity War I">
|
||||||
|
<coordenadas x="3" y="3" />
|
||||||
|
</pelicula>
|
||||||
|
</Peliculas>
|
||||||
|
<bancoDeImagenes>
|
||||||
|
<imagen identificador="peliIt">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-febrero/it.jpg</imagen>
|
||||||
|
<imagen identificador="peliDespertar">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-febrero/the-force-awakens.jpg</imagen>
|
||||||
|
<imagen identificador="peliVengadores">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-febrero/vengadores-marvel.jpg</imagen>
|
||||||
|
<imagen identificador="peliUltron">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-febrero/ultron.jpg</imagen>
|
||||||
|
<imagen identificador="peliInfinityWar">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-febrero/infinityWar.jpg</imagen>
|
||||||
|
<imagen identificador="juegoAssasins">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-febrero/assasins.jpg</imagen>
|
||||||
|
<imagen identificador="juegoFarCry">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-febrero/far-cry-primal.png</imagen>
|
||||||
|
<imagen identificador="juegoGodOfWar">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-febrero/god_of_war_ps4.jpg</imagen>
|
||||||
|
<imagen identificador="juegoZelda">http://webdidacticarafaelmunoz.appspot.com/lmsgi/ejercicios-cap5/examen/2018-febrero/Zelda.jpg</imagen>
|
||||||
|
<color identificador="peliculas">fffcad</color>
|
||||||
|
<color identificador="videojuegos">aeffa8</color>
|
||||||
|
</bancoDeImagenes>
|
||||||
|
</videoclub>
|
||||||
|
After Width: | Height: | Size: 436 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 267 KiB |
|
After Width: | Height: | Size: 150 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 170 KiB |
|
After Width: | Height: | Size: 283 KiB |
@@ -0,0 +1,41 @@
|
|||||||
|
<?xml-stylesheet type="text/xsl" href="voleybol.xsl" ?>
|
||||||
|
<ligaVoleibol pais="España" nombreLiga="Superliga española">
|
||||||
|
<clasificacion fecha="29-04-2024">
|
||||||
|
<equipo puntos="32" Jugados="22" ganados="11" perdidos="11" id="tenerife"><nombre>Cisneros Alter Tenerife</nombre></equipo>
|
||||||
|
<equipo puntos="52" Jugados="22" ganados="17" perdidos="5" id="herce"><nombre>Grupo Herce Soria</nombre></equipo>
|
||||||
|
<equipo puntos="39" Jugados="22" ganados="15" perdidos="7" id="pamesa"><nombre>Pamesa Teruel Voleibol</nombre></equipo>
|
||||||
|
<equipo puntos="59" Jugados="22" ganados="20" perdidos="2" id="guguas"><nombre>CV Guaguas</nombre></equipo>
|
||||||
|
<equipo puntos="54" Jugados="22" ganados="18" perdidos="4" id="unicaja"><nombre>Unicaja Costa de Almería</nombre></equipo>
|
||||||
|
<equipo puntos="39" Jugados="22" ganados="13" perdidos="9" id="melilla"><nombre>CV Melilla</nombre></equipo>
|
||||||
|
</clasificacion>
|
||||||
|
<recursos>
|
||||||
|
<imagenes>
|
||||||
|
<img id="guguas"><url>imagenes/cvguaguas.png</url></img>
|
||||||
|
<img id="unicaja"><url>imagenes/unicajaCostaAlmeria.png</url></img>
|
||||||
|
<img id="herce"><url>imagenes/grupoHerceSoria.png</url></img>
|
||||||
|
<img id="pamesa"><url>imagenes/PamesaTeruel.png</url></img>
|
||||||
|
<img id="melilla"><url>imagenes/cvMelilla.png</url></img>
|
||||||
|
<img id="tenerife"><url>imagenes/cisnerosAlterTenerife.png</url></img>
|
||||||
|
</imagenes>
|
||||||
|
</recursos>
|
||||||
|
<mapa imagen="imagenes/mapaEspana.png">
|
||||||
|
<equipo id="tenerife">
|
||||||
|
<CoordenadaX valor="1"/><coordenadaY valor="10"/>
|
||||||
|
</equipo>
|
||||||
|
<equipo id="herce">
|
||||||
|
<CoordenadaX valor="7"/><coordenadaY valor="3"/>
|
||||||
|
</equipo>
|
||||||
|
<equipo id="pamesa">
|
||||||
|
<CoordenadaX valor="8"/><coordenadaY valor="4"/>
|
||||||
|
</equipo>
|
||||||
|
<equipo id="guguas">
|
||||||
|
<CoordenadaX valor="2"/><coordenadaY valor="10"/>
|
||||||
|
</equipo>
|
||||||
|
<equipo id="unicaja">
|
||||||
|
<CoordenadaX valor="7"/><coordenadaY valor="9"/>
|
||||||
|
</equipo>
|
||||||
|
<equipo id="melilla">
|
||||||
|
<CoordenadaX valor="6"/><coordenadaY valor="10"/>
|
||||||
|
</equipo>
|
||||||
|
</mapa>
|
||||||
|
</ligaVoleibol>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="xml-xsl-ejercicicio01.xsl" ?>
|
||||||
|
|
||||||
|
<superheroe>
|
||||||
|
<nombre>Thor, el Dios</nombre>
|
||||||
|
<poderes>Martillo mágico, Dios, Fuerza</poderes>
|
||||||
|
<amigos>Iron Man y Hulk</amigos>
|
||||||
|
</superheroe>
|
||||||
26
Unidad_06_XSL/Tutorial/xml-xsl-ejercicicio01.xsl
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||||
|
<xsl:output method="html" encoding="iso-8859-1"/>
|
||||||
|
|
||||||
|
<xsl:template match="/superheroe">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Superheroes de Marvel</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
</xsl:template>
|
||||||
|
<xsl:template match="nombre">
|
||||||
|
<h1>Superheroe: <xsl:value-of select="."/></h1>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="poderes">
|
||||||
|
<h1>Poderes: <xsl:value-of select="."/></h1>
|
||||||
|
</xsl:template>
|
||||||
|
<xsl:template match="amigos">
|
||||||
|
<h1>Amigos: <xsl:value-of select="."/></h1>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="xml-xsl-ejercicicio02.xsl"?>
|
||||||
|
|
||||||
|
<superheroe>
|
||||||
|
<nombre>Thor</nombre>
|
||||||
|
<poderes>Martillo mágico, Dios, Fuerza
|
||||||
|
<invulnerable>Sí</invulnerable>
|
||||||
|
</poderes>
|
||||||
|
<amigos>Iron Man y Hulk</amigos>
|
||||||
|
</superheroe>
|
||||||
45
Unidad_06_XSL/Tutorial/xml-xsl-ejercicicio02.xsl
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||||
|
<xsl:output method="html" encoding="iso-8859-1"/>
|
||||||
|
<xsl:template match="/superheroe">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Superheroes</title>
|
||||||
|
<style type="text/css">
|
||||||
|
body {
|
||||||
|
margin: 50px;
|
||||||
|
padding: 0px;
|
||||||
|
background: #2372DE;
|
||||||
|
font-family: 'Open Sans', sans-serif;
|
||||||
|
font-size: 11pt;
|
||||||
|
color: #FFFFFF;
|
||||||
|
text-align:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tituloTabla {
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<table border="1">
|
||||||
|
<xsl:apply-templates />
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="nombre">
|
||||||
|
<tr class="tituloTabla">
|
||||||
|
<td><xsl:value-of select="."/></td>
|
||||||
|
</tr>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="amigos">
|
||||||
|
<tr class="tituloTabla">
|
||||||
|
<td><xsl:value-of select="."/></td>
|
||||||
|
</tr>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="xml-xsl-ejercicicio03.xsl"?>
|
||||||
|
|
||||||
|
<marvel>
|
||||||
|
<superheroe>
|
||||||
|
<nombre>Thor</nombre>
|
||||||
|
<poderes>Martillo mágico, Dios, Fuerza</poderes>
|
||||||
|
<amigos>Iron Man y Hulk</amigos>
|
||||||
|
</superheroe>
|
||||||
|
<superheroe>
|
||||||
|
<nombre>Hulk</nombre>
|
||||||
|
<poderes>Superfuerza, indestructible</poderes>
|
||||||
|
<amigos>Iron Man y Thor</amigos>
|
||||||
|
</superheroe>
|
||||||
|
<superheroe>
|
||||||
|
<nombre>Iron Man</nombre>
|
||||||
|
<poderes>Armadura, intelecto superior</poderes>
|
||||||
|
<amigos>Hulk y Thor</amigos>
|
||||||
|
</superheroe>
|
||||||
|
<supervillano>
|
||||||
|
<nombre>Doctor Muerte</nombre>
|
||||||
|
<poderes>Armadura, intelecto superior</poderes>
|
||||||
|
<amigos>No tiene</amigos>
|
||||||
|
</supervillano>
|
||||||
|
</marvel>
|
||||||
49
Unidad_06_XSL/Tutorial/xml-xsl-ejercicicio03.xsl
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||||
|
<xsl:output method="html" encoding="iso-8859-1"/>
|
||||||
|
<xsl:template match="/marvel">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Superheroes</title>
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
body {
|
||||||
|
margin: 50px;
|
||||||
|
padding: 0px;
|
||||||
|
background: #2372DE;
|
||||||
|
font-family: 'Open Sans', sans-serif;
|
||||||
|
font-size: 11pt;
|
||||||
|
color: #FFFFFF;
|
||||||
|
text-align:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tituloTabla {
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="superheroe">
|
||||||
|
<table border="1">
|
||||||
|
<tr class="tituloTabla">
|
||||||
|
<td><xsl:value-of select="nombre"/></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>poderes: <xsl:value-of select="poderes"/></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>amigos: <xsl:value-of select="amigos"/></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<br/>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="xml-xsl-ejercicicio04.xsl"?>
|
||||||
|
|
||||||
|
<marvel>
|
||||||
|
<superheroe>
|
||||||
|
<nombre>Thor</nombre>
|
||||||
|
<poderes>Martillo mágico, Dios, Fuerza</poderes>
|
||||||
|
<amigos>Iron Man y Hulk</amigos>
|
||||||
|
</superheroe>
|
||||||
|
<superheroe>
|
||||||
|
<nombre>Hulk</nombre>
|
||||||
|
<poderes>Superfuerza, indestructible</poderes>
|
||||||
|
<amigos>Iron Man y Thor</amigos>
|
||||||
|
</superheroe>
|
||||||
|
<superheroe>
|
||||||
|
<nombre>Iron Man</nombre>
|
||||||
|
<poderes>Armadura, intelecto superior</poderes>
|
||||||
|
<amigos>Hulk y Thor</amigos>
|
||||||
|
</superheroe>
|
||||||
|
<supervillano>
|
||||||
|
<nombre>Loki</nombre>
|
||||||
|
<poderes>Mago</poderes>
|
||||||
|
<amigos>Thor</amigos>
|
||||||
|
</supervillano>
|
||||||
|
</marvel>
|
||||||
51
Unidad_06_XSL/Tutorial/xml-xsl-ejercicicio04.xsl
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||||
|
<xsl:output method="html" encoding="iso-8859-1"/>
|
||||||
|
<xsl:template match="/marvel">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Superheroes</title>
|
||||||
|
<xsl:call-template name="css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<xsl:apply-templates select="superheroe"/>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
|
||||||
|
<xsl:template name="css">
|
||||||
|
<style type="text/css">
|
||||||
|
body {
|
||||||
|
margin: 50px;
|
||||||
|
padding: 0px;
|
||||||
|
background: #2372DE;
|
||||||
|
font-family: 'Open Sans', sans-serif;
|
||||||
|
font-size: 11pt;
|
||||||
|
color: #FFFFFF;
|
||||||
|
text-align:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tituloTabla {
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
|
||||||
|
<xsl:template match="superheroe">
|
||||||
|
<table border="1">
|
||||||
|
<tr class="tituloTabla">
|
||||||
|
<td><xsl:value-of select="nombre"/></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>poderes: <xsl:value-of select="poderes"/></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>amigos: <xsl:value-of select="amigos"/></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<br/>
|
||||||
|
</xsl:template>
|
||||||
|
</xsl:stylesheet>
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="xml-xsl-ejercicicio05.xsl"?>
|
||||||
|
|
||||||
|
<marvel>
|
||||||
|
<superheroe>
|
||||||
|
<nombre>Thor</nombre>
|
||||||
|
<poderes>Martillo mágico, Dios, Fuerza</poderes>
|
||||||
|
<amigos>Iron Man y Hulk</amigos>
|
||||||
|
</superheroe>
|
||||||
|
<superheroe>
|
||||||
|
<nombre>Hulk</nombre>
|
||||||
|
<poderes>Superfuerza, indestructible</poderes>
|
||||||
|
<amigos>Iron Man y Thor</amigos>
|
||||||
|
</superheroe>
|
||||||
|
<superheroe>
|
||||||
|
<nombre>Iron Man</nombre>
|
||||||
|
<poderes>Armadura, intelecto superior</poderes>
|
||||||
|
<amigos>Hulk y Thor</amigos>
|
||||||
|
</superheroe>
|
||||||
|
<supervillano>
|
||||||
|
<nombre>Dr Muerte</nombre>
|
||||||
|
<poderes>Armadura, intelecto superior</poderes>
|
||||||
|
<amigos>Hulk y Thor</amigos>
|
||||||
|
</supervillano>
|
||||||
|
</marvel>
|
||||||
49
Unidad_06_XSL/Tutorial/xml-xsl-ejercicicio05.xsl
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||||
|
<xsl:output method="html" encoding="iso-8859-1"/>
|
||||||
|
<xsl:template match="/marvel">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Superheroes</title>
|
||||||
|
<xsl:call-template name="css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<xsl:for-each select="superheroe">
|
||||||
|
<table border="1">
|
||||||
|
<tr class="tituloTabla">
|
||||||
|
<td><xsl:value-of select="nombre"/></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>poderes: <xsl:value-of select="poderes"/></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>amigos: <xsl:value-of select="amigos"/></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<br/>
|
||||||
|
</xsl:for-each>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
|
||||||
|
<xsl:template name="css">
|
||||||
|
<style type="text/css">
|
||||||
|
body {
|
||||||
|
margin: 50px;
|
||||||
|
padding: 0px;
|
||||||
|
background: #2372DE;
|
||||||
|
font-family: 'Open Sans', sans-serif;
|
||||||
|
font-size: 11pt;
|
||||||
|
color: #FFFFFF;
|
||||||
|
text-align:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tituloTabla {
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="xml-xsl-ejercicicio06.xsl"?>
|
||||||
|
|
||||||
|
<marvel>
|
||||||
|
<superheroe nombre="Thor" poderes="Martillo mágico, Dios, Fuerza" amigos="Iron Man y Hulk"/>
|
||||||
|
<superheroe nombre="Hulk" poderes="Superfuerza, indestructible" amigos="Iron Man y Thor"/>
|
||||||
|
<superheroe nombre="Iron Man" poderes="Armadura, intelecto superior" amigos="Hulk y Thor"/>
|
||||||
|
</marvel>
|
||||||
50
Unidad_06_XSL/Tutorial/xml-xsl-ejercicicio06.xsl
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||||
|
<xsl:output method="html" encoding="iso-8859-1"/>
|
||||||
|
<xsl:template match="/marvel">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Superheroes</title>
|
||||||
|
<xsl:call-template name="css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<xsl:for-each select="superheroe">
|
||||||
|
<xsl:sort select="@nombre" order="ascending"/>
|
||||||
|
<table border="1">
|
||||||
|
<tr class="tituloTabla">
|
||||||
|
<td><xsl:value-of select="@nombre"/></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>poderes: <xsl:value-of select="@poderes"/></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>amigos: <xsl:value-of select="@amigos"/></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<br/>
|
||||||
|
</xsl:for-each>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
|
||||||
|
<xsl:template name="css">
|
||||||
|
<style type="text/css">
|
||||||
|
body {
|
||||||
|
margin: 50px;
|
||||||
|
padding: 0px;
|
||||||
|
background: #2372DE;
|
||||||
|
font-family: 'Open Sans', sans-serif;
|
||||||
|
font-size: 11pt;
|
||||||
|
color: #FFFFFF;
|
||||||
|
text-align:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tituloTabla {
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="xml-xsl-ejercicicio07.xsl"?>
|
||||||
|
|
||||||
|
<marvel>
|
||||||
|
<superheroe nombre="Thor" poderes="Martillo mágico, Dios, Fuerza" amigos="Iron Man y Hulk"/>
|
||||||
|
<superheroe nombre="Hulk" poderes="Superfuerza, indestructible" amigos="Iron Man y Thor"/>
|
||||||
|
<superheroe nombre="Iron Man" poderes="Armadura, intelecto superior" amigos="Hulk y Thor"/>
|
||||||
|
</marvel>
|
||||||
51
Unidad_06_XSL/Tutorial/xml-xsl-ejercicicio07.xsl
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||||
|
<xsl:output method="html" encoding="iso-8859-1"/>
|
||||||
|
<xsl:template match="/marvel">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Superheroes</title>
|
||||||
|
<xsl:call-template name="css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<xsl:for-each select="superheroe">
|
||||||
|
<xsl:if test="@nombre='Thor' or @nombre='Hulk'">
|
||||||
|
<table border="1">
|
||||||
|
<tr class="tituloTabla">
|
||||||
|
<td><xsl:value-of select="@nombre"/></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>poderes: <xsl:value-of select="@poderes"/></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>amigos: <xsl:value-of select="@amigos"/></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</xsl:if>
|
||||||
|
<br/>
|
||||||
|
</xsl:for-each>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
|
||||||
|
<xsl:template name="css">
|
||||||
|
<style type="text/css">
|
||||||
|
body {
|
||||||
|
margin: 50px;
|
||||||
|
padding: 0px;
|
||||||
|
background: #2372DE;
|
||||||
|
font-family: 'Open Sans', sans-serif;
|
||||||
|
font-size: 11pt;
|
||||||
|
color: #FFFFFF;
|
||||||
|
text-align:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tituloTabla {
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="xml-xsl-ejercicicio08.xsl"?>
|
||||||
|
|
||||||
|
<marvel>
|
||||||
|
<superheroe nombre="Thor" poderes="Martillo mágico, Dios, Fuerza" amigos="Iron Man y Hulk"/>
|
||||||
|
<superheroe nombre="Hulk" poderes="Superfuerza, indestructible" amigos="Iron Man y Thor"/>
|
||||||
|
<superheroe nombre="Iron Man" poderes="Armadura, intelecto superior" amigos="Hulk y Thor"/>
|
||||||
|
</marvel>
|
||||||
46
Unidad_06_XSL/Tutorial/xml-xsl-ejercicicio08.xsl
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||||
|
<xsl:output method="html" encoding="iso-8859-1"/>
|
||||||
|
<xsl:template match="/marvel">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Superheroes</title>
|
||||||
|
<xsl:call-template name="css"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<table border="1">
|
||||||
|
<tr class="tituloTabla">
|
||||||
|
<td>Thor</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>poderes: <xsl:value-of select="superheroe[@nombre='Thor']/@poderes"/></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>amigos: <xsl:value-of select="superheroe[@nombre='Thor']/@amigos"/></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
|
||||||
|
<xsl:template name="css">
|
||||||
|
<style type="text/css">
|
||||||
|
body {
|
||||||
|
margin: 50px;
|
||||||
|
padding: 0px;
|
||||||
|
background: #2372DE;
|
||||||
|
font-family: 'Open Sans', sans-serif;
|
||||||
|
font-size: 11pt;
|
||||||
|
color: #FFFFFF;
|
||||||
|
text-align:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tituloTabla {
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="xml-xsl-ejercicicio09.xsl"?>
|
||||||
|
|
||||||
|
<marvel>
|
||||||
|
<superheroe nombre="Thor" poderes="Martillo mágico, Dios, Fuerza" amigos="Iron Man y Hulk"/>
|
||||||
|
<superheroe nombre="Hulk" poderes="Superfuerza, indestructible" amigos="Iron Man y Thor"/>
|
||||||
|
<superheroe nombre="Iron Man" poderes="Armadura, intelecto superior" amigos="Hulk y Thor"/>
|
||||||
|
</marvel>
|
||||||
89
Unidad_06_XSL/Tutorial/xml-xsl-ejercicicio09.xsl
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||||
|
<xsl:output method="html" encoding="iso-8859-1"/>
|
||||||
|
<xsl:template match="/marvel">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Superheroes</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- Total de nodos de tipo superheroe -->
|
||||||
|
<p>Total de superheroes: <xsl:value-of select="count(superheroe)"/></p>
|
||||||
|
|
||||||
|
<!-- Acceso a diferentes nodos de una colección (iguales y hermanos) a través de la posición que ocupan -->
|
||||||
|
<p>Primer superheroe: <xsl:value-of select="superheroe[1]/@nombre"/></p>
|
||||||
|
<p>Segundo superheroe: <xsl:value-of select="superheroe[2]/@nombre"/></p>
|
||||||
|
<p>Tercer superheroe: <xsl:value-of select="superheroe[3]/@nombre"/></p>
|
||||||
|
|
||||||
|
<!-- Conseguir la posición que ocupa cada nodo en una colección -->
|
||||||
|
<xsl:for-each select="superheroe">
|
||||||
|
<p>Superheroe: <xsl:value-of select="@nombre"/>, posición: <xsl:value-of select="position()"/></p>
|
||||||
|
</xsl:for-each>
|
||||||
|
|
||||||
|
<!-- Concatenación de cadenas de caracteres -->
|
||||||
|
<p>Ejemplo de concatenación: <xsl:value-of select="concat('Vengador ', superheroe[1]/@nombre)"/></p>
|
||||||
|
|
||||||
|
<!-- Función para comprobar si una cadena de texto se encuentra dentro de otra -->
|
||||||
|
<xsl:for-each select="superheroe">
|
||||||
|
<xsl:if test="contains(@nombre, 'ho')">
|
||||||
|
<p>Ejemplo de contains: <xsl:value-of select="@nombre"/></p>
|
||||||
|
</xsl:if>
|
||||||
|
</xsl:for-each>
|
||||||
|
|
||||||
|
<!-- Obtener la longitud de una cadena de caracteres -->
|
||||||
|
<p>Ejemplo de string-length. Thor tiene <xsl:value-of select="string-length('Thor')"/> caracteres</p>
|
||||||
|
|
||||||
|
<!-- Subcadena de una cadena de texto -->
|
||||||
|
<p>Ejemplo de substring: <xsl:value-of select="substring('Una cadena de texto', 2, 8)"/></p>
|
||||||
|
|
||||||
|
<!-- Ejemplo de operación combinada de suma, multiplicación y división entera -->
|
||||||
|
<p>Ejemplo calculo matemático <xsl:value-of select="((4 + 8) div 2) * 2"/></p>
|
||||||
|
|
||||||
|
<!-- Resto de una división entera -->
|
||||||
|
<p>Ejemplo de funcíon módulo o resto de la división <xsl:value-of select="15 mod 4"/></p>
|
||||||
|
|
||||||
|
<!-- Negación -->
|
||||||
|
<xsl:if test="(not(false))">
|
||||||
|
<p>Ejemplo de 'not'</p>
|
||||||
|
</xsl:if>
|
||||||
|
|
||||||
|
<!-- Comparación "distinto de" -->
|
||||||
|
<xsl:if test="12 != 10">
|
||||||
|
<p>Ejemplo de '!='</p>
|
||||||
|
</xsl:if>
|
||||||
|
|
||||||
|
<!-- Comparación "menor que" -->
|
||||||
|
<xsl:if test="(5 < 10)">
|
||||||
|
<p>Ejemplo de '<'</p>
|
||||||
|
</xsl:if>
|
||||||
|
|
||||||
|
<!-- Comparación "mayor que" -->
|
||||||
|
<xsl:if test="10 > 5">
|
||||||
|
<p>Ejemplo de '>'</p>
|
||||||
|
</xsl:if>
|
||||||
|
|
||||||
|
<!-- Comparación "menor o igual que" -->
|
||||||
|
<xsl:if test="6 <= 6">
|
||||||
|
<p>Ejemplo de '<='</p>
|
||||||
|
</xsl:if>
|
||||||
|
|
||||||
|
<!-- Comparación "mayor o igual que" -->
|
||||||
|
<xsl:if test="6 >= 6">
|
||||||
|
<p>Ejemplo de '>='</p>
|
||||||
|
</xsl:if>
|
||||||
|
|
||||||
|
<!-- Operador de disyunción or -->
|
||||||
|
<xsl:if test="(1 > 2) or (2 > 1)">
|
||||||
|
<p>Ejemplo de 'or'</p>
|
||||||
|
</xsl:if>
|
||||||
|
|
||||||
|
<!-- Operador and -->
|
||||||
|
<xsl:if test="(1 >= 1) and (2 != 4)">
|
||||||
|
<p>Ejemplo de 'and'</p>
|
||||||
|
</xsl:if>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?xml-stylesheet type="text/xsl" href="xml-xsl-ejercicicio10.xsl"?>
|
||||||
|
|
||||||
|
<marvel>
|
||||||
|
<superheroe nombre="Thor" poderes="Martillo mágico, Dios, Fuerza" amigos="Iron Man y Hulk" nivel="7"/>
|
||||||
|
<superheroe nombre="Gamora" poderes="Superfuerza, indestructible" amigos="Iron Man y Thor" nivel="8"/>
|
||||||
|
<superheroe nombre="Iron Man" poderes="Armadura, intelecto superior" amigos="Hulk y Thor" nivel="6"/>
|
||||||
|
<superheroe nombre="Capitán América" poderes="fuerza, resistencia, superguerrero" amigos="Iron Man" nivel="5"/>
|
||||||
|
<superheroe nombre="Viuda Negra" poderes="coordinación, luchadora" amigos="No tiene" nivel="6"/>
|
||||||
|
<superheroe nombre="Bruja escarlata" poderes="coordinación, luchadora" amigos="No tiene" nivel="6"/>
|
||||||
|
</marvel>
|
||||||