I am trying to build a page that will give support information/an About US page but I think I am missing something. Can anyone help, please?
So I added a new category to my app built from the "Videoplayer" example so my category xml looks like this:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<categories>
<!-- banner_ad: optional element which displays an at the top level category screen -->
<category title="Recent Episodes" description="Watch Recent Episodes" sd_img="http://selectbroadcasting.org/roku/examples/source/SRBS/images/recent-episodes-SD.png" hd_img="http://selectbroadcasting.org/roku/examples/source/SRBS/images/recent-episodes-HD.png">
<categoryLeaf title="Time for Hope TV Episodes" description="" feed="http://selectbroadcasting.org/roku/examples/source/SRBS/xml/tfhplaylist.xml" />
</category>
<category title="About Us" description="About Time for Hope TV" sd_img="http://selectbroadcasting.org/roku/examples/source/SRBS/images/about-us-SD.png" hd_img="http://selectbroadcasting.org/roku/examples/source/SRBS/images/about-us-HD.png">
<categoryLeaf title="About Time for Hope TV" description="" feed="http://selectbroadcasting.org/roku/examples/source/SRBS/xml/tfh-aboutus.xml" />
</category>
</categories>
Then I added a new xml file based on my video feed xml file and just took out the video portion and put in my text for the page...it didn't work. The telnet said "Can't parse feed" Here is what my xml looks like for the About Us page:
<?xml version="1.0" encoding="utf-8"?>
<feed>
<!-- resultLength indicates the total number of results for this feed -->
<resultLength>1</resultLength>
<!-- endIndix indicates the number of results for this *paged* section of the feed -->
<endIndex>1</endIndex>
<item sdImg="http://selectbroadcasting.org/roku/examples/source/SRBS/images/About_Us_TimeForHope_SD.png" hdImg="http://selectbroadcasting.org/roku/examples/source/SRBS/images/About_Us_TimeForHope_HD.png">
<title>l</title>
<contentId></contentId>
<contentType>text</contentType>
<contentQuality></contentQuality>
<streamFormat></streamFormat>
<media>
<streamQuality></streamQuality>
<streamBitrate></streamBitrate>
<streamUrl></streamUrl>
</media>
<synopsis>Time for Hope is a weekly Faith-Based Mental Health talk and interview television show designed to help people find hope and meaning in their lives. Host, Dr. Freda V. Crews, skillfully guides interactive interviews with nationally known authors, clinicians, biblical scholars and others who freely share their knowledge, expertise and life experiences to help hurting people find hope. With in-depth discussions, Dr. Crews and her guests offer practical solutions to real life problems and challenge potentially millions of viewers each week to put their hope in Jesus Christ for genuine peace, healing and recovery.<p> If you would like to get in touch with, please call us toll free at 1-800-669-9133 or email us at info@timeforhope.org.
</synopsis>
<genres>Time for Hope</genres>
<runtime>1750</runtime>
</item>
</feed>
I am sure it's not even close to being right, but I can't find any information on how to build a page like this with the correct feed tags, etc. Any help would be much appreciated!
Dean Anderson