RSS feed layout compatible with SABnzbd...
Posted: June 12th, 2015, 4:49 am
Hello,
This question is probably best answered by a SABnzbd developer-type person.
Due to the imminent demise of Yahoo Pipes, I've decided to code my own feed aggregator. This will run locally and act as a middle-man between my usenet indexer and my local copy of SABnzbd.
I'm hoping that a minimum XML layout can be advised in order for Sab to correctly read my feed. A sanitised adapation of my current indexer's feed results in this:
This feed is read without issue by SABnzbd at present.
My aggregator will be generating it's own XML. Can I output as shown below and still have SABnzbd read it?
Are there any mods that I should make for compatibility?
Thank you.
This question is probably best answered by a SABnzbd developer-type person.
Due to the imminent demise of Yahoo Pipes, I've decided to code my own feed aggregator. This will run locally and act as a middle-man between my usenet indexer and my local copy of SABnzbd.
I'm hoping that a minimum XML layout can be advised in order for Sab to correctly read my feed. A sanitised adapation of my current indexer's feed results in this:
Code: Select all
<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:newznab="http://www.newznab.com/DTD/2010/feeds/attributes/">
<channel>
<title>RSS title here</title>
<description>RSS description here</description>
<language>en-us</language>
<item>
<title>NZB title here</title>
<pubDate>Tue, 09 Jun 2015 19:12:13 -0600</pubDate>
<category>x264</category>
<link>https://website.com/fetch/abc123</link>
<guid>https://website.com/fetch/abc123</guid>
<newznab:attr name="category" value="6000" />
<newznab:attr name="size" value="342144435" />
<newznab:attr name="grabs" value="2" />
<newznab:attr name="comments" value="0" />
<newznab:attr name="password" value="0" />
<newznab:attr name="usenetdate" value="Tue 09 Jun 2015 19:12:13 -0600" />
<newznab:attr name="group" value="alt.binaries.etc" />
</item>
</channel>
</rss>
My aggregator will be generating it's own XML. Can I output as shown below and still have SABnzbd read it?
Code: Select all
<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>RSS title here</title>
<description>RSS description here</description>
<item>
<title>NZB title here</title>
<category>x264</category>
<link>https://website.com/fetch/abc123</link>
</item>
</channel>
</rss>
Thank you.