Diferencia entre revisiones de «Usuario:Lmorillas/modulo lenguajes de marcas/xml»
De WikiEducator
Línea 14: | Línea 14: | ||
{{/ventajas}} | {{/ventajas}} | ||
+ | |||
+ | {{/presentacion css}} | ||
<!-- | <!-- | ||
== Intro a XML == | == Intro a XML == |
Revisión de 19:24 22 dic 2011
Contenido
Documentación general
- http://www.ibm.com/developerworks/xml/newto/
- http://www.w3schools.com/xml/
- http://html.conclase.net/recursos/especificaciones
- Tecnologías xml: http://www.w3c.es/divulgacion/guiasbreves/tecnologiasxml
¿Qué es XML?
Lectura inicial
Echa un vistazo a los siguientes links:
|
Un ejemplo
XML (EXtensible Markup Language) es un modo multiplataforma de representar datos. XML te permite crear datos que se podrán leer por cualquier aplicación en cualquier plataforma. Puedes crearlo y editarlo a mano por estar basado en tecnologías de etiquetas.
<?xml version="1.0"?> <note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </note>
Listado de cursos en XML
Crea una versión en XML con la información de 5 cursos de http://plan.aragon.es/MapaRec.nsf/fmrListado?OpenForm
|
|
Ventajas de usar XML
|
|
Visualización con CSS
Documentación
- http://www.mclibre.org/consultar/xml/lecciones/xml_css.html
- http://evc-cit.info/cit041x/lecture6_example.html
- http://es.tz8.de/style-styling-xml.html
- https://www.ibm.com/developerworks/xml/tutorials/x-xmlcss (3 entregas)
En el doc xml
En el documento xml introducimos una referencia al documento .css
<?xml-stylesheet type="text/css" href="url_del_css"?>
Chuleta CSS
- Básico
long {display: none;} abbreviation {display: inline;} abbreviation * {display: inline;} * {display: block;}
- Generar contenido
title:before {content: 'Title: ';} title:after {content: ' (technical paper)';} subtitle:before {content: 'Subtitle: ';} author:before {content: 'Author: ';}
- Comillas
subtitle:before {content: open-quote;} subtitle:after {content: close-quote;}
- Atributos
author:after {content: ' (' attr(e-mail) ')';}
- Contadores
section:before { content: "Section " counter(section) "\A\A0"; counter-increment: section; white-space: pre; }
- Contenido desde uris
paper:after { content: url('disclaimer.txt'); white-space: pre; }