Difference between revisions of "XML"

From Fab Lab Bcn WIKI
Jump to: navigation, search
(Example)
Line 1: Line 1:
'''Extensible Markup Language''' ('''XML''') is a set of rules for encoding documents in [[machine-readable]] form. It is defined in the XML 1.0 Specification<ref>{{cite web|url=http://www.w3.org/TR/REC-xml |title=XML 1.0 Specification |publisher=W3.org |date= |accessdate=2010-08-22}}</ref> produced by the [[W3C]], and several other related specifications, all [[gratis]] [[open standard]]s.<ref>{{cite web|title=W3C DOCUMENT LICENSE|url=http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231}}</ref>
+
'''Extensible Markup Language''' ('''XML''') is a set of rules for encoding documents in machine-readable form. It is defined in the XML 1.0 Specification produced by the W3C, and several other related specifications, all gratis open standards.{{cite web|title=W3C DOCUMENT LICENSE|url=http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231}}
  
The design goals of XML emphasize simplicity, generality, and usability over the [[Internet]].<ref name="XML Goals">{{cite web|title=XML 1.0 Origin and Goals|url=http://www.w3.org/TR/REC-xml/#sec-origin-goals|accessdate=July 2009}}</ref> It is a textual data format with strong support via [[Unicode]] for the languages of the world. Although the design of XML focuses on documents, it is widely used for the representation of arbitrary [[data structures]], for example in [[web service]]s.
+
The design goals of XML emphasize simplicity, generality, and usability over the Internet. It is a textual data format with strong support via Unicode for the languages of the world. Although the design of XML focuses on documents, it is widely used for the representation of arbitrary data structures, for example in web services.
  
Many [[application programming interfaces]] (APIs) have been developed that software developers use to process XML data, and several [[XML schema|schema systems]] exist to aid in the definition of XML-based languages.
+
Many application programming interfaces (APIs) have been developed that software developers use to process XML data, and several XML schema exist to aid in the definition of XML-based languages.
  
 
= Edit and create =
 
= Edit and create =
Line 10: Line 10:
  
 
== Processing ==
 
== Processing ==
 
=== Example ===
 
 
* http://processing.org/reference/XMLElement.html
 
* http://processing.org/reference/XMLElement.html

Revision as of 12:01, 7 December 2011

Extensible Markup Language (XML) is a set of rules for encoding documents in machine-readable form. It is defined in the XML 1.0 Specification produced by the W3C, and several other related specifications, all gratis open standards.Template:Cite web

The design goals of XML emphasize simplicity, generality, and usability over the Internet. It is a textual data format with strong support via Unicode for the languages of the world. Although the design of XML focuses on documents, it is widely used for the representation of arbitrary data structures, for example in web services.

Many application programming interfaces (APIs) have been developed that software developers use to process XML data, and several XML schema exist to aid in the definition of XML-based languages.

Edit and create

Parsing

Processing