-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmkdocs.yml
More file actions
421 lines (402 loc) · 25 KB
/
mkdocs.yml
File metadata and controls
421 lines (402 loc) · 25 KB
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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: 'R Z O'
site_url: 'https://revilofe.github.io'
repo_url: 'https://github.com/revilofe/revilofe.github.io'
repo_name: 'GitHub'
edit_uri: edit/main/docs/
site_author: 'Eduardo Fdez'
nav:
- 'Principal': 'index.md'
- 'Programación':
- 'section1/index.md'
- 'U1: Primer programa en Python':
- 'section1/u01/index.md'
- '1.1.-Un programa': 'section1/u01/teoria/PROG-U1.1.-UnProgramaInformatico.md'
- '1.1.1.-Pseudocódigo': 'section1/u01/teoria/PROG-U1.1.1-Pseudocodigo.md'
- 'Práctica 1.1: Instala python': 'section1/u01/practica/PROG-U1.-Practica001.md'
- '1.2.-Practica con un lenguaje': 'section1/u01/teoria/PROG-U1.2.-PracticaConUnLenguajes.md'
- '1.3.-Tipos de datos': 'section1/u01/teoria/PROG-U1.3.-TiposDeDatos.md'
- 'Práctica 1.2: Primeros programas': 'section1/u01/practica/PROG-U1.-Practica002.md'
- 'Práctica 1.3: Git Básico': 'section1/u01/practica/PROG-U1.-Practica003.md'
- 'Práctica 1.4: GitHub Básico': 'section1/u01/practica/PROG-U1.-Practica004.md'
- '1.4.-Pruebas con pytest': 'section1/u01/teoria/PROG-U1.4.-Pytest.md'
- 'Práctica 1.5: Creación de entorno': 'section1/u01/practica/PROG-U1.-Practica005.md'
- 'Práctica 1.6: Uso de pytest': 'section1/u01/practica/PROG-U1.-Practica006.md'
- 'Práctica 1.7: Acceso ssh a github': 'section1/u01/practica/PROG-U1.-Practica007.md'
# - 'Práctica 1.8: Actualización de plantilla': 'section1/u01/practica/PROG-U1.-Practica008.md'
- 'U2: Estructuras de control en la programación':
- 'section1/u02/index.md'
- '2.1.-Condicionales': 'section1/u02/teoria/PROG-U2.1.-Condicionales.md'
- 'Práctica 2.1: Sentencias condicionales': 'section1/u02/practica/PROG-U2.-Practica001.md'
- '2.2.-Iterativas y saltos': 'section1/u02/teoria/PROG-U2.2.-Iterativas.md'
- 'Práctica 2.2: Sentencias iterativas y saltos': 'section1/u02/practica/PROG-U2.-Practica002.md'
- '2.3.-Captura de excepciones': 'section1/u02/teoria/PROG-U2.3.-Excepciones.md'
- 'Práctica 2.3: Capturas de excepciones': 'section1/u02/practica/PROG-U2.-Practica003.md'
- '2.4.-Depurar programas': 'section1/u02/teoria/PROG-U2.4.-Depurar.md'
- 'Práctica 2.4: Depurar programas': 'section1/u02/practica/PROG-U2.-Practica004.md'
- '2.5.-Documentar el código': 'section1/u02/teoria/PROG-U2.5.-Documentar.md'
- '2.5.1-¿Deberías documentar tu código?': 'section1/u02/teoria/PROG-U2.5.1.-DeberiasDocumentar.md'
# - 'Práctica 2.5: Proyecto': 'https://classroom.github.com/a/1NxxJ6nu'
- 'U3: Estructuras de datos':
- 'section1/u03/index.md'
- '3.0.-Est.Datos: Cadenas': 'section1/u03/teoria/PROG-U3.0.-Cadenas.md'
- 'Práctica 3.0: Cadenas': 'section1/u03/practica/PROG-U3.-Practica000.md'
- '3.1.-Est.Datos: Listas': 'section1/u03/teoria/PROG-U3.1.-Listas.md'
- '3.2.-Est.Datos: Tuplas': 'section1/u03/teoria/PROG-U3.2.-Tuplas.md'
- 'Práctica 3.1: Listas y tuplas': 'section1/u03/practica/PROG-U3.-Practica001.md'
- '3.3.-Est.Datos: Diccionarios': 'section1/u03/teoria/PROG-U3.3.-Diccionarios.md'
- 'Práctica 3.2: Diccionarios': 'section1/u03/practica/PROG-U3.-Practica002.md'
- '3.4.-Est.Datos: Conjuntos': 'section1/u03/teoria/PROG-U3.4.-Conjuntos.md'
- 'Práctica 3.3: Conjuntos': 'section1/u03/practica/PROG-U3.-Practica003.md'
- '3.5.-Funciones': 'section1/u03/teoria/PROG-U3.5.-Funciones.md'
- '3.6.-Manejo de JSON': 'section1/u03/teoria/PROG-U3.6.-ManejoJSON.md'
- 'Práctica 3.4: JSON': 'section1/u03/practica/PROG-U3.-Practica004.md'
- '3.7.-Manejo de XML': 'section1/u03/teoria/PROG-U3.7.-ManejoXML.md'
- 'Práctica 3.5: XML': 'section1/u03/practica/PROG-U3.-Practica005.md'
- '3.8.-Ampliación I': 'section1/u03/teoria/PROG-U3.8.-OtrosAmpliacion1.md'
- '3.9.-Ampliación II': 'section1/u03/teoria/PROG-U3.9.-OtrosAmpliacion2.md'
- '3.10.-Iteradores': 'section1/u03/teoria/PROG-U3.10.-Iteradores.md'
- 'U4: Kotlin: POO y estructuras de datos':
- 'section1/u04/index.md'
- '4.1.-Kotlin: Básico': 'section1/u04/teoria/PROG-U4.1.-kotlin.md'
- 'Práctica 4.1: Kotlin Básico': 'section1/u04/practica/PROG-U4.-Practica001.md'
- '4.2.-Kotlin: Colecciones': 'section1/u04/teoria/PROG-U4.2.-kotlinColeciones.md'
- '4.2.1.-Aclaraciones': 'section1/u04/teoria/PROG-U4.2.1.-kotlin-aclaraciones.md'
- '4.3.1.-Programación orientada a objetos': 'section1/u04/teoria/PROG-U4.3.-POO.md'
- '4.3.2.-Kotlin: POO': 'section1/u04/teoria/PROG-U4.3.-kotlinPOO.md'
- '4.4.-Kotlin: Resumen': 'section1/u04/teoria/PROG-U4.4.-kotlinResumen.md'
- 'Práctica 4.2: Kotlin POO I': 'section1/u04/practica/PROG-U4.-Practica002.md'
- 'Práctica 4.3: Kotlin POO II': 'section1/u04/practica/PROG-U4.-Practica003.md'
- 'Práctica 4.4: Kotlin POO III': 'section1/u04/practica/PROG-U4.-Practica004.md'
- 'Práctica 4.5: Kotlin POO IV': 'section1/u04/practica/PROG-U4.-Practica005.md'
- 'Práctica 4.6: Prueba I': 'section1/u04/practica/PROG-U4.-Practica006.md'
- 'Práctica 4.7: Grupos I': 'section1/u04/practica/PROG-U4.-Practica007.md'
- 'Práctica 4.8: Grupos II': 'section1/u04/practica/PROG-U4.-Practica008.md'
- 'U5: Kotlin: PPO y creación de e.d.':
- 'section1/u05/index.md'
- '5.1.-Revisitando las clases y los objetos': 'section1/u05/teoria/PROG-U5.1.-clasesYobjetos.md'
- '5.2.-Visibilidad en miembros': 'section1/u05/teoria/PROG-U5.2.-VisibilidadEnClases.md'
- '5.3.-Herencia': 'section1/u05/teoria/PROG-U5.3.-Herencia.md'
- 'Práctica 5.1: Relación de ejercicios': 'section1/u05/practica/PROG-U5.-Practica001.md'
- 'U6: Kotlin: Creación de programas con POO':
- 'section1/u06/index.md'
- '6.1.-Jerarquía de Clases': 'section1/u06/teoria/PROG-U6.1.-jerarquiaDeClases.md'
- '6.2.-Ejemplo': 'section1/u06/teoria/PROG-U6.2.-ejemploYActividad.md'
- '6.3.-Principios SOLID': 'section1/u06/teoria/PROG-U6.3.-principiosSOLID.md'
- '6.4.-Comentarios y documentación': 'section1/u06/teoria/PROG-U6.4.-comentariosYDocumentacion.md'
- 'U7: Kotlin: Entrada/Salida y GUI':
- 'section1/u07/index.md'
- '7.1.-Sistema archivos:E/S': 'section1/u07/teoria/PROG-U7.1.-SistemaArchivos.md'
- '7.2.-Entrada/Salida estandar': 'section1/u07/teoria/PROG-U7.2.-ConsolaTeclado.md'
- '7.2.1.-Lectura desde teclado': 'section1/u07/teoria/PROG-U7.2.1.-ConsolaTecladoExpansion.md'
- '7.3.-Gestión Archivos': 'section1/u07/teoria/PROG-U7.3.-File.md'
- '7.4.-Lectura/Escritura Archivos': 'section1/u07/teoria/PROG-U7.4.-LecturaEscritura.md'
- '7.4.1.-Archivo de texto': 'section1/u07/teoria/PROG-U7.4.1.-TextFile.md'
- '7.5.-GUI': 'section1/u07/teoria/PROG-U7.5.-GUI.md'
- 'U9: Acceso a base de datos relacionales':
- 'section1/u09/index.md'
- '9.1.-Acceso a BBDD': 'section1/u09/teoria/PROG-U9.1.-AccesoBBDD.md'
- '9.2.-JDBC: Básico': 'section1/u09/teoria/PROG-U9.2.-JDBC-1.md'
- '9.3.-JDBC: Prepared statement': 'section1/u09/teoria/PROG-U9.3.-JDBC-2.md'
- '9.4.-DAO': 'section1/u09/teoria/PROG-U9.4.-DAO.md'
- '9.5.-Otros aspectos': 'section1/u09/teoria/PROG-U9.5.-OtrosAspectos.md'
- 'Práctica 9.1: Acceso a datos I': 'section1/u09/practica/PROG-U9.-Practica001.md'
## ***********************
## ENTORNOS DE DESARROLLO
## ***********************
- 'Entornos de desarrollo':
- 'section3/index.md'
- 'U1: Introducción al desarrollo de software':
- 'section3/u01/index.md'
- '1.1.-Software y Hardware': 'section3/u01/teoria/EDES-U1.1.-Software-PC.md'
- '1.2.-Código fuente, objeto y ejecutable': 'section3/u01/teoria/EDES-U1.2.-CodigoFuenteObjetoEjecutable.md'
- '1.3.-Código intermedio': 'section3/u01/teoria/EDES-U1.3.-CodigoIntermedio.md'
- '1.4.-Traductores': 'section3/u01/teoria/EDES-U1.4.-Traductores.md'
- '1.5.-Lenguajes de programación': 'section3/u01/teoria/EDES-U1.5.-Lenguajes.md'
- '1.6.-Herramientas y funcionalidades': 'section3/u01/teoria/EDES-U1.6.-FuncionalidadesHerramientas.md'
- 'Práctica 1.10: Preguntas sobre actividades': 'section3/u01/practica/EDES-U1.-Practica010.md'
- 'Práctica 1.11: Elementos de desarrollo': 'section3/u01/practica/EDES-U1.-Practica011.md'
- '1.7.-Proceso de desarrollo': 'section3/u01/teoria/EDES-U1.7.-FasesDesarrollo.md'
# - 'Práctica 1.1: Lenguajes de programación': 'section3/u01/practica/EDES-U1.-Practica001.md'
# - 'Práctica 1.2: Herramientas para generar programa': 'section3/u01/practica/EDES-U1.-Practica002.md'
- 'Práctica 1.3: Scrum': 'section3/u01/practica/EDES-U1.-Practica003.md'
- 'U2: Entornos de desarollo integrado':
- 'section3/u02/index.md'
- '2.1.-IDEs': 'section3/u02/teoria/EDES-U2.1.-IDEs.md'
- '2.2.-Modulos': 'section3/u02/teoria/EDES-U2.2.-Modulos.md'
- '2.3.-Personalización': 'section3/u02/teoria/EDES-U2.3.-Personalizacion.md'
- '2.4.-Actualizaciones': 'section3/u02/teoria/EDES-U2.4.-ActualizacionIDEs.md'
- '2.5.-Ejecutables en IDEs': 'section3/u02/teoria/EDES-U2.5.-Ejecutables.md'
- '2.6.-Evaluación de IDEs': 'section3/u02/teoria/EDES-U2.6.-Evaluacion.md'
- 'Práctica 2.2: Evaluación IDEs': 'section3/u02/practica/EDES-U2.-Practica002.md'
# - 'Práctica 2.1: Herramientas de desarrollo': 'section3/u02/practica/EDES-U2.-Practica001.md'
- 'U3: Diseño y diagramas de clases':
- 'section3/u03/index.md'
- '3.1.-Introducción a UML': 'section3/u03/teoria/EDES-U3.1.-UML.md'
- '3.2.-Diagrama de clases': 'section3/u03/teoria/EDES-U3.2.-DiagramaClases.md'
- '3.3.-Identificación de clases': 'section3/u03/teoria/EDES-U3.3.-IdentifClases.md'
- '3.4.-Acoplamiento y cohesión': 'section3/u03/teoria/EDES-U3.4.-AcopCohe.md'
- 'U4: Diagramas de Comportamiento UML':
- 'section3/u04/index.md'
- '4.1.-Diagramas de Casos de Uso': 'section3/u04/teoria/EDES-U4.1.-DiagramaCasoUso.md'
- '4.3.-Diagramas de Secuencia': 'section3/u04/teoria/EDES-U4.3.-DiagramaSecuencias.md'
- 'U5: Pruebas y Depuración':
- 'section3/u05/index.md'
- '5.1.-Pruebas': 'section3/u05/teoria/EDES-U5.1.-Pruebas.md'
- '5.2.-Test unidad y TDD': 'section3/u05/teoria/EDES-U5.2.-TestUnidadYTDD.md'
- '5.2.1.-Kotest': 'section3/u05/teoria/EDES-U5.2.1.-Kotest.md'
- '5.2.2.-MockK': 'section3/u05/teoria/EDES-U5.2.2.-Mockk.md'
- '5.3.-Depuración': 'section3/u05/teoria/EDES-U5.3.-Depuracion.md'
- '5.3.1.-Logging': 'section3/u05/teoria/EDES-U5.3.1.-LoggingCode.md'
- 'U6: SCV, refactorización y documentación':
- 'section3/u06/index.md'
- '6.1.-Sistemas de control de versiones': 'section3/u06/teoria/EDES-U6.1.-Git_Github.md'
- '6.2.-Refactorización': 'section3/u06/teoria/EDES-U6.2.-Refactorizacion.md'
- '6.3.-Analizador de código': 'section3/u06/teoria/EDES-U6.3.-AnalizadorCodigo.md'
- '6.4.-Documentación': 'section3/u06/teoria/EDES-U6.4.-Documentacion.md'
- 'Práctica 6.1: Git/Github básico': 'section3/u06/practica/EDES-U6.-Practica001.md'
- 'Práctica 6.2: Git/Github merge': 'section3/u06/practica/EDES-U6.-Practica002.md'
- 'Práctica 6.3: Git/Github rebase I': 'section3/u06/practica/EDES-U6.-Practica003.md'
- 'Práctica 6.4: Git/Github rebase II': 'section3/u06/practica/EDES-U6.-Practica004.md'
- 'Práctica 6.5: Git/Github Pull Request (PR)': 'section3/u06/practica/EDES-U6.-Practica005.md'
## ***********************
## INCIDENTES DE SEGURIDAD
## ***********************
- 'Incidentes de seguridad':
- 'section2/index.md'
- 'U0: Nos conocemos': 'section2/u00/recursos/IS-U0.-DinamicaPresentacion.md'
- 'U1: Principios generales y planes de seguridad':
- 'section2/u01/index.md'
- '1.1.-PrincipiosGenerales': 'section2/u01/teoria/IS-U1.1.1.-PrincipiosGenerales.md'
- '1.2.1.-Plan director de seguridad': 'section2/u01/teoria/IS-U1.2.1.-PlanDirectorDeSeguridad.md'
- '1.2.2.-Análisis de Riesgos': 'section2/u01/teoria/IS-U1.2.2.-AnalisiDeRiesgos.md'
- '1.3.-Puesto de trabajo': 'section2/u01/teoria/IS-U1.3.1.-ProteccionDelPuestoDeTrabajo.md'
- '1.4.-Concienciación y formación': 'section2/u01/teoria/IS-U1.4.1.-PlanDeConcienciacion.md'
- '1.4.-Concienciación y formación': 'section2/u01/teoria/IS-U1.4.1.-PlanDeConcienciacion-Eje.md'
- 'U2: Detección y análisis de incidentes de seguridad':
- 'section2/u02/index.md'
- '2.1.-Taxonomía de incidentes': 'section2/u02/teoria/IS-U2.1.1.-TaxonomiaDeIncidentes.md'
- '2.2.1.-SOC - Servicios y herramientas': 'section2/u02/teoria/IS-U2.2.1.-SOC-ServiciosYHerramientas.md'
- '2.2.2.1.-Qué es un SIEM': 'section2/u02/teoria/IS-U2.2.2.-Que es un SIEM.md'
- '2.2.2.2.-Casos de uso': 'section2/u02/teoria/IS-U2.2.2.-CasosUso.md'
- '2.2.3.-Implantación de un SIEM': 'section2/u02/teoria/IS-U2.2.3.-SIEM-Implantacion.md'
- '2.2.4.-Evolución de SIEM': 'section2/u02/teoria/IS-U2.2.4.-SIEM-Evolucion.md'
- '2.3.1.-Fuentes Abiertas. OSINT': 'section2/u02/teoria/IS-U2.3.1.-FuentesAbiertas-OSINT.md'
- '2.4.1.-Documentación de Incidentes': 'section2/u02/teoria/IS-U2.4.1.-DocumentacionDeIncidentes.md'
- '2.4.2.-Cómo escribir informes técnicos': 'section2/u02/teoria/IS-U2.4.2.-ComoEscribirInformesTecnicos.md'
- 'Práctica 2.1: Taxonomía': 'section2/u02/practicas/IS-U2.-Practica001.md'
- 'Práctica 2.2: SIEM (ELK) e IDS (Snort)': 'section2/u02/practicas/IS-U2.-Practica002.md'
- 'U3: Investigación de incidentes':
- 'section2/u03/index.md'
- '3.1.1.-Recopilación de evidencias': 'section2/u03/teoria/IS-U3.1.1.-RecopilacionDeEvidencias.md'
- '3.1.2.-Procedimiento': 'section2/u03/teoria/IS-U3.1.2.-Procedimiento.md'
- '3.3.1.-Investigación incidentes:MITRE': 'section2/u03/teoria/IS-U3.3.1.-MITRE.md'
- '3.3.2.-Investigación de incidentes': 'section2/u03/teoria/IS-U3.3.2.-InvestigacionDeIncidentes.md'
- '3.5.1.-Contención de incidentes': 'section2/u03/teoria/IS-U3.5.1.-Contencion.md'
## ***********************
## DESPLIEGUE DE APLI. WEB.
## ***********************
- 'Despliegue de aplicaciones Web':
- 'section4/index.md'
- 'U1: Documentación y Control de versiones':
- 'section4/u01/index.md'
- '1.1.-DevOps': 'section4/u01/teoria/DAW-U1.1.-DevOps.md'
- '1.2.-Documentación': 'section4/u01/teoria/DAW-U1.2.-Documentacion.md'
- '1.3.-Git Github': 'section4/u01/teoria/DAW-U1.3.-GitGitHub.md'
- '1.4.-Github Action': 'section4/u01/teoria/DAW-U1.4.-GitHubAction.md'
- 'Práctica 1.1: GH Action para documentación': 'section4/u01/practica/DAW-U1.-Practica001.md'
- 'U2: Contenedores Docker':
- 'section4/u02/index.md'
- '2.1.-Introducción a Docker': 'section4/u02/teoria/DAW-U2.1.-IntroduccionDocker.md'
- '2.2.-Imágenes Docker': 'section4/u02/teoria/DAW-U2.2.-ImagenesDocker.md'
- '2.3.-Almacenamiento y Redes': 'section4/u02/teoria/DAW-U2.3.-AlmacenamientoRedes.md'
- 'Práctica 2.1: Aplicación Guestbook': 'section4/u02/practica/DAW-U2.-Practica001.md'
- 'Práctica 2.2: Aplicación Temperaturas': 'section4/u02/practica/DAW-U2.-Practica002.md'
- 'Práctica 2.3: WordPress con MariaDB': 'section4/u02/practica/DAW-U2.-Practica003.md'
- 'Práctica 2.4: Tomcat con Nginx': 'section4/u02/practica/DAW-U2.-Practica004.md'
- '2.4.-Docker Compose': 'section4/u02/teoria/DAW-U2.4.-DockerCompose.md'
- 'Práctica 2.5: Guestbook con Docker Compose': 'section4/u02/practica/DAW-U2.-Practica005.md'
- 'Práctica 2.6: Temperaturas con Docker Compose': 'section4/u02/practica/DAW-U2.-Practica006.md'
- 'Práctica 2.7: WordPress con Docker Compose': 'section4/u02/practica/DAW-U2.-Practica007.md'
- 'Práctica 2.8: Tomcat con Docker Compose': 'section4/u02/practica/DAW-U2.-Practica008.md'
- '2.5.-Creación de Imágenes': 'section4/u02/teoria/DAW-U2.5.-CreacionImagenes.md'
- 'Práctica 2.9: Imagen con página estática': 'section4/u02/practica/DAW-U2.-Practica009.md'
- 'Práctica 2.10: Imagen con aplicación PHP': 'section4/u02/practica/DAW-U2.-Practica010.md'
- 'Práctica 2.11: Imagen PHP con Base de Datos': 'section4/u02/practica/DAW-U2.-Practica011.md'
- 'Práctica 2.12: Imagen con aplicación Java (Tomcat)': 'section4/u02/practica/DAW-U2.-Practica012.md'
- 'PROYECTO FINAL: Sistema Blog con Microservicios': 'section4/u02/practica/DAW-U2.-Proyecto-Final.md'
- 'U3: Arquitectura de Aplicaciones Web':
- 'section4/u03/index.md'
- '3.1.-Desarrollo y Despliegue Web': 'section4/u03/teoria/DAW-U3.1.-DesarrolloDespliegueWeb.md'
- '3.1.-Introducción al Desarrollo Web': 'section4/u03/teoria/DAW-U3.1.-IntroDesarrolloWeb.md'
- '3.2.-Arquitecturas Web': 'section4/u03/teoria/DAW-U3.2.-ArquitecturasWeb.md'
- '3.3.-Protocolo HTTP': 'section4/u03/teoria/DAW-U3.3.-ProtocoloHTTP.md'
- '3.4.-Servicios Web y APIs': 'section4/u03/teoria/DAW-U3.4.-ServiciosWebAPIs.md'
- '3.5.-Web Dinámica': 'section4/u03/teoria/DAW-U3.5.-WebDinamica.md'
- '3.6.-Lenguajes y Frameworks': 'section4/u03/teoria/DAW-U3.6.-LenguajesFrameworks.md'
- '3.7.-Servidores Web': 'section4/u03/teoria/DAW-U3.7.-ServidoresWeb.md'
- '3.8.-Despliegue de Aplicaciones': 'section4/u03/teoria/DAW-U3.8.-DespliegueAplicaciones.md'
- '3.9.-Seguridad y Monitorización': 'section4/u03/teoria/DAW-U3.9.-SeguridadMonitorizacion.md'
- 'U4: Servidores Web':
- 'section4/u04/index.md'
- '4.1.- Despliegue de una web statica': 'section4/u04/practica/DAW-U4.-Practica001.md'
- 'U5: Servidores de aplicaciones':
- 'section4/u05/index.md'
- '5.1.-Servidores de aplicaciones': 'section4/u05/teoria/DAW-U5.1.-ServidoresAplicaciones.md'
- 'P5.1.-WildFly y Maven': 'section4/u05/practica/DAW-U5.-Practica001.md'
- 'P5.2.-WildFly en contenedor y Gradle': 'section4/u05/practica/DAW-U5.-Practica002.md'
- 'P5.3.-Informe RA3 (sobre P5.2)': 'section4/u05/practica/DAW-U5.-Practica003.md'
- 'Blog': 'blog.md'
- 'Tags': 'tags.md'
- 'Acerca de': 'about.md'
extra_css:
- assets/stylesheets/mermaid.css
extra_javascript:
- https://unpkg.com/mermaid@10/dist/mermaid.min.js
- https://cdn.jsdelivr.net/npm/svg-pan-zoom@3.6.1/dist/svg-pan-zoom.min.js
- assets/javascripts/mermaid-init-v2.js
theme:
name: material
language: es
logo: assets/ms-icon-144x144.png
favicon: assets/favicon-96x96.png
font:
text: Roboto
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/toggle-switch
name: Switch to light mode
features:
- navigation.tabs # When tabs are enabled, top-level sections are rendered in a menu layer below the header for viewports above 1220px, but remain as-is on mobile.1
- navigation.tabs.sticky # When sticky tabs are enabled, navigation tabs will lock below the header and always remain visible when scrolling down.
- navigation.sections # When sections are enabled, top-level sections are rendered as groups in the sidebar for viewports above 1220px, bu
# - navigation.instant # When instant loading is enabled, clicks on all internal links will be intercepted and dispatched via XHR without fully reloading the page. navigation.instant feature cannot be enabled if blog paging is on
- navigation.tracking # When anchor tracking is enabled, the URL in the address bar is automatically updated with the active anchor as highlighted in the table of contents
- navigation.expand # When expansion is enabled, the left sidebar will expand all collapsible subsections by default, so the user doesn't have to open subsections manually.
- navigation.indexes # When section index pages are enabled, documents can be directly attached to sections, which is particularly useful for providing overview pages.
- navigation.top # A back-to-top button can be shown when the user, after scrolling down, starts to scroll up again
- content.tooltips #Tooltips
- search.suggest
- search.highlight
- search.share
- content.code.annotate #Code annotations offer a comfortable and friendly way to attach arbitrary content to specific sections of code blocks by adding numeric markers in block and inline comments in the language of the code block. Add the following to mkdocs.yml to enable them globally:
icon:
tag:
etiqueta: octicons/tag-24
markdown_extensions:
- toc:
permalink: true
title: Contenidos
- tables
- meta
- abbr #Tooltips
- attr_list #Tooltips & This configuration adds the ability to align images, add captions to images (rendering them as figures), and mark large images for lazy-loading.
- md_in_html # https://squidfunk.github.io/mkdocs-material/reference/images/ y https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#markdown-in-html
- admonition
- def_list
- footnotes
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.snippets: #Tooltips https://squidfunk.github.io/mkdocs-material/reference/tooltips/#adding-tooltips
auto_append:
- includes/abbreviations.md
# Python Markdown Extensions
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
# - pymdownx.emoji:
# emoji_index: !!python/name:materialx.emoji.twemoji
# emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.tilde
- pymdownx.tabbed:
alternate_style: true #The Tabbed extension allows the usage of content tabs, a simple way to group related content and code blocks under accessible tabs.
- pymdownx.tasklist:
custom_checkbox: true #The Tasklist extension allows for the usage of GitHub Flavored Markdown inspired task lists, following the same syntactical conventions.
# Additional extensions for images. date: 2025/11/04
- pymdownx.blocks.caption # https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#caption y https://facelessuser.github.io/pymdown-extensions/extensions/blocks/plugins/caption/
plugins:
- tags:
tags_file: 'tags.md'
- search:
lang: es
# - glightbox # https://squidfunk.github.io/mkdocs-material/reference/images/
- blogging: # https://liang2kl.codes/mkdocs-blogging-plugin/
locale: es
# {{ blog_content }}
dirs: # The directories to be included, dentro de docs
- blog
size: 5
paging: true # Paging
show_total: true # 'total pages' label
# full_content: true # Use the full content for blog description
theme: # Use a predefined theme
name: card
features:
tags: {}
# - social:
# cards_color:
# fill: "#0FF1CE"
# text: "#FFFFFF"
# cards: !ENV [MKDOCS_SOCIAL_CARDS, false]
# cards_dir: assets/images/social
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/revilofe
#name: Twitter
- icon: fontawesome/solid/envelope
link: mailto:<efernandez@iesrafaelalberti.es>
name: e-mail
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/efoliver
#name: LinkedIn
# social:
# - type: 'github'
# link: 'https://github.com/revilofe'
# - type: 'twitter'
# link: 'https://twitter.com/revilofe'
version:
provider: mike
tags:
etiqueta: etiqueta
search:
language: "es"
analytics: #https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics
provider: google
property: G-GT5TGHD4YQ
feedback:
title: ¿Te ha sido útíl la página?
ratings:
- icon: material/emoticon-happy-outline
name: Me ha sido de utilidad.
data: 1
note: >-
Gracias por tu feedback!
- icon: material/emoticon-sad-outline
name: La página podría mejorar.
data: 0
note: >-
Gracias por tu feedback! Ayudame a mejorarla usando este formulario. <a href="https://forms.gle/bBtzHfjb41unBb5o9" target=_blank>feedback form</a>.
generator: false
copyright: 2021-2022 Eduardo Fernández <a href="https://twitter.com/revilofe" target=_blank>@revilofe</a> - Licencia CC BY-NC-SA