I've added and tested the xtremespeeds.net rss feed to your urltranslate parser.
Here is the code to be added:
Code:
else if (strpos($url, "xtremespeeds.net") !== false)
{
// make xtremespeeds download url
// url in rss: http://xtremespeeds.net/rss.php?secret_key=01010101010101&feedtype=download&timezone=-5&showrows=50&categories=47
// has to be: http://xtremespeeds.net/download.php?type=rss&secret_key=01010101010101&id=12345
// set type=rss then get secret_key and id
$id = $_GET["id"];
$secret_key = $_GET["secret_key"];
$torrentUrl = "http://xtremespeeds.net/download.php?type=rss&secret_key=$secret_key&id=$id";
}
The xtremespeed.net users perform the following:
Categories to retrieve: Select Any
Feed Type: Download Link
Rows Per Page: 50
Then just click on
Generate RSS Link Button and copy result into a show within ted.
On a side note.... I'm not able to build ted.jar so I can replace the one currently installed on my Mac (Running and Debuging from within Eclipse is fine). When I choose to export as jar or jar executable from Eclipse, I always get an exception upon startup. Any suggestions on creating ted.jar?
Thanks!