Advertisement
Guest User

Untitled

a guest
Dec 11th, 2012
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. <?php
  2. //
  3. // This file is part of rtGui. http://rtgui.googlecode.com/
  4. // Copyright (C) 2007-2011 Simon Hall.
  5. //
  6. // rtGui is free software: you can redistribute it and/or modify
  7. // it under the terms of the GNU General Public License as published by
  8. // the Free Software Foundation, either version 3 of the License, or
  9. // (at your option) any later version.
  10. //
  11. // rtGui is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. // GNU General Public License for more details.
  15. //
  16. // You should have received a copy of the GNU General Public License
  17. // along with rtGui. If not, see <http://www.gnu.org/licenses/>.
  18.  
  19. // Connect string for your local RPC/rTorrent connection:
  20. $rpc_connect="http://localhost/RPC2";
  21.  
  22. // rtorrent 'watch' directory (used for upload torrent)
  23. $watchdir="/Torrents/TorrentFiles/Auto/";
  24.  
  25. // Path to report disk usage
  26. $downloaddir="/Torrents";
  27.  
  28. // Threshold for disk usage alert (%)
  29. $alertthresh=15;
  30.  
  31. // Time between ajax calls - default 5000 (5 secs). Disable with 0
  32. $defaultrefresh=5000;
  33.  
  34. // Display tracker URL for each torrent on main page - you might want to disable this if you run lots (ie 30+ ?)
  35. // torrents - To get the tracker URL requires another RPC call for every torrent displayed.
  36. // If it's disabled, it only requires one RPC call to list all the torrents.
  37. $displaytrackerurl=TRUE;
  38.  
  39. // URL to your rtGui installation (used in RSS feed). Include trailing slash.
  40. $rtguiurl="http://192.168.0.1/rtgui/";
  41.  
  42. // Speeds for the download cap settings dialog.
  43. $defspeeds=array(5,10,15,20,30,40,50,60,70,80,90,100,125,150,200,250,300,400,500,600,700,800,900,1000,1500,2000,5000,10000);
  44.  
  45. // Start download immediately after loading torrent
  46. $load_start=FALSE;
  47.  
  48. // Enable debug tabs
  49. $debugtab=FALSE;
  50.  
  51. // Tracker colour hilighting...
  52. // Format is array(hexcolour, URL, URL, ...) The URL is a string to match identifiy tracker URL
  53. // Add as many arrays as needed.
  54. $tracker_hilite_default="#900"; // Default colour
  55. $tracker_hilite[]=array("#990000","ibiblio.org","etree.org");
  56. $tracker_hilite[]=array("#006699","another.com","tracker.mytracker.net","mytracker.com");
  57. $tracker_hilite[]=array("#996600","moretrackers.com");
  58.  
  59.  
  60. // Define your RSS feeds here - you can have as many as you like. Used in the feedreader
  61. // Feed name, feed URL, Direct download links? (0/1)
  62. $feeds[]=array("ibiblio.org","http://torrent.ibiblio.org/feed.php?blockid=3",0);
  63. $feeds[]=array("etree","http://bt.etree.org/rss/bt_etree_org.rdf",0);
  64. $feeds[]=array("Utwente","http://borft.student.utwente.nl/%7Emike/oo/bt.rss",1);
  65.  
  66. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement