Difference between revisions of "XML"

From Fab Lab Bcn WIKI
Jump to: navigation, search
(Mac)
(Edit and create)
Line 7: Line 7:
 
= Edit and create =
 
= Edit and create =
  
== General purpos text/code editors ==
+
== General purpose spreadsheet tools ==
 +
* Microsoft Excel
 +
* Libre Office http://www.libreoffice.org/download (free)
 +
* Open Office http://www.openoffice.org/ (free)
  
 +
 +
== General purpose text/code editors ==
 
=== Mac ===
 
=== Mac ===
 
*TextWrangler http://www.barebones.com/products/TextWrangler/
 
*TextWrangler http://www.barebones.com/products/TextWrangler/
Line 21: Line 26:
 
== XML editors ==
 
== XML editors ==
 
*Microsoft XML Notepad http://www.microsoft.com/download/en/details.aspx?id=7973
 
*Microsoft XML Notepad http://www.microsoft.com/download/en/details.aspx?id=7973
 +
*Serna XML Editor http://www.syntext.com/products/serna-free/
 +
 +
== Google Docs ==
 +
Google docs https://docs.google.com have a spreadsheet tool. However they do not offer native XML on their visual interface you can retrieve any spreadsheet you create in xml using its API http://code.google.com/apis/spreadsheets/data/3.0/reference.html
  
 
= Parsing =
 
= Parsing =

Revision as of 12:24, 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.

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

General purpose spreadsheet tools


General purpose text/code editors

Mac

Win

XML editors

Google Docs

Google docs https://docs.google.com have a spreadsheet tool. However they do not offer native XML on their visual interface you can retrieve any spreadsheet you create in xml using its API http://code.google.com/apis/spreadsheets/data/3.0/reference.html

Parsing

Processing