Add Torrents To Deluge

By mvoncken Last update Nov 12, 2008 — Installed 5,192 times.

Archived Comments (locked)

in
Subscribe to Archived Comments 6 posts, 5 voices



Jesse Andrews Admin

The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)

 
shjoity User

bug::if the download url has a + in it it errenously turns that into a space and cannot download it

 
shjoity User

can you make it work with this userstyle?:http://userstyles.org/styles/916

however it may need to be fixed in the style, that may be more fiting

 
alala Scriptwright

These are the two statements I'm using for Demonoid-

      // Demonoid format
   if (url.match(/http:\/\/www\.demonoid\.com\/files\/download\/HTTP\//i)) {
       return true;
   }
   
         // Demonoid format II
   if (url.match(/http:\/\/www\.demonoid\.com\/files\/download\//i)) {
       return true;
   }

Someone else may find them useful :)

 
krixon User

If you search for the match() function in the script, you can add an if statement like so:

// isohunt format
if (url.match(/http:\/\/.*isohunt\.com\/download\//i)) {
    return true;
}

You will need to replace the stuff between the parens after match with an expression to match your site's URL. I can't get access to the download pages of the sites you posted to find that format though so you are own your own i'm afraid unless you can post some example urls of download links.

 
Garret User

How i can add support for torrent-communities like http://www.tntvillage.org/?act=allreleases and http://colombo-bt.org/index.php?action=torrents ? I am not very good at coding :( Can you help me please?

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel