Search results

  1. D

    BOUNTY: irc auto downloader

    FILLED : http://forums.rutorrent.org/index.php?topic=517.0
  2. D

    BOUNTY: irc auto downloader

    so, for your examples, if you really want something that specific, it's not hard. all you need to remember is this: a period = any character a ? = anything before it 0 or 1 times a * = anything before it 0 or n times and so on....with just THAT much, you can make the filters you are asking for...
  3. D

    BOUNTY: irc auto downloader

    I'll contribute $40 to whoever can do the following: Make the IRC auto downloader in rutorrent plugin format Have all definable options in the options WebUI (This includes servers, usernames, passwords etc) Pre-compiled templates for at least as many sites as the what-auto script GUI regex...
  4. D

    BOUNTY: irc auto downloader

    well whoever wrote it can apply for the bounty. To win though it needs to be in plugin format for rutorrent.
  5. D

    Oblivion theme

    Ok thanks for the advise I began to change some stuff to can be display fine. But i don't know how can i add this in the init.js : To get the scrollbars working and the dl/ul color matched you need to add the following 3 lines to /rutorrent/css/style.css Code: .meter-value-start-color {...
  6. D

    labels column

    hi If i right understand, labels previously show like this : movies/sd movies/hd movies/dvdr series/lost series/himym series/dh with your plugin, they will be shown like this : -movies sd hd dvdr -series lost himym dh It's a great idea, i like that ^^ I hope you will...
  7. D

    calling php file from plugin on new torrent event

    I am trying to call a php file when adding torrent with the help of this code, in plugin init.php file ( its not the whole code but it works ) Code...
  8. D

    Login / Logout plugin/mod using web auth and captcha

    Quote The bad part of basic auth is that you need password a whole domain, a single path doesnt do it. With web auth (it may use basic scheme, may use digital, etc) you don't need a password to a whole domain. You may protect any path on your host. In most known (for me) web-servers. Quote...
  9. D

    Login / Logout plugin/mod using web auth and captcha

    What that guy just did is not related in any kind with ruTorrent (that interface we all know for rTorrent), it's only relationship is with apache + mod_proxy_scgi which allowed everyone to connect to xmlrpc server which rTorrent was running, so in this case i could have done from every IP/domain...
  10. D

    Login / Logout plugin/mod using web auth and captcha

    Ask and you shall receive! Next time get your shit straight dude! And if that's not proof enough let me know and I maybe I can delete all your torrents or perhaps add a few for myself?
  11. D

    Login / Logout plugin/mod using web auth and captcha

    Hi hwk, you don't need to be such rude ! You must keep in mind that this forum is internationnal and must of people here is not english spoken, so maybe you think we are rude but it's only because we use simples sentences. Now we you say that novik "don't have a clue about how ruTorrent works"...
  12. D

    Login / Logout plugin/mod using web auth and captcha

    To protect the password file from other users you can simply do a chown USER:GROUP file and then chmod 0600 file where USER and GROUP is the FastSCGI PHP user/group or the web server user/group (if using Apache + mod_php)
  13. D

    Plugin: Pause ui refresh and force refresh

    You forgot about method theWebUI.resetInterval, it called when user change update interval in settings. You must overwrite it too. And you must use another way for do this, because this.interval must be setted.
  14. D

    Plugin: Pause ui refresh and force refresh

    1) I think, you must overwrite methods theWebUI.setInterval, theWebUI.resetInterval and clear theWebUI.updTimer if webui is paused. Something like this plugin.setInterval = theWebUI.setInterval; theWebUI.setInterval = function( force ) { plugin.setInterval.call(theWebUI,force); if( /*...
  15. D

    Plugin: Pause ui refresh and force refresh

    i have no idea. rutorrent doesn't use java.
  16. D

    Plugin: Pause ui refresh and force refresh

    I'm not sure why it wouldnt' work for you....so weird...
  17. D

    Plugin: Pause ui refresh and force refresh

    Hmmm still the same, and as I said before I've noticed that hitting pause webui sometimes also doesn't work, I thought that it might be the issue of my browser (Opera), but under Chromium and FF the same situation. Maybe I have some garbage from previous versions that need to be deleted? #EDIT...
  18. D

    Plugin: Pause ui refresh and force refresh

    Hi, here language file : Code: theUILang.pausewebuiPause = "Désactiver la mise à jour de l'UI.."; theUILang.pausewebuiRefresh = "Raflaîchir l'UI.."; theUILang.pausewebuiRefresh = "Activer la mise à jour de l'UI.."; thePlugins.get("pausewebui").langLoaded();Remember to use UTF-8 to make special...
  19. D

    Plugin: Pause ui refresh and force refresh

    I'm glad to hear you all like it! Now language support is included. Give me an lang file and i will add it.