mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-14 19:36:25 +00:00
6273679d49
fix typo I introduced in schedule.php Print to LAB_CHAN if sphinx connection fails nice bitcoin display Corrects [#] tag for Mono [hateradio] bitcoin donation Fix torrent unbookmarking upgraded sphinxapi.php to r2876 as the site is running r2902 Added options to block Tor, Opera Turbo and Opera Mini check for stale cache vanity house [clone00] bookmark almost anything [patapper] new torrent edit flags [rattvis] permissions stuff from patappatch c [BBCode] new [important] tag [DutchDude] Fixed images flowing past their boxes [hateradio] [BBCode] Tag for ordered lists. [hateradio] finally fixed that annoying textarea-resizing thing renamed temporary tables fixes http://what.cd/forums.php?action=viewthread&threadid=137432&page=1#post3408738 implements http://what.cd/forums.php?action=viewthread&threadid=122832 fixes http://what.cd/forums.php?action=viewthread&threadid=136553 fixes http://what.cd/forums.php?action=viewthread&threadid=112967 implements http://what.cd/forums.php?action=viewthread&threadid=110395
200 lines
6.4 KiB
JavaScript
200 lines
6.4 KiB
JavaScript
function show_peers (TorrentID, Page) {
|
|
if(Page>0) {
|
|
ajax.get('torrents.php?action=peerlist&page='+Page+'&torrentid=' + TorrentID,function(response){
|
|
$('#peers_' + TorrentID).show().raw().innerHTML=response;
|
|
});
|
|
} else {
|
|
if ($('#peers_' + TorrentID).raw().innerHTML === '') {
|
|
$('#peers_' + TorrentID).show().raw().innerHTML = '<h4>Loading...</h4>';
|
|
ajax.get('torrents.php?action=peerlist&torrentid=' + TorrentID,function(response){
|
|
$('#peers_' + TorrentID).show().raw().innerHTML=response;
|
|
});
|
|
} else {
|
|
$('#peers_' + TorrentID).toggle();
|
|
}
|
|
}
|
|
$('#snatches_' + TorrentID).hide();
|
|
$('#downloads_' + TorrentID).hide();
|
|
$('#files_' + TorrentID).hide();
|
|
$('#reported_' + TorrentID).hide();
|
|
}
|
|
|
|
function show_snatches (TorrentID, Page){
|
|
if(Page>0) {
|
|
ajax.get('torrents.php?action=snatchlist&page='+Page+'&torrentid=' + TorrentID,function(response){
|
|
$('#snatches_' + TorrentID).show().raw().innerHTML=response;
|
|
});
|
|
} else {
|
|
if ($('#snatches_' + TorrentID).raw().innerHTML === '') {
|
|
$('#snatches_' + TorrentID).show().raw().innerHTML = '<h4>Loading...</h4>';
|
|
ajax.get('torrents.php?action=snatchlist&torrentid=' + TorrentID,function(response){
|
|
$('#snatches_' + TorrentID).show().raw().innerHTML=response;
|
|
});
|
|
} else {
|
|
$('#snatches_' + TorrentID).toggle();
|
|
}
|
|
}
|
|
$('#peers_' + TorrentID).hide();
|
|
$('#downloads_' + TorrentID).hide();
|
|
$('#files_' + TorrentID).hide();
|
|
$('#reported_' + TorrentID).hide();
|
|
}
|
|
|
|
function show_downloads (TorrentID, Page){
|
|
if(Page>0) {
|
|
ajax.get('torrents.php?action=downloadlist&page='+Page+'&torrentid=' + TorrentID,function(response){
|
|
$('#downloads_' + TorrentID).show().raw().innerHTML=response;
|
|
});
|
|
} else {
|
|
if ($('#downloads_' + TorrentID).raw().innerHTML === '') {
|
|
$('#downloads_' + TorrentID).show().raw().innerHTML = '<h4>Loading...</h4>';
|
|
ajax.get('torrents.php?action=downloadlist&torrentid=' + TorrentID,function(response){
|
|
$('#downloads_' + TorrentID).raw().innerHTML=response;
|
|
});
|
|
} else {
|
|
$('#downloads_' + TorrentID).toggle();
|
|
}
|
|
}
|
|
$('#peers_' + TorrentID).hide();
|
|
$('#snatches_' + TorrentID).hide();
|
|
$('#files_' + TorrentID).hide();
|
|
$('#reported_' + TorrentID).hide();
|
|
}
|
|
|
|
function show_files(TorrentID){
|
|
$('#files_' + TorrentID).toggle();
|
|
$('#peers_' + TorrentID).hide();
|
|
$('#snatches_' + TorrentID).hide();
|
|
$('#downloads_' + TorrentID).hide();
|
|
$('#reported_' + TorrentID).hide();
|
|
}
|
|
|
|
function show_reported(TorrentID){
|
|
$('#files_' + TorrentID).hide();
|
|
$('#peers_' + TorrentID).hide();
|
|
$('#snatches_' + TorrentID).hide();
|
|
$('#downloads_' + TorrentID).hide();
|
|
$('#reported_' + TorrentID).toggle();
|
|
}
|
|
|
|
function add_tag(tag) {
|
|
if ($('#tags').raw().value == "") {
|
|
$('#tags').raw().value = tag;
|
|
} else {
|
|
$('#tags').raw().value = $('#tags').raw().value + ", " + tag;
|
|
}
|
|
}
|
|
|
|
function toggle_group(groupid, link, event) {
|
|
var clickedRow = link;
|
|
while (clickedRow.nodeName != 'TR') {
|
|
clickedRow = clickedRow.parentNode;
|
|
}
|
|
var group_rows = clickedRow.parentNode.children;
|
|
//var showing = has_class(nextElementSibling(clickedRow), 'hidden'); // nextElementSibling(clickedRow) is a .edition
|
|
var showing = $(clickedRow).nextElementSibling().has_class('hidden');
|
|
var allGroups = event.ctrlKey;
|
|
for (var i = 0; i < group_rows.length; i++) {
|
|
var row = $(group_rows[i]);
|
|
if (row.has_class('colhead_dark')) { continue; }
|
|
if (row.has_class('colhead')) { continue; }
|
|
var relevantRow = row.has_class('group') ? row.nextElementSibling() : row;
|
|
if (allGroups || relevantRow.has_class('groupid_' + groupid)) {
|
|
if (row.has_class('group')) {
|
|
$('a.show_torrents_link', row).raw().title = (showing) ? 'Collapse this group' : 'Expand this group';
|
|
} else {
|
|
if (showing) {
|
|
// show the row depending on whether the edition it's in is collapsed or not
|
|
if (row.has_class('edition')) {
|
|
row.show();
|
|
showRow = ($('a', row.raw()).raw().innerHTML != '+');
|
|
} else {
|
|
if (showRow) {
|
|
row.show();
|
|
} else {
|
|
row.hide();
|
|
}
|
|
}
|
|
} else {
|
|
row.hide();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (event.preventDefault) { event.preventDefault(); } else { event.returnValue = false; }
|
|
}
|
|
|
|
function toggle_edition(groupid, editionid, lnk, event) {
|
|
var clickedRow = lnk;
|
|
while (clickedRow.nodeName != 'TR') {
|
|
clickedRow = clickedRow.parentNode;
|
|
}
|
|
//var showing = has_class(nextElementSibling(clickedRow), 'hidden');
|
|
var showing = $(clickedRow).nextElementSibling().has_class('hidden');
|
|
var allEditions = event.ctrlKey;
|
|
var group_rows = $('tr.groupid_' + groupid);
|
|
for (var i = 0; i < group_rows.results(); i++) {
|
|
var row = $(group_rows.raw(i));
|
|
if (row.has_class('edition') && (allEditions || row == clickedRow)) {
|
|
$('a', row.raw()).raw().innerHTML = (showing) ? '−' : '+';
|
|
$('a', row.raw()).raw().title = (showing) ? 'Collapse this edition' : 'Expand this edition';
|
|
continue;
|
|
}
|
|
if (allEditions || row.has_class('edition_' + editionid)) {
|
|
if (showing && !row.has_class('torrentdetails')) {
|
|
row.show();
|
|
} else {
|
|
row.hide();
|
|
}
|
|
}
|
|
}
|
|
if (event.preventDefault) { event.preventDefault(); } else { event.returnValue = false; }
|
|
}
|
|
|
|
// For /sections/torrents/browse.php (not browse2.php)
|
|
function Bitrate() {
|
|
$('#other_bitrate').raw().value = '';
|
|
if ($('#bitrate').raw().options[$('#bitrate').raw().selectedIndex].value == 'Other') {
|
|
$('#other_bitrate_span').show();
|
|
} else {
|
|
$('#other_bitrate_span').hide();
|
|
}
|
|
}
|
|
|
|
var ArtistFieldCount = 1;
|
|
|
|
function AddArtistField() {
|
|
if (ArtistFieldCount >= 100) { return; }
|
|
var x = $('#AddArtists').raw();
|
|
x.appendChild(document.createElement("br"));
|
|
var ArtistField = document.createElement("input");
|
|
ArtistField.type = "text";
|
|
ArtistField.name = "aliasname[]";
|
|
ArtistField.size = "17";
|
|
x.appendChild(ArtistField);
|
|
x.appendChild(document.createTextNode(' '));
|
|
var Importance = document.createElement("select");
|
|
Importance.name = "importance[]";
|
|
Importance.innerHTML = '<option value="1">Main</option><option value="2">Guest</option><option value="3">Remixer</option>';
|
|
x.appendChild(Importance);
|
|
ArtistFieldCount++;
|
|
}
|
|
|
|
function ToggleEditionRows() {
|
|
$('#edition_title').toggle();
|
|
$('#edition_label').toggle();
|
|
$('#edition_catalogue').toggle();
|
|
}
|
|
|
|
|
|
function ToggleGroup(groupid) {
|
|
var show = $('#showimg_' + groupid).has_class('show_torrents')
|
|
if(show) {
|
|
$('.groupid_' + groupid).show();
|
|
$('#showimg_' + groupid).remove_class('show_torrents').add_class('hide_torrents');
|
|
} else {
|
|
$('.groupid_' + groupid).hide();
|
|
$('#showimg_' + groupid).remove_class('hide_torrents').add_class('show_torrents');
|
|
}
|
|
}
|