-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresultados.xsl
516 lines (511 loc) · 19.7 KB
/
resultados.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="yes"/>
<!-- Plantilla para el elemento resultados -->
<xsl:template match="resultados">
<html>
<head>
<title>Resultados de las consultas XQuery</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #f0f0f0;
}
h1 {
color: #333;
border-bottom: 2px solid #333;
padding-bottom: 10px;
margin-bottom: 20px;
}
h1 {
text-align: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 72px;
color: gold;
text-shadow: 5px 5px 15px black;
cursor: pointer;
}
table {
border-collapse: collapse;
width: 100%;
background-color: #ffffff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
th, td {
border: 1px solid #ccc;
padding: 8px;
text-align: left;
}
th {
background-color: #4CAF50;
color: white;
font-weight: bold;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
tr:hover {
background-color: #ddd;
}
.button-container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.btn {
background-color: #4CAF50;
border: none;
color: white;
text-align: center;
display: inline-block;
font-size: 20px;
margin: 20px 2px;
cursor: pointer;
border-radius: 12px;
box-shadow: 5px 5px 15px rgba(0,0,0,0.6);
padding: 10px 24px;
text-decoration: none;
transition-duration: 0.4s;
}
.btn:hover {
background-color: #45a049;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
</style>
</head>
<body>
<script>
<![CDATA[
function backToMain() {
window.parent.location.href = "antiheroes.xml?stylesheet=antiheroes.xsl";
}
]]>
function showAuthor() {
alert('Actividad 3 M4\nAutor: Enrique Jesús Solís González');
}
</script>
<h1 onmouseover="showAuthor()">Resultados de las consultas XQuery</h1>
<!-- Aplicar plantilla a consulta1_1 -->
<xsl:apply-templates select="consulta1_1"/>
<hr/>
<!-- Aplicar plantilla a consulta1_2 -->
<xsl:apply-templates select="consulta1_2"/>
<hr/>
<!-- Aplicar plantilla a consulta2 -->
<xsl:apply-templates select="consulta2"/>
<hr/>
<!-- Aplicar plantilla a consulta3_1 -->
<xsl:apply-templates select="consulta3_1"/>
<hr/>
<!-- Aplicar plantilla a consulta3_2 -->
<xsl:apply-templates select="consulta3_2"/>
<hr/>
<!-- Aplicar plantilla a consulta4_1 -->
<xsl:apply-templates select="consulta4_1"/>
<hr/>
<!-- Aplicar plantilla a consulta4_2 -->
<xsl:apply-templates select="consulta4_2"/>
<hr/>
<!-- Aplicar plantilla a consulta5_1 -->
<xsl:apply-templates select="consulta5_1"/>
<hr/>
<!-- Aplicar plantilla a consulta5_2 -->
<xsl:apply-templates select="consulta5_2"/>
<hr/>
<!-- Aplicar plantilla a consulta6 -->
<xsl:apply-templates select="consulta6"/>
<hr/>
<!-- Aplicar plantilla a consulta7 -->
<xsl:apply-templates select="consulta7"/>
<hr/>
<!-- Aplicar plantilla a consulta8 -->
<xsl:apply-templates select="consulta8"/>
<hr/>
<!-- Aplicar plantilla a consulta9 -->
<xsl:apply-templates select="consulta9"/>
<hr/>
<!-- Aplicar plantilla a consulta10_1 -->
<xsl:apply-templates select="consulta10_1"/>
<hr/>
<!-- Aplicar plantilla a consulta10_2 -->
<xsl:apply-templates select="consulta10_2"/>
<div class="button-container">
<button class="btn" onclick="parent.showWindow('antiheroes2.xml', 'antiheroes2.xsl')">Ver fichas individuales de antiheroes</button>
<button class="btn" onclick="backToMain()">Ver tabla antiheroes</button>
<button class="btn" onclick="parent.showWindow('antiheroes1.xml', 'antiheroes1.xsl')">Ver todas las fichas de antiheroes</button>
</div>
</body>
</html>
</xsl:template>
<!-- Plantillas para elementos consulta3_1, consulta3_2, consulta4_1, consulta4_2, consulta5_1, consulta5_2, consulta6, consulta7, consulta8, consulta9, consulta10_1 y consulta10_2 -->
<!-- Plantilla para el elemento consulta3_1 -->
<xsl:template match="consulta3_1">
<h2>Consulta 3_1 - Descripción</h2>
<p><xsl:value-of select="descripcion"/></p>
<h3>Código XQuery:</h3>
<pre><xsl:value-of select="codigo_xquery"/></pre>
<h2>Resultado: </h2>
<table border="1">
<tr>
<th>Nombre</th>
<th>Código</th>
<th>Foto</th>
<th>Sexo</th>
<th>Poder</th>
<th>Fuerza</th>
<th>Comentario</th>
</tr>
<xsl:for-each select="antiheroes/antiheroe">
<tr>
<td><xsl:value-of select="nombre"/></td>
<td><xsl:value-of select="codigo"/></td>
<td><img src="{foto}" width="100" height="100"/></td>
<td><xsl:value-of select="sexo"/></td>
<td><xsl:value-of select="poder"/></td>
<td><xsl:value-of select="fuerza"/></td>
<td><xsl:value-of select="comentario"/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
<!-- Plantilla para el elemento consulta3_2 -->
<xsl:template match="consulta3_2">
<h2>Consulta 3_2 - Descripción</h2>
<p><xsl:value-of select="descripcion"/></p>
<h3>Código XQuery:</h3>
<pre><xsl:value-of select="codigo_xquery"/></pre>
<h2>Resultado: </h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Resultado</th>
</tr>
<xsl:for-each select="result">
<tr>
<td><xsl:value-of select="."/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
<!-- Plantilla para el elemento consulta4_1 -->
<xsl:template match="consulta4_1">
<h2>Consulta 4_1 - Descripción</h2>
<p><xsl:value-of select="descripcion"/></p>
<h3>Código XQuery:</h3>
<pre><xsl:value-of select="codigo_xquery"/></pre>
<h2>Resultado: </h2>
<table border="1">
<tr>
<th>Nombre</th>
<th>Código</th>
<th>Foto</th>
<th>Sexo</th>
<th>Poder</th>
<th>Fuerza</th>
<th>Comentario</th>
</tr>
<xsl:for-each select="antiheroes/antiheroe">
<tr>
<td><xsl:value-of select="nombre"/></td>
<td><xsl:value-of select="codigo"/></td>
<td><img src="{foto}" width="100" height="100"/></td>
<td><xsl:value-of select="sexo"/></td>
<td><xsl:value-of select="poder"/></td>
<td><xsl:value-of select="format-number(fuerza * 1.1, '0.0')"/></td>
<td><xsl:value-of select="comentario"/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
<!-- Plantilla para el elemento consulta4_2 -->
<xsl:template match="consulta4_2">
<h2>Consulta 4_2 - Descripción</h2>
<p><xsl:value-of select="descripcion"/></p>
<h3>Código XQuery:</h3>
<pre><xsl:value-of select="codigo_xquery"/></pre>
<h2>Resultado: </h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Resultado</th>
</tr>
<xsl:for-each select="result">
<tr>
<td><xsl:value-of select="."/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
<!-- Plantilla para el elemento consulta5_1 -->
<xsl:template match="consulta5_1">
<h2>Consulta 5_1 - Descripción</h2>
<p><xsl:value-of select="descripcion"/></p>
<h3>Código XQuery:</h3>
<pre><xsl:value-of select="codigo_xquery"/></pre>
<h2>Resultado: </h2>
<table border="1">
<tr bgcolor="#CCCCCC">
<th>Nombre</th>
<th>Código</th>
<th>Foto</th>
<th>Sexo</th>
<th>Poder</th>
<th>Fuerza</th>
<th>Comentario</th>
</tr>
<xsl:for-each select="antiheroes/antiheroe">
<tr>
<td><xsl:value-of select="nombre"/></td>
<td><xsl:value-of select="codigo"/></td>
<td><img src="{foto}" width="100" height="100"/></td>
<td><xsl:value-of select="sexo"/></td>
<td><xsl:value-of select="poder"/></td>
<td><xsl:value-of select="fuerza"/></td>
<td><xsl:value-of select="comentario"/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
<!-- Plantilla para el elemento consulta5_2 -->
<xsl:template match="consulta5_2">
<h2>Consulta 5_2 - Descripción</h2>
<p><xsl:value-of select="descripcion"/></p>
<h3>Código XQuery:</h3>
<pre><xsl:value-of select="codigo_xquery"/></pre>
<h2>Resultado: </h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Resultado</th>
</tr>
<xsl:for-each select="result">
<tr>
<td><xsl:value-of select="."/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
<!-- Plantilla para el elemento consulta6 -->
<xsl:template match="consulta6">
<h2>Consulta 6 - Descripción</h2>
<p><xsl:value-of select="descripcion"/></p>
<h3>Código XQuery:</h3>
<pre><xsl:value-of select="codigo_xquery"/></pre>
<h2>Resultado: </h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Resultado</th>
</tr>
<xsl:for-each select="nombre">
<tr>
<td><xsl:value-of select="."/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
<!-- Plantilla para el elemento consulta7 -->
<xsl:template match="consulta7">
<h2>Consulta 7 - Descripción</h2>
<p><xsl:value-of select="descripcion"/></p>
<h3>Código XQuery:</h3>
<pre><xsl:value-of select="codigo_xquery"/></pre>
<h2>Resultado: </h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Resultado</th>
</tr>
<xsl:for-each select="nombre">
<tr>
<td><xsl:value-of select="."/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
<!-- Plantilla para el elemento consulta8 -->
<xsl:template match="consulta8">
<h2>Consulta 8 - Descripción</h2>
<p><xsl:value-of select="descripcion"/></p>
<h3>Código XQuery:</h3>
<pre><xsl:value-of select="codigo_xquery"/></pre>
<h2>Resultado: </h2>
<table border="1">
<tr>
<th>Nombre</th>
<th>Poder</th>
<th>Fuerza</th>
</tr>
<xsl:for-each select="result">
<tr>
<td><xsl:value-of select="nombre"/></td>
<td><xsl:value-of select="poder"/></td>
<td><xsl:value-of select="fuerza"/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
<!-- Plantilla para el elemento consulta9 -->
<xsl:template match="consulta9">
<h2>Consulta 9 - Descripción</h2>
<p><xsl:value-of select="descripcion"/></p>
<h3>Código XQuery:</h3>
<pre><xsl:value-of select="codigo_xquery"/></pre>
<h2>Resultado: </h2>
<table border="1">
<thead>
<tr>
<th>Nombre</th>
<th>Poder</th>
<th>Fuerza</th>
</tr>
</thead>
<tbody>
<xsl:for-each select="table/tbody/tr">
<tr>
<td><xsl:value-of select="td[1]" /></td>
<td><xsl:value-of select="td[2]" /></td>
<td><xsl:value-of select="td[3]" /></td>
</tr>
</xsl:for-each>
</tbody>
</table>
</xsl:template>
<!-- Plantilla para el elemento consulta10_1 -->
<xsl:template match="consulta10_1">
<h2>Consulta 10_1 - Descripción</h2>
<p><xsl:value-of select="descripcion"/></p>
<h3>Código XQuery:</h3>
<pre><xsl:value-of select="codigo_xquery"/></pre>
<h2>Resultado: </h2>
<table>
<thead>
<tr>
<th>Nombre</th>
<th>Código</th>
<th>Poder</th>
<th>Fuerza</th>
<th>Comentario</th>
</tr>
</thead>
<tbody>
<xsl:for-each select="antiheroes/antiheroe">
<tr>
<td><xsl:value-of select="nombre"/></td>
<td><xsl:value-of select="codigo"/></td>
<td><xsl:value-of select="poder"/></td>
<td><xsl:value-of select="fuerza"/></td>
<td><xsl:value-of select="comentario"/></td>
</tr>
</xsl:for-each>
</tbody>
</table>
</xsl:template>
<!-- Plantilla para el elemento consulta10_2 -->
<xsl:template match="consulta10_2">
<h2>Consulta 10_2- Descripción</h2>
<p><xsl:value-of select="descripcion"/></p>
<h3>Código XQuery:</h3>
<pre><xsl:value-of select="codigo_xquery"/></pre>
<h2>Resultado: </h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Resultado</th>
</tr>
<xsl:for-each select="result">
<tr>
<td><xsl:value-of select="."/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
<!-- Agrega las plantillas correspondientes aquí, similar a las plantillas para consulta1_1, consulta1_2 y consulta2 -->
<!-- Plantilla para el elemento consulta1_1 -->
<xsl:template match="consulta1_1">
<h2>Consulta 1_1 - Descripción</h2>
<p><xsl:value-of select="descripcion"/></p>
<h3>Código XQuery:</h3>
<pre><xsl:value-of select="codigo_xquery"/></pre>
<h2>Resultado: </h2>
<table border="1">
<tr>
<th>Nombre</th>
<th>Código</th>
<th>Foto</th>
<th>Sexo</th>
<th>Poder</th>
<th>Fuerza</th>
<th>Comentario</th>
</tr>
<!-- Aplicar plantilla a cada elemento antiheroe -->
<xsl:apply-templates select="antiheroe"/>
</table>
</xsl:template>
<!-- Plantilla para el elemento antiheroe -->
<xsl:template match="antiheroe">
<tr>
<td><xsl:value-of select="nombre"/></td>
<td><xsl:value-of select="codigo"/></td>
<td><img src="{foto}" width="100" height="100"/></td>
<td><xsl:value-of select="sexo"/></td>
<td><xsl:value-of select="poder"/></td>
<td><xsl:value-of select="fuerza"/></td>
<td><xsl:value-of select="comentario"/></td>
</tr>
</xsl:template>
<!-- Plantilla para el elemento consulta1_2 -->
<xsl:template match="consulta1_2">
<h2>Consulta 1_2 - Descripción</h2>
<p><xsl:value-of select="descripcion"/></p>
<h3>Código XQuery:</h3>
<pre><xsl:value-of select="codigo_xquery"/></pre>
<h2>Resultado: </h2>
<table border="1">
<tr>
<th>Nombre</th>
<th>Código</th>
<th>Foto</th>
<th>Sexo</th>
<th>Poder</th>
<th>Fuerza</th>
<th>Comentario</th>
</tr>
<!-- Aplicar plantilla a cada elemento antiheroe -->
<xsl:apply-templates select="antiheroe"/>
</table>
</xsl:template>
<!-- Plantilla para el elemento antiheroe -->
<xsl:template match="antiheroe">
<tr>
<td><xsl:value-of select="nombre"/></td>
<td><xsl:value-of select="codigo"/></td>
<td><img src="{foto}" width="100" height="100"/></td>
<td><xsl:value-of select="sexo"/></td>
<td><xsl:value-of select="poder"/></td>
<td><xsl:value-of select="fuerza"/></td>
<td><xsl:value-of select="comentario"/></td>
</tr>
</xsl:template>
<!-- Plantilla para el elemento consulta2 -->
<xsl:template match="consulta2">
<h2>Consulta 2 - Descripción</h2>
<p><xsl:value-of select="descripcion"/></p>
<h3>Código XQuery:</h3>
<pre><xsl:value-of select="codigo_xquery"/></pre>
<h2>Resultado: </h2>
<table border="1">
<tr>
<th>Nombre</th>
<th>Poder</th>
<th>Fuerza</th>
</tr>
<!-- Aplicar plantilla a cada elemento tr -->
<xsl:apply-templates select="tr"/>
</table>
</xsl:template>
<!-- Plantilla para el elemento tr -->
<xsl:template match="tr">
<tr>
<td><xsl:value-of select="td[1]"/></td>
<td><xsl:value-of select="td[2]"/></td>
<td><xsl:value-of select="td[3]"/></td>
</tr>
</xsl:template>
</xsl:stylesheet>