Minichan

Topic: Modifying the Transmission Web Interface

Anonymous A started this discussion 14 years ago #17,073

For all these you need to add some javascript to the index.html of the Web Interface. On debian that's /usr/local/share/transmission/web/javascript/index.html

Make the Resume All button only resume unfinished torrents (e.g. not start seeding)


Transmission.prototype.startAllTorrents = function() {
var torrents = [];
for(var key in this._torrents)
if(this._torrents[key].getPercentDone() < 1)
torrents.push(this._torrents[key]);

this.startTorrents(torrents);
};


Have the active tab only show unfinished torrents


$(document).ready(function() {
$("#filter_active_link").text("Unfinished");
});

Torrent.prototype.isActiveFilter = function() {
return this.getPercentDone() < 1;
};

dw !AIy/L67q.s joined in and replied with this 14 years ago, 1 hour later[^] [v] #289,789

is transmission the really good torrent software that's default on ubuntu?

Anonymous C joined in and replied with this 14 years ago, 20 minutes later, 1 hour after the original post[^] [v] #289,793

Cool
:)

voc joined in and replied with this 14 years ago, 3 minutes later, 1 hour after the original post[^] [v] #289,794

@289,789 (dw !AIy/L67q.s)
Yes.

shlief !hW6clEMVuQ joined in and replied with this 14 years ago, 5 hours later, 7 hours after the original post[^] [v] #289,863

How get?!~

Anonymous F joined in and replied with this 14 years ago, 1 minute later, 7 hours after the original post[^] [v] #289,865

@previous (shlief !hW6clEMVuQ)
Frog blast the vent core!

Anonymous G joined in and replied with this 14 years ago, 20 hours later, 1 day after the original post[^] [v] #290,109

Another Marathon player? Nice!

Anonymous F replied with this 14 years ago, 3 minutes later, 1 day after the original post[^] [v] #290,110

@previous (G)
Nah. Never played it, just learnt about it through Halo.

Wouldn't mind playing it one day, though.

sage joined in and replied with this 14 years ago, 23 minutes later, 1 day after the original post[^] [v] #290,114

Why would I want to do this?

Anonymous A (OP) replied with this 14 years ago, 4 minutes later, 1 day after the original post[^] [v] #290,115

@previous (sage)
I prefer them working like this. I've been quite happy with it since I made the changes :)

sage replied with this 14 years ago, 11 minutes later, 1 day after the original post[^] [v] #290,118

@previous (A)
Do you know if there's a way to see the total amount of data you have on Transmission? I have a seedbox and sometimes I'm unsure how close I am to filling it.

Anonymous A (OP) replied with this 14 years ago, 2 minutes later, 1 day after the original post[^] [v] #290,119

@previous (sage)
You mean bandwidth used? No built-in way but you could run vnStat to measure that and have the webinterface call that, but you'd need some programming knowledge and have system access which is a no-go on a regular seedbox.

Where's your seedbox from and how much are you paying?

sage replied with this 14 years ago, 7 minutes later, 1 day after the original post[^] [v] #290,126

@previous (A)
https://www.feralhosting.com/pricing

I use the Helium package for £10 which is about 15 USD.

Anonymous A (OP) replied with this 14 years ago, 54 minutes later, 1 day after the original post[^] [v] #290,152

@previous (sage)
I suggest getting a cheap virtual server at leaseweb (which is their provider) directly (9 EUR/month, 13 dollar) for ultimate control and the same specs, if you're capable of that. It's cheaper if you take a longer contract term, 12 months is €7,20/month.

(Edited 1 minute later.)

advi !!3gpAcg/hF joined in and replied with this 14 years ago, 3 minutes later, 1 day after the original post[^] [v] #290,153

Screenshot of your modifications? That sounds very cool.

sage replied with this 14 years ago, 33 seconds later, 1 day after the original post[^] [v] #290,154

Image went missing@290,152 (A)
It's actually more expensive for some reason.

Then again 2 TB of bandwidth is pretty ridiculous honestly.

(Edited 1 minute later.)

Anonymous A (OP) replied with this 14 years ago, 3 minutes later, 1 day after the original post[^] [v] #290,155

@previous (sage)
Yes, with that amount of bandwidth. From what I gather form their sales pages you can exceed the allocated bandwidth for a not very high price, I think. Not sure what that price is, though. The guys you're buying from will have bought dedicated servers which they put multiple users on.
:

Please familiarise yourself with the rules and markup syntax before posting.