Go to the first, previous, next, last section, table of contents.
Here is a short example of an XML file
<?xml version="1.0" encoding="ISO-8859-1" ?>
<RDF xmlns:rdf="http://www.w3.org/TR/1999/REC-rdf-syntax-19990222#"
xmlns="http://www.senga.org/">
<Table>
<![CDATA[
CREATE TABLE urldemo (
rowid int(11) DEFAULT '0' NOT NULL auto_increment,
created datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
modified timestamp(14),
info enum('active','inactive') DEFAULT 'active',
url char(128),
comment char(255),
UNIQUE cdemo1 (rowid)
)
]]>
</Table>
<Catalog>
<navigation>theme</navigation>
<tablename>urldemo</tablename>
<name>urltheme</name>
</Catalog>
<Category>
<name>News</name>
<rowid>12</rowid>
<parent>1</parent>
</Category>
<Link>
<row>135</row>
<category>12</category>
</Link>
<Record table="urldemo">
<url>http://www.mediaslink.com/</url>
<comment>Medias Link</comment>
<rowid>135</rowid>
</Record>
<Sync/>
</RDF>
Go to the first, previous, next, last section, table of contents.