├── 000-default-auth.conf ├── 000-default.conf ├── Dockerfile ├── README.md ├── plugins ├── _noty │ ├── init.js │ ├── jquery.noty.css │ ├── jquery.noty.js │ ├── noty_theme_default.css │ └── plugin.info ├── autotools │ ├── action.php │ ├── autotools.css │ ├── autotools.php │ ├── check.php │ ├── conf.php │ ├── done.php │ ├── init.js │ ├── init.php │ ├── label.php │ ├── lang │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── lv.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ ├── move.php │ ├── plugin.info │ ├── readme.en.txt │ ├── readme.ru.txt │ ├── util_rt.php │ └── watch.php ├── cpuload │ ├── action.php │ ├── conf.php │ ├── cpu.php │ ├── cpuload.css │ ├── images │ │ └── cpu.png │ ├── init.js │ └── plugin.info ├── data │ ├── action.php │ ├── init.js │ ├── lang │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── lv.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ └── plugin.info ├── erasedata │ ├── cat.sh │ ├── conf.php │ ├── done.php │ ├── fin.sh │ ├── init.js │ ├── init.php │ ├── plugin.info │ └── update.php ├── extratio │ ├── action.php │ ├── done.php │ ├── extratio.css │ ├── hooks.php │ ├── ie.css │ ├── init.js │ ├── init.php │ ├── lang │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── lv.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ ├── plugin.info │ ├── rules.php │ └── update.php ├── filedrop │ ├── conf.php │ ├── init.js │ ├── init.php │ ├── jquery.filedrop.js │ ├── lang │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── lv.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ └── plugin.info ├── lookat │ ├── action.php │ ├── conf.php │ ├── init.js │ ├── init.php │ ├── lang │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── lv.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ ├── lookat.css │ ├── lookat.php │ └── plugin.info ├── mobile │ ├── LICENSE │ ├── README.md │ ├── css │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── init.js │ ├── js │ │ └── bootstrap.min.js │ ├── lang │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── lv.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ ├── mobile.css │ ├── mobile.html │ └── plugin.info ├── ratio │ ├── action.php │ ├── conf.php │ ├── done.php │ ├── init.js │ ├── init.php │ ├── lang │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── lv.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ ├── plugin.info │ ├── ratio.css │ ├── ratio.php │ └── update.php ├── retrackers │ ├── action.php │ ├── done.php │ ├── init.js │ ├── init.php │ ├── lang │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── lv.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ ├── plugin.info │ ├── retrackers.css │ ├── retrackers.php │ ├── run.sh │ └── update.php ├── seedingtime │ ├── done.php │ ├── init.js │ ├── init.php │ ├── lang │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── lv.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ └── plugin.info ├── show_peers_like_wtorrent │ ├── init.js │ └── plugin.info ├── theme │ ├── action.php │ ├── conf.php │ ├── init.js │ ├── init.php │ ├── lang │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── lv.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ ├── plugin.info │ ├── theme.php │ └── themes │ │ ├── Acid │ │ ├── images │ │ │ ├── about.gif │ │ │ ├── ajax-loader.gif │ │ │ ├── ajax-loader_h.gif │ │ │ ├── asc.gif │ │ │ ├── bul.gif │ │ │ ├── bul_f.gif │ │ │ ├── bul_l.gif │ │ │ ├── desc.gif │ │ │ ├── dir.gif │ │ │ ├── disk.gif │ │ │ ├── error.gif │ │ │ ├── file.gif │ │ │ ├── go.gif │ │ │ ├── h.gif │ │ │ ├── header.gif │ │ │ ├── header_move.gif │ │ │ ├── i_bg.gif │ │ │ ├── label.gif │ │ │ ├── menuexp.gif │ │ │ ├── menusel.gif │ │ │ ├── pnl_close.gif │ │ │ ├── pnl_open.gif │ │ │ ├── props.gif │ │ │ ├── quest.gif │ │ │ ├── r_bg.gif │ │ │ ├── s.gif │ │ │ ├── settings.gif │ │ │ ├── starter.png │ │ │ ├── status_down.gif │ │ │ ├── status_up.gif │ │ │ ├── t_bg.png │ │ │ ├── tb_bg.gif │ │ │ ├── toolbar.png │ │ │ ├── tstatus.png │ │ │ └── world.gif │ │ ├── plugins.css │ │ ├── stable.css │ │ └── style.css │ │ ├── Blue │ │ ├── images │ │ │ ├── ajax-loader.gif │ │ │ ├── asc.gif │ │ │ ├── bg.gif │ │ │ ├── btn-sprite.gif │ │ │ ├── desc.gif │ │ │ ├── empty.png │ │ │ ├── go.gif │ │ │ ├── header_bg.gif │ │ │ ├── left-corners.png │ │ │ ├── left-right.png │ │ │ ├── menu-parent.gif │ │ │ ├── plugin.png │ │ │ ├── pnl_close.gif │ │ │ ├── pnl_open.gif │ │ │ ├── quest.gif │ │ │ ├── right-corners.png │ │ │ ├── s-handle.gif │ │ │ ├── safari-checkbox.png │ │ │ ├── shadow-c.png │ │ │ ├── shadow-lr.png │ │ │ ├── shadow.png │ │ │ ├── tab-strip-bg.gif │ │ │ ├── tabs-bg.png │ │ │ ├── tabs-sprite.gif │ │ │ ├── text-bg.gif │ │ │ ├── toolbar.png │ │ │ ├── top-bottom.png │ │ │ └── white-top-bottom.gif │ │ ├── init.js │ │ ├── jquery.checkbox.js │ │ ├── jquery.safari-checkbox.css │ │ ├── plugins.css │ │ ├── stable.css │ │ └── style.css │ │ ├── Dark │ │ ├── images │ │ │ ├── ajax-loader.gif │ │ │ ├── asc.gif │ │ │ ├── bul.gif │ │ │ ├── bul_f.gif │ │ │ ├── bul_l.gif │ │ │ ├── desc.gif │ │ │ ├── dir.gif │ │ │ ├── file.gif │ │ │ ├── h.gif │ │ │ ├── header.gif │ │ │ ├── header_move.gif │ │ │ ├── i_bg.gif │ │ │ ├── menuexp.gif │ │ │ ├── menusel.gif │ │ │ ├── plugin.png │ │ │ ├── pnl_close.gif │ │ │ ├── pnl_open.gif │ │ │ ├── quest.gif │ │ │ ├── r_bg.gif │ │ │ ├── s.gif │ │ │ ├── s_bg.gif │ │ │ ├── settings.gif │ │ │ ├── status_down.gif │ │ │ ├── status_up.gif │ │ │ ├── t_bg.gif │ │ │ ├── t_bg.png │ │ │ ├── tb_bg.gif │ │ │ ├── toolbar.png │ │ │ ├── tstatus.png │ │ │ └── world.gif │ │ ├── plugins.css │ │ ├── stable.css │ │ └── style.css │ │ ├── Excel │ │ ├── images │ │ │ ├── asc.gif │ │ │ ├── cbg.png │ │ │ ├── desc.gif │ │ │ ├── header.gif │ │ │ ├── pbg.png │ │ │ ├── pnl_close.png │ │ │ ├── pnl_open.png │ │ │ ├── statbg.png │ │ │ ├── tabbarbg.png │ │ │ ├── tabbg.png │ │ │ ├── tabbgf.png │ │ │ ├── tabbgfh.png │ │ │ ├── tabbgfhn.png │ │ │ ├── tabbgfin.png │ │ │ ├── tabbgh.png │ │ │ └── tabbghfin.png │ │ ├── init.js │ │ ├── plugins.css │ │ ├── stable.css │ │ └── style.css │ │ └── Oblivion │ │ ├── images │ │ ├── ajax-loader.gif │ │ ├── asc.gif │ │ ├── autodll-irc1.png │ │ ├── autodll-irc2.png │ │ ├── bul.gif │ │ ├── bul_f.gif │ │ ├── bul_l.gif │ │ ├── chat.png │ │ ├── chat2.png │ │ ├── chat3.png │ │ ├── desc.gif │ │ ├── dlg-autodl-irc.gif │ │ ├── dlg-rssurlrewrite.gif │ │ ├── dlg-toolbars.gif │ │ ├── header_move.gif │ │ ├── headers.png │ │ ├── logoff.png │ │ ├── logoff2.png │ │ ├── logoff3.png │ │ ├── menus.png │ │ ├── pauseui.png │ │ ├── pauseuih.png │ │ ├── playui.png │ │ ├── playuih.png │ │ ├── plugin.png │ │ ├── pnl_close.gif │ │ ├── pnl_close.png │ │ ├── pnl_open.gif │ │ ├── pnl_open.png │ │ ├── r_bg.gif │ │ ├── refreshui.png │ │ ├── refreshuih.png │ │ ├── s.gif │ │ ├── s_bg.gif │ │ ├── status.png │ │ ├── status_icons.png │ │ ├── t_bg.gif │ │ ├── tb_bg.gif │ │ ├── tb_bg.png │ │ └── toolbar.png │ │ ├── init.js │ │ ├── plugins.css │ │ ├── stable.css │ │ └── style.css ├── throttle │ ├── action.php │ ├── conf.php │ ├── done.php │ ├── init.js │ ├── init.php │ ├── lang │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── lv.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ ├── plugin.info │ ├── throttle.css │ └── throttle.php └── tracklabels │ ├── action.php │ ├── init.js │ ├── labels │ ├── game.png │ ├── image.png │ ├── kids.png │ ├── movie.png │ ├── music.png │ ├── nlb.png │ ├── other.png │ ├── sickbeard.png │ ├── software.png │ ├── tv.png │ └── video.png │ ├── plugin.info │ ├── trackers │ ├── 3xp3rim3nt.info.png │ ├── 420project.org.png │ ├── 7track.org.png │ ├── acetorrents.net.png │ ├── acid-lounge.org.uk.png │ ├── adult-cinema-network.net.png │ ├── alfascene.ro.png │ ├── all4nothin.net.png │ ├── allotracker.com.png │ ├── anvilofsound.com.png │ ├── appzuniverse.org.png │ ├── arabfilms.org.png │ ├── arabseries.org.png │ ├── asiandvdclub.org.png │ ├── asiatorrents.com.png │ ├── audionews.ru.png │ ├── avlossless.no-ip.org.png │ ├── awesome-hd.net.png │ ├── bdmkv.org.png │ ├── bibliotik.org.png │ ├── bit-hdtv.com.png │ ├── bitgamer.com.png │ ├── bithq.org..png │ ├── bithumen.be.png │ ├── bitme.org.png │ ├── bitmetv.org.png │ ├── bitreactor.to.png │ ├── bitseduce.com.png │ ├── bitsoup.org.png │ ├── bitspyder.net.png │ ├── bitvaulttorrent.com.png │ ├── blackcats-games.net.png │ ├── bluetigers.ca.png │ ├── brasiltorrents.com.png │ ├── broadcasthe.net.png │ ├── btarg.com.png │ ├── btmusic.eu.png │ ├── cartoonchaos.org.png │ ├── chdbits.org.png │ ├── cheggit.net.png │ ├── choicebits.info.png │ ├── cinemageddon.org.png │ ├── cinematik.net.png │ ├── concen.org.png │ ├── crazysaloon.com.png │ ├── darkalliance.co.uk.png │ ├── dcshare.org.png │ ├── demonoid.com.png │ ├── deviloid.net.png │ ├── digitalhive.org.png │ ├── ebookvortex.com.png │ ├── elbitz.net.png │ ├── elite-tracker.net.png │ ├── empornium.us.png │ ├── exigomusic.org.png │ ├── extremebits.org.png │ ├── feedthe.net.png │ ├── filelist.ro.png │ ├── filemp3.org.png │ ├── freethescene.net.png │ ├── freshon.tv.png │ ├── funfile.org.png │ ├── gameupdates.org.png │ ├── h33t.com.png │ ├── hd-bits.ro.png │ ├── hd-dream.net.png │ ├── hd-space.org.png │ ├── hd-torrents.org.png │ ├── hdahoy.org.png │ ├── hdbits.org.png │ ├── hdfrench.com.png │ ├── hdme.eu.png │ ├── hdstar.org.png │ ├── hdtracker.ru.png │ ├── hidef-zone.com.png │ ├── ilibr.org.png │ ├── ilovetorrents.com.png │ ├── immortalseed.com.png │ ├── iptorrents.com.png │ ├── karagarga.net.png │ ├── kiev.ua.png │ ├── learnbits.me.png │ ├── libble.me.png │ ├── linkomanija.net.png │ ├── linuxtracker.org.png │ ├── lostfilm.tv.png │ ├── mazetorrents.net.png │ ├── megaups.com.png │ ├── metal.iplay.ro.png │ ├── midnight-scene.com.png │ ├── mininova.org.png │ ├── mojblink.com.png │ ├── mybadbits.org.png │ ├── nhltorrents.co.uk.png │ ├── nono-friends.net.png │ ├── nordic-t.org.png │ ├── novafilm.tv.png │ ├── openbittorrent.com.png │ ├── passthepopcorn.me.png │ ├── play-the.net.png │ ├── pornbay.org.png │ ├── pornoplace.lv.png │ ├── pornoplus.org.png │ ├── pretome.net.png │ ├── proaudiotorrents.org.png │ ├── publicbt.com.png │ ├── pythons-lair.com.png │ ├── revolutiontt.net.png │ ├── rutracker.org.png │ ├── scene-rush.com.png │ ├── sceneaccess.org.png │ ├── scenehd.org.png │ ├── scenexpress.net.png │ ├── sciencehd.info.png │ ├── secret-cinema.net.png │ ├── seedmore.org.png │ ├── shadowtorrents.com.png │ ├── sharereactor.ro.png │ ├── shellife.eu.png │ ├── soulbitz.com.png │ ├── speed.cd.png │ ├── sport-scene.net.png │ ├── supertorrents.org.png │ ├── syncthebits.com.png │ ├── teamfx.org.png │ ├── tehconnection.eu.png │ ├── the-bigbox.com.png │ ├── thedvdclub.org.png │ ├── thegt.net.png │ ├── thepiratebay.org.png │ ├── thescn.net.png │ ├── thevault.bz.png │ ├── topbytes.net.png │ ├── torrent-damage.net.png │ ├── torrent411.com.png │ ├── torrentbox.com.png │ ├── torrentday.com.png │ ├── torrentkids.org.png │ ├── torrentleech.org.png │ ├── torrentmaniacs.org.png │ ├── torrentsforall.net.png │ ├── trackerx.com.ar.png │ ├── tranceroute.com.png │ ├── trancetraffic.com.png │ ├── tti.nu.png │ ├── tuxdistro.com.png │ ├── tvtorrents.com.png │ ├── tvtorrentz.org.png │ ├── underground-gamer.com.png │ ├── unknown.png │ ├── vipmusic.org.png │ ├── wild-bytes.net.png │ ├── world-in-hd.net.png │ ├── wunza.ws.png │ ├── xbox-sky.cc.png │ └── xthor.net.png │ └── tracklabels.css ├── rtorrent.rc └── startup.sh /000-default-auth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/000-default-auth.conf -------------------------------------------------------------------------------- /000-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/000-default.conf -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/README.md -------------------------------------------------------------------------------- /plugins/_noty/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/_noty/init.js -------------------------------------------------------------------------------- /plugins/_noty/jquery.noty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/_noty/jquery.noty.css -------------------------------------------------------------------------------- /plugins/_noty/jquery.noty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/_noty/jquery.noty.js -------------------------------------------------------------------------------- /plugins/_noty/noty_theme_default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/_noty/noty_theme_default.css -------------------------------------------------------------------------------- /plugins/_noty/plugin.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/_noty/plugin.info -------------------------------------------------------------------------------- /plugins/autotools/action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/action.php -------------------------------------------------------------------------------- /plugins/autotools/autotools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/autotools.css -------------------------------------------------------------------------------- /plugins/autotools/autotools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/autotools.php -------------------------------------------------------------------------------- /plugins/autotools/check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/check.php -------------------------------------------------------------------------------- /plugins/autotools/conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/conf.php -------------------------------------------------------------------------------- /plugins/autotools/done.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/done.php -------------------------------------------------------------------------------- /plugins/autotools/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/init.js -------------------------------------------------------------------------------- /plugins/autotools/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/init.php -------------------------------------------------------------------------------- /plugins/autotools/label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/label.php -------------------------------------------------------------------------------- /plugins/autotools/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/cs.js -------------------------------------------------------------------------------- /plugins/autotools/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/da.js -------------------------------------------------------------------------------- /plugins/autotools/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/de.js -------------------------------------------------------------------------------- /plugins/autotools/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/el.js -------------------------------------------------------------------------------- /plugins/autotools/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/en.js -------------------------------------------------------------------------------- /plugins/autotools/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/es.js -------------------------------------------------------------------------------- /plugins/autotools/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/fi.js -------------------------------------------------------------------------------- /plugins/autotools/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/fr.js -------------------------------------------------------------------------------- /plugins/autotools/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/hu.js -------------------------------------------------------------------------------- /plugins/autotools/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/it.js -------------------------------------------------------------------------------- /plugins/autotools/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/lv.js -------------------------------------------------------------------------------- /plugins/autotools/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/nl.js -------------------------------------------------------------------------------- /plugins/autotools/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/pl.js -------------------------------------------------------------------------------- /plugins/autotools/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/pt.js -------------------------------------------------------------------------------- /plugins/autotools/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/ru.js -------------------------------------------------------------------------------- /plugins/autotools/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/sk.js -------------------------------------------------------------------------------- /plugins/autotools/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/sr.js -------------------------------------------------------------------------------- /plugins/autotools/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/sv.js -------------------------------------------------------------------------------- /plugins/autotools/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/tr.js -------------------------------------------------------------------------------- /plugins/autotools/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/uk.js -------------------------------------------------------------------------------- /plugins/autotools/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/vi.js -------------------------------------------------------------------------------- /plugins/autotools/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/zh-cn.js -------------------------------------------------------------------------------- /plugins/autotools/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/lang/zh-tw.js -------------------------------------------------------------------------------- /plugins/autotools/move.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/move.php -------------------------------------------------------------------------------- /plugins/autotools/plugin.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/plugin.info -------------------------------------------------------------------------------- /plugins/autotools/readme.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/readme.en.txt -------------------------------------------------------------------------------- /plugins/autotools/readme.ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/readme.ru.txt -------------------------------------------------------------------------------- /plugins/autotools/util_rt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/util_rt.php -------------------------------------------------------------------------------- /plugins/autotools/watch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/autotools/watch.php -------------------------------------------------------------------------------- /plugins/cpuload/action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/cpuload/action.php -------------------------------------------------------------------------------- /plugins/cpuload/conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/cpuload/conf.php -------------------------------------------------------------------------------- /plugins/cpuload/cpu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/cpuload/cpu.php -------------------------------------------------------------------------------- /plugins/cpuload/cpuload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/cpuload/cpuload.css -------------------------------------------------------------------------------- /plugins/cpuload/images/cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/cpuload/images/cpu.png -------------------------------------------------------------------------------- /plugins/cpuload/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/cpuload/init.js -------------------------------------------------------------------------------- /plugins/cpuload/plugin.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/cpuload/plugin.info -------------------------------------------------------------------------------- /plugins/data/action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/action.php -------------------------------------------------------------------------------- /plugins/data/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/init.js -------------------------------------------------------------------------------- /plugins/data/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/cs.js -------------------------------------------------------------------------------- /plugins/data/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/da.js -------------------------------------------------------------------------------- /plugins/data/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/de.js -------------------------------------------------------------------------------- /plugins/data/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/el.js -------------------------------------------------------------------------------- /plugins/data/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/en.js -------------------------------------------------------------------------------- /plugins/data/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/es.js -------------------------------------------------------------------------------- /plugins/data/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/fi.js -------------------------------------------------------------------------------- /plugins/data/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/fr.js -------------------------------------------------------------------------------- /plugins/data/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/hu.js -------------------------------------------------------------------------------- /plugins/data/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/it.js -------------------------------------------------------------------------------- /plugins/data/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/lv.js -------------------------------------------------------------------------------- /plugins/data/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/nl.js -------------------------------------------------------------------------------- /plugins/data/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/pl.js -------------------------------------------------------------------------------- /plugins/data/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/pt.js -------------------------------------------------------------------------------- /plugins/data/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/ru.js -------------------------------------------------------------------------------- /plugins/data/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/sk.js -------------------------------------------------------------------------------- /plugins/data/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/sr.js -------------------------------------------------------------------------------- /plugins/data/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/sv.js -------------------------------------------------------------------------------- /plugins/data/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/tr.js -------------------------------------------------------------------------------- /plugins/data/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/uk.js -------------------------------------------------------------------------------- /plugins/data/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/vi.js -------------------------------------------------------------------------------- /plugins/data/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/zh-cn.js -------------------------------------------------------------------------------- /plugins/data/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/lang/zh-tw.js -------------------------------------------------------------------------------- /plugins/data/plugin.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/data/plugin.info -------------------------------------------------------------------------------- /plugins/erasedata/cat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/erasedata/cat.sh -------------------------------------------------------------------------------- /plugins/erasedata/conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/erasedata/conf.php -------------------------------------------------------------------------------- /plugins/erasedata/done.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/erasedata/done.php -------------------------------------------------------------------------------- /plugins/erasedata/fin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/erasedata/fin.sh -------------------------------------------------------------------------------- /plugins/erasedata/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/erasedata/init.js -------------------------------------------------------------------------------- /plugins/erasedata/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/erasedata/init.php -------------------------------------------------------------------------------- /plugins/erasedata/plugin.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/erasedata/plugin.info -------------------------------------------------------------------------------- /plugins/erasedata/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/erasedata/update.php -------------------------------------------------------------------------------- /plugins/extratio/action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/action.php -------------------------------------------------------------------------------- /plugins/extratio/done.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/done.php -------------------------------------------------------------------------------- /plugins/extratio/extratio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/extratio.css -------------------------------------------------------------------------------- /plugins/extratio/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/hooks.php -------------------------------------------------------------------------------- /plugins/extratio/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/ie.css -------------------------------------------------------------------------------- /plugins/extratio/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/init.js -------------------------------------------------------------------------------- /plugins/extratio/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/init.php -------------------------------------------------------------------------------- /plugins/extratio/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/cs.js -------------------------------------------------------------------------------- /plugins/extratio/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/da.js -------------------------------------------------------------------------------- /plugins/extratio/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/de.js -------------------------------------------------------------------------------- /plugins/extratio/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/el.js -------------------------------------------------------------------------------- /plugins/extratio/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/en.js -------------------------------------------------------------------------------- /plugins/extratio/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/es.js -------------------------------------------------------------------------------- /plugins/extratio/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/fi.js -------------------------------------------------------------------------------- /plugins/extratio/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/fr.js -------------------------------------------------------------------------------- /plugins/extratio/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/hu.js -------------------------------------------------------------------------------- /plugins/extratio/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/it.js -------------------------------------------------------------------------------- /plugins/extratio/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/lv.js -------------------------------------------------------------------------------- /plugins/extratio/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/nl.js -------------------------------------------------------------------------------- /plugins/extratio/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/pl.js -------------------------------------------------------------------------------- /plugins/extratio/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/pt.js -------------------------------------------------------------------------------- /plugins/extratio/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/ru.js -------------------------------------------------------------------------------- /plugins/extratio/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/sk.js -------------------------------------------------------------------------------- /plugins/extratio/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/sr.js -------------------------------------------------------------------------------- /plugins/extratio/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/sv.js -------------------------------------------------------------------------------- /plugins/extratio/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/tr.js -------------------------------------------------------------------------------- /plugins/extratio/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/uk.js -------------------------------------------------------------------------------- /plugins/extratio/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/vi.js -------------------------------------------------------------------------------- /plugins/extratio/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/zh-cn.js -------------------------------------------------------------------------------- /plugins/extratio/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/lang/zh-tw.js -------------------------------------------------------------------------------- /plugins/extratio/plugin.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/plugin.info -------------------------------------------------------------------------------- /plugins/extratio/rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/rules.php -------------------------------------------------------------------------------- /plugins/extratio/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/extratio/update.php -------------------------------------------------------------------------------- /plugins/filedrop/conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/conf.php -------------------------------------------------------------------------------- /plugins/filedrop/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/init.js -------------------------------------------------------------------------------- /plugins/filedrop/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/init.php -------------------------------------------------------------------------------- /plugins/filedrop/jquery.filedrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/jquery.filedrop.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/cs.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/da.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/de.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/el.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/en.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/es.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/fi.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/fr.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/hu.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/it.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/lv.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/nl.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/pl.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/pt.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/ru.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/sk.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/sr.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/sv.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/tr.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/uk.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/vi.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/zh-cn.js -------------------------------------------------------------------------------- /plugins/filedrop/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/lang/zh-tw.js -------------------------------------------------------------------------------- /plugins/filedrop/plugin.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/filedrop/plugin.info -------------------------------------------------------------------------------- /plugins/lookat/action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/action.php -------------------------------------------------------------------------------- /plugins/lookat/conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/conf.php -------------------------------------------------------------------------------- /plugins/lookat/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/init.js -------------------------------------------------------------------------------- /plugins/lookat/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/init.php -------------------------------------------------------------------------------- /plugins/lookat/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/cs.js -------------------------------------------------------------------------------- /plugins/lookat/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/da.js -------------------------------------------------------------------------------- /plugins/lookat/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/de.js -------------------------------------------------------------------------------- /plugins/lookat/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/el.js -------------------------------------------------------------------------------- /plugins/lookat/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/en.js -------------------------------------------------------------------------------- /plugins/lookat/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/es.js -------------------------------------------------------------------------------- /plugins/lookat/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/fi.js -------------------------------------------------------------------------------- /plugins/lookat/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/fr.js -------------------------------------------------------------------------------- /plugins/lookat/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/hu.js -------------------------------------------------------------------------------- /plugins/lookat/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/it.js -------------------------------------------------------------------------------- /plugins/lookat/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/lv.js -------------------------------------------------------------------------------- /plugins/lookat/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/nl.js -------------------------------------------------------------------------------- /plugins/lookat/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/pl.js -------------------------------------------------------------------------------- /plugins/lookat/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/pt.js -------------------------------------------------------------------------------- /plugins/lookat/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/ru.js -------------------------------------------------------------------------------- /plugins/lookat/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/sk.js -------------------------------------------------------------------------------- /plugins/lookat/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/sr.js -------------------------------------------------------------------------------- /plugins/lookat/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/sv.js -------------------------------------------------------------------------------- /plugins/lookat/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/tr.js -------------------------------------------------------------------------------- /plugins/lookat/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/uk.js -------------------------------------------------------------------------------- /plugins/lookat/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/vi.js -------------------------------------------------------------------------------- /plugins/lookat/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/zh-cn.js -------------------------------------------------------------------------------- /plugins/lookat/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lang/zh-tw.js -------------------------------------------------------------------------------- /plugins/lookat/lookat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lookat.css -------------------------------------------------------------------------------- /plugins/lookat/lookat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/lookat.php -------------------------------------------------------------------------------- /plugins/lookat/plugin.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/lookat/plugin.info -------------------------------------------------------------------------------- /plugins/mobile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/LICENSE -------------------------------------------------------------------------------- /plugins/mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/README.md -------------------------------------------------------------------------------- /plugins/mobile/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/css/bootstrap.min.css -------------------------------------------------------------------------------- /plugins/mobile/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /plugins/mobile/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /plugins/mobile/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /plugins/mobile/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /plugins/mobile/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/init.js -------------------------------------------------------------------------------- /plugins/mobile/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/js/bootstrap.min.js -------------------------------------------------------------------------------- /plugins/mobile/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/cs.js -------------------------------------------------------------------------------- /plugins/mobile/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/da.js -------------------------------------------------------------------------------- /plugins/mobile/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/de.js -------------------------------------------------------------------------------- /plugins/mobile/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/el.js -------------------------------------------------------------------------------- /plugins/mobile/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/en.js -------------------------------------------------------------------------------- /plugins/mobile/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/es.js -------------------------------------------------------------------------------- /plugins/mobile/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/fi.js -------------------------------------------------------------------------------- /plugins/mobile/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/fr.js -------------------------------------------------------------------------------- /plugins/mobile/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/hu.js -------------------------------------------------------------------------------- /plugins/mobile/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/it.js -------------------------------------------------------------------------------- /plugins/mobile/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/lv.js -------------------------------------------------------------------------------- /plugins/mobile/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/nl.js -------------------------------------------------------------------------------- /plugins/mobile/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/pl.js -------------------------------------------------------------------------------- /plugins/mobile/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/pt.js -------------------------------------------------------------------------------- /plugins/mobile/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/ru.js -------------------------------------------------------------------------------- /plugins/mobile/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/sk.js -------------------------------------------------------------------------------- /plugins/mobile/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/sr.js -------------------------------------------------------------------------------- /plugins/mobile/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/sv.js -------------------------------------------------------------------------------- /plugins/mobile/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/tr.js -------------------------------------------------------------------------------- /plugins/mobile/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/uk.js -------------------------------------------------------------------------------- /plugins/mobile/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/vi.js -------------------------------------------------------------------------------- /plugins/mobile/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/zh-cn.js -------------------------------------------------------------------------------- /plugins/mobile/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/lang/zh-tw.js -------------------------------------------------------------------------------- /plugins/mobile/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/mobile.css -------------------------------------------------------------------------------- /plugins/mobile/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/mobile.html -------------------------------------------------------------------------------- /plugins/mobile/plugin.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/mobile/plugin.info -------------------------------------------------------------------------------- /plugins/ratio/action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerwood/Rtorrent-LXC/HEAD/plugins/ratio/action.php -------------------------------------------------------------------------------- /plugins/ratio/conf.php: -------------------------------------------------------------------------------- 1 |