Declared namespace in this file - is it correct?

wxdqz

New Member
I have the following file which declares a library and within this library there will be music recordings and video recordings. Some of these recordings have the same attributes such as title, imageName, price etc so I have declared a namespace to distinguish between music and video recordings.

At the moment there is only one of each type in the file.

Two questions:

1. is this correct so far?

2. to declare more music and video recordings do I just declare more item elements referring to the particular namespace?

First time I used namespaces and I am bit unsure as to how they work!


<?xml version="1.0" encoding="iso-8859-1"?>

<library>
<item xmlns="http://www.w3.org/music" recId="2040" imageName="nin_prettyhatemachine.gif" numTracks="10">
<artist>Nine Inch Nails</artist>
<title>Pretty Hate Machine</title>
<category id="5">Rock</category>
<price>13.99</price>

<songs>
<track id="468" duration="230">Head Like A Hole</track>
<track id="469" duration="211">Terrible Lie</track>
<track id="470" duration="180">Down In It</track>
<track id="471" duration="255">Sanctified</track>
<track id="472" duration="244">Something I Can Never Have</track>
<track id="473" duration="202">Kinda I Want To</track>
<track id="474" duration="205">Sin</track>
<track id="475" duration="180">That's What I Get</track>
<track id="476" duration="221">Only Time</track>
<track id="477" duration="250">Ring Finger</track>
</songs>
</item>


<item xmlns="http://www.w3.org/video" recId="3000" imageName="apocalypse_now.gif" duration="9180">
<director>Francis Ford Coppola</director>
<title>Apocalypse Now</title>
<category id="0">Action and Adventure</category>
<rating>R</rating>
<year>1979</year>
<price>10.99</price>

<actors>
<actor id="0" name="Marlon Brando"></actor>
<actor id="1" name="Martin Sheen"></actor>
<actor id="2" name="Robert Duvall"></actor>
<actor id="3" name="Fredric Forest"></actor>
<actor id="4" name="Dennis Hopper"></actor>
<actor id="5" name="Scott Glenn"></actor>
<actor id="6" name="Harrison Ford"></actor>
<actor id="7" name="Laurence Fishburne"></actor>
<actor id="8" name="Som Bottoms"></actor>
</actors>
</item>
</library>
 
Back
Top