218
edits
Note: Currently new registrations are closed, if you want an account Contact us
m |
(basic xml skelton added) |
||
Line 1: | Line 1: | ||
Lets work on the xml schema here. Like what sorts of info we need to collect. | Lets work on the xml schema here. Like what sorts of info we need to collect. | ||
Data needs to be collected | |||
<pre> | |||
Title - string, one value | |||
Artist - string, more than one | |||
Album - string, one value | |||
Genre - string, one value | |||
Track Number - integer, one value | |||
Disc Number - integer, one value | |||
Year - integer, one value | |||
Duration - time | |||
</pre> | |||
<song> | |||
<title></title> | |||
<artist> | |||
</artist> | |||
<album></album> | |||
<genre></genre> | |||
<track number></track number> | |||
<disc number></disc number> | |||
<year></year> | |||
<duration> | |||
</song> | |||
Some ideas about xml schema [http://www.w3schools.com/schema/default.asp here]. | Some ideas about xml schema [http://www.w3schools.com/schema/default.asp here]. | ||
Line 10: | Line 35: | ||
xmlns="http://fci.wikia.com" | xmlns="http://fci.wikia.com" | ||
elementFormDefault="qualified"> | elementFormDefault="qualified"> | ||
</xml> | </xml> |