Search results

  1. P

    Keep track of when an item was last active

    Ok, so looking at init.js I think I can see the function that adds the timestamp for seedingtime. Code: for(var i in arr) { var s = table.getIdByCol(i); if(s=="seedingtime")...
  2. P

    Keep track of when an item was last active

    After some poking around I can see some of the other fields are called from rtorrent.js eg. in /rutorrent/js/webui.js Code: { text: theUILang.Remaining, width: "90px", id: "remaining", type: TYPE_NUMBER }is called from rtorrent.js as: Code...
  3. P

    Opera userjs: Post torrent links to ruTorrent (may also work in other browsers)

    Well, the title kind of explains it all. I have used this script myself for some time now and thought I may as well share it; who knows, maybe someone even has use for it. The script adds a ruTorrent icon next to torrent links matching the rule set defined in the script. At this moment the...
  4. P

    Bounty: Torrent Info

    I was wondering if you can call the url from rtorrent as well tried a few variations to the code above using Code: $req2 = new rXMLRPCRequest( array( new rXMLRPCCommand("t.get.url"))); and tried Code: $req2 = new rXMLRPCRequest( new...
  5. P

    Bounty: Torrent Info

    File must be placed in rutorrent/php. Function for get pairs label/size: Code: <?php require_once( &#39;xmlrpc.php&#39; ); function getTorrentsSize() { $req = new rXMLRPCRequest( new rXMLRPCCommand( "d.multicall", array( "", "d.get_custom1=", "d.get_size_bytes=" )) )...
  6. P

    Torrent Info

    Then simple write it. One d.multicall with d.get_hash, d.get_name, d.get_size_bytes and d.get_custom1 (for label). Sum all d.get_size_bytes per some label. And you got what you want.
  7. P

    Torrent Info

    This can't be done by that way. rTorrent use a memory mapped files for torrents, it doesn't allocate all disk space immediatelly after torrent addition. Really, you can only check - which diskspace will be used, when all user's torrents will be finished.
  8. P

    Current Load notification

    would be nice if you can share this plugin
  9. P

    BOUNTY: rss modifications

    This is a bounty for some rss modifcations. These are going to be hard, and as such i am asking people who think they are good ideas to KICK IN AND HELP GET THIS DONE!!! Number 1: Rss groups. This would work similar to how "ALL FEEDS" works now, but you'd be able to set specific "groups"...
  10. P

    BOUNTY: Low bandwith friendly protocol for interacting with remote rtorrent

    2Alexander В основном работу завершил. Плагин называется 'httprpc', область применения - сравнительно мощный сервер и узкий канал передачи. Понятие "сравнительно мощный" должно выясняться на практике, например, на SOHO роутере данный плагин применять строго не рекомендуется - загрузка процессора...
  11. P

    BOUNTY: Low bandwith friendly protocol for interacting with remote rtorrent

    I am testing the latest changes...so far they work well. I've noticed the page loads "differently" now. Before, when i load rutorrent, it would load several elements and they would show up one by one...now there is more of an inital lag, but the entire page seems to load as one. This is a...
  12. P

    BOUNTY: Low bandwith friendly protocol for interacting with remote rtorrent

    Я попробую кое-что предпринять в этом направлении. В течение месяца, примерно. Правда, консоль в любом случае заведомо будет экономичнее, тут ничего не поделать.
  13. P

    BOUNTY: Low bandwith friendly protocol for interacting with remote rtorrent

    i don't think the problem is a slow server. I think he's offering the bounty because he wants to use the application on low bandwidth links like cell phones or dial up. It would be the ideal sort of addon/plugin for an iphone app for instance.
  14. P

    BOUNTY: Magnet link support

    Yes, you can use the sites "donate" link.
  15. P

    BOUNTY: Magnet link support

    Excellent!
  16. P

    BOUNTY: Low bandwith friendly protocol for interacting with remote rtorrent

    As ruTorrent is the most comfortable and feature rich frontend for rtorrent, it would be great to use it in any conditions. Meanwhile, the current implementation utilizes multiple XMRPC calls from client (on which the WebUI is running) to server (on which rtorrent is running). In practice, that...
  17. P

    Starting Plugin Development

    ok i finally was able to solve it! the bug was in _getfiles plugin itself. for some weird reason getfiles.php is searching for the imput field "path_edit" instead the variable we passed with rDirBrowser()...this only happens if we use getfiles insead of getdirs... the solution is to name our...
  18. P

    Starting Plugin Development

    ok i changed my approach and started with the easy things first this is what i've created: Code: plugin.loadLang(); if(plugin.enabled) { if(plugin.canChangeMenu()) { plugin.createFileMenu = theWebUI.createFileMenu; theWebUI.createFileMenu = function( e, id ) {...
  19. P

    Starting Plugin Development

    Object dxSTable now doesn't support something like "column with a browse button". You must realize a new column type.
  20. P

    Starting Plugin Development

    you can use xmlrpc for that.