Search results

  1. S

    Starting Plugin Development

    ok this is where i am atm Code: plugin.loadLang(); theWebUI.tables.move = { obj: new dxSTable(), columns: [ { text: theUILang.Name, width: "300px", id: "name", type: TYPE_STRING } ], container: "MoveFileList", format...
  2. S

    Creating Plugins

    Use your favorite code editor. Quote also can the plugin be checked directly if its working or not or do we have to put it in rutorrent and check Most likely you will need to copy your files to the plugins directory. Quote it ,some info on this would be really useful,also how do we run...
  3. S

    question to coders: how to store passwords

    There really is no secure way to do this. You could use something like mcrypt to encrypt the passwords with a shared key, but this is not useful as you would have to store the key on the user's system along with the encrypted data. The intention of this kind of protection is to send the password...
  4. S

    Ratio Group

    editing the conf is no longer needed. (at least i'm about 90% sure) This is why i'm redoing the wiki. In theory, you SHOULD be able to add this single line to your .rtorrent.rc to make all plugins "stick" of course, edit it for your php binary locaton, webroot and user. Code: execute =...
  5. S

    Ratio Group

    Thanks, I think it would be a great improvement. Also, I took your advice on tracker sorting/moving. The script I was trying to use relied on d.get_to_file... the only problem with that is when you add a torrent via the webui, there is no file for it to get tied to, thus breaking the script...
  6. S

    Ratio Group

    Great plugin love it. It would be even better if you could set a ratio group for a label and every torrent associated with that label would then be added to the ratio group.
  7. S

    Direction or Plugin: Context Menu Cross-Seeding

    You must obtain this info on the PHP side. Pass hash to server side, open .torrent file from session directory, and obtain piece size (see Torrent object in the php/Torrent.php). Pass d.get_directory with torrent hash to rtorrent. From PHP. Via xmlrpc request (See php/xmlrpc.php).
  8. S

    Direction or Plugin: Context Menu Cross-Seeding

    You need to overwrite theWebUI.createMenu and *inside it* add you item to menu. See plugin 'ratio' as example.
  9. S

    Plugin: Change date to YYYY-MM-DD HH:MM:SS

    Added to settings dialog now.
  10. S

    Plugin: Change date to YYYY-MM-DD HH:MM:SS

    Hello, I Didn't find any good way to change the format of dates so I made a very small plugin for this. Maybe someone else can have use for it, its called swedish date but its easy to modify it to any other formats you want. It's simple, it replaces theConverter.date with a clone that does the...
  11. S

    [Plugin] Ratiocolors

    specify a darker yellow?
  12. S

    [Plugin] Ratiocolors

    Rename plugins directory to 'ratiocolor' from 'rutorrent-ratiocolor'.
  13. S

    [Plugin] Ratiocolors

    Oups.. Fixed now. My text editor was acting weird.
  14. S

    [Plugin] Ratiocolors

    Dont know what I did to deserve that.. I didn't see your post. I have now added that option to the settings. https://github.com/Gyran/rutorrent-ratiocolor
  15. S

    [Plugin] Ratiocolors

    1) This is a not good idea, IMHO. Use plugin's conf.php file for that - in this case each user may easy correct levels without changing your code. 2) May be, a gradient will be a better solution instead levels? E.q. you set upper border (for example 30) and calculate color by such way...
  16. S

    See other users online on multi-user setup

    This would be very nice
  17. S

    suggestion for change in the unpack plugin

    also can we add an option for auto unpack on certain rss feeds? similar to the /*./i auto grab everything from a feed, can we add an option for it to unpack everything automatically only from that feed?
  18. S

    suggestion for change in the unpack plugin

    IF this does happen, it shouldn't be the default. it should be tunable via conf.php
  19. S

    A plugin for live support!

    Just thought about it. I know about the chat plugin but its too vague. Would it be possible to create an additional plugin tab on rutorrent, then insert a link there, where once clicked, would launch a pop-up connecting to meebo ? Well there is a live support feature on meebo, where you're...
  20. S

    Plugins tab order

    Thanks Novik!