/usr/share/doc/libxml2-devel
NameSizeModeActions
examples/-0755rm
html/-0755rm
tutorial/-0755rm
APIchunk0.html301330644editdlrm
APIchunk1.html373650644editdlrm
APIchunk2.html407660644editdlrm
APIchunk3.html361100644editdlrm
APIchunk4.html362040644editdlrm
APIchunk5.html297640644editdlrm
APIchunk6.html292120644editdlrm
APIchunk7.html328560644editdlrm
APIchunk8.html302970644editdlrm
APIchunk9.html287000644editdlrm
APIchunk10.html642300644editdlrm
APIchunk11.html326500644editdlrm
APIchunk12.html876010644editdlrm
APIchunk13.html618210644editdlrm
APIchunk14.html455890644editdlrm
APIchunk15.html442810644editdlrm
APIchunk16.html362940644editdlrm
APIchunk17.html483950644editdlrm
APIchunk18.html429430644editdlrm
APIchunk19.html365700644editdlrm
APIchunk20.html328200644editdlrm
APIchunk21.html375730644editdlrm
APIchunk22.html576480644editdlrm
APIchunk23.html638550644editdlrm
APIchunk24.html940330644editdlrm
APIchunk25.html412310644editdlrm
APIchunk26.html308280644editdlrm
APIchunk27.html337810644editdlrm
APIchunk28.html582400644editdlrm
APIchunk29.html134850644editdlrm
APIconstructors.html595020644editdlrm
APIfiles.html3288580644editdlrm
APIfunctions.html2172420644editdlrm
APIsymbols.html3260980644editdlrm
architecture.html68650644editdlrm
bugs.html102350644editdlrm
catalog.gif61050644editdlrm
catalog.html236480644editdlrm
contribs.html76800644editdlrm
docs.html76270644editdlrm
DOM.gif31660644editdlrm
DOM.html66190644editdlrm
downloads.html82900644editdlrm
encoding.html194160644editdlrm
entities.html94450644editdlrm
example.html131070644editdlrm
FAQ.html211380644editdlrm
guidelines.html176610644editdlrm
help.html63150644editdlrm
index.html106710644editdlrm
interface.html82130644editdlrm
intro.html72090644editdlrm
library.html149970644editdlrm
libxml.gif76920644editdlrm
libxml2-api.xml.gz1619110644editdlrm
Libxml2-Logo-90x34.gif30700644editdlrm
Libxml2-Logo-180x168.gif81950644editdlrm
namespaces.html83390644editdlrm
news.html2037840644editdlrm
python.html199060644editdlrm
redhat.gif6970644editdlrm
searches.html75590644editdlrm
smallfootonly.gif27720644editdlrm
structure.gif55590644editdlrm
threads.html71150644editdlrm
tree.html79130644editdlrm
upgrade.html126670644editdlrm
w3c.png20280644editdlrm
xml.html3448840644editdlrm
xmlcatalog_man.html140720644editdlrm
xmldtd.html136470644editdlrm
XMLinfo.html67990644editdlrm
xmlio.html127970644editdlrm
xmllint.html233110644editdlrm
xmlmem.html144430644editdlrm
xmlreader.html201380644editdlrm
XSLT.html57770644editdlrm
Edit: /usr/share/doc/libxml2-devel/XMLinfo.html (6799B)
XML
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

XML

Main Menu
Related links

XML is a standard for markup-based structured documents. Here is an example XML document:

<?xml version="1.0"?>
<EXAMPLE prop1="gnome is great" prop2="&amp; linux too">
  <head>
   <title>Welcome to Gnome</title>
  </head>
  <chapter>
   <title>The Linux adventure</title>
   <p>bla bla bla ...</p>
   <image href="linus.gif"/>
   <p>...</p>
  </chapter>
</EXAMPLE>

The first line specifies that it is an XML document and gives useful information about its encoding. Then the rest of the document is a text format whose structure is specified by tags between brackets. Each tag opened has to be closed. XML is pedantic about this. However, if a tag is empty (no content), a single tag can serve as both the opening and closing tag if it ends with /> rather than with >. Note that, for example, the image tag has no content (just an attribute) and is closed by ending the tag with />.

XML can be applied successfully to a wide range of tasks, ranging from long term structured document maintenance (where it follows the steps of SGML) to simple data encoding mechanisms like configuration file formatting (glade), spreadsheets (gnumeric), or even shorter lived documents such as WebDAV where it is used to encode remote calls between a client and a server.

Daniel Veillard