So I have bladerunner working now. I have some questions regarding catagories.txt.
Here is a sample from my xml file:
Code:
<programme start="20070110223000 -0500" stop="20070111004500 -0500" channel="I10021.labs.zap2it.com">
<title lang="en">Deliverance</title>
<desc lang="en">Four Atlanta businessmen encounter unexpected terrors during a rafting trip down a raging backwoods river.</desc>
<credits>
<director>John Boorman</director>
<actor>Jon Voight</actor>
<actor>Burt Reynolds</actor>
<actor>Ned Beatty</actor>
<actor>Ronny Cox</actor>
<actor>Bill McKinney</actor>
<actor>Herbert Coward</actor>
<actor>James Dickey</actor>
<actor>Ed Ramey</actor>
<actor>Seamon Glass</actor>
<writer>James Dickey</writer>
<producer>John Boorman</producer>
</credits>
<date>1972</date>
<category lang="en">Adventure</category>
<length units="minutes">109</length>
<episode-num system="dd_progid">MV003378.0000</episode-num>
<rating system="VCHIP">
<value>TV-14</value>
</rating>
<rating system="advisory">
<value>Adult Situations</value>
</rating>
<rating system="advisory">
<value>Language</value>
</rating>
<rating system="advisory">
<value>Violence</value>
</rating>
<rating system="MPAA">
<value>R</value>
</rating>
<star-rating>
<value>3.5/4</value>
</star-rating>
</programme>
Notice how the xml file never explicitly states that this is a movie? Instead it just says "Adventure". How should I modify catagories.txt to accept this entry as a movie?
TIA