mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 02:46:30 +00:00
Empty commit
This commit is contained in:
parent
dc486b7509
commit
513f945c6e
@ -107,10 +107,10 @@ public static function get_ratio_html($Dividend, $Divisor, $Color = true) {
|
||||
return '--';
|
||||
}
|
||||
if ($Ratio === '∞') {
|
||||
return '<span class="r99" title="Infinite">∞</span>';
|
||||
return '<span class="tooltip r99" title="Infinite">∞</span>';
|
||||
}
|
||||
if ($Color) {
|
||||
$Ratio = sprintf('<span class="%s" title="%s">%s</span>',
|
||||
$Ratio = sprintf('<span class="tooltip %s" title="%s">%s</span>',
|
||||
self::get_ratio_color($Ratio),
|
||||
self::get_ratio($Dividend, $Divisor, 5),
|
||||
$Ratio
|
||||
|
@ -127,7 +127,7 @@ public function header () {
|
||||
<thead>
|
||||
<tr class="colhead">
|
||||
<th style="width: 7%;">Order</th>
|
||||
<th style="width: 1%;"><span><abbr title="Current order">#</abbr></span></th>
|
||||
<th style="width: 1%;"><span><abbr class="tooltip" title="Current order">#</abbr></span></th>
|
||||
<th style="width: 1%;"><span>Year</span></th>
|
||||
<th style="width: 15%;"><span>Artist</span></th>
|
||||
<th><span>Torrent</span></th>
|
||||
@ -179,7 +179,7 @@ public function body () {
|
||||
$this->NumGroups++;
|
||||
|
||||
$DisplayName = self::display_name($ExtendedArtists, $Artists, $VanityHouse);
|
||||
$TorrentLink = '<a href="torrents.php?id='.$GroupID.'" title="View Torrent">'.$Name.'</a>';
|
||||
$TorrentLink = '<a href="torrents.php?id='.$GroupID.'" class="tooltip" title="View torrent">'.$Name.'</a>';
|
||||
$Year = $Year > 0 ? $Year : '';
|
||||
$DateAdded = date($Time);
|
||||
|
||||
@ -232,7 +232,7 @@ public static function display_name (array &$ExtendedArtists, array &$Artists, $
|
||||
$DisplayName = Artists::display_artists(array('1'=>$Artists), true, false);
|
||||
}
|
||||
if ($VanityHouse) {
|
||||
$DisplayName .= ' [<abbr title="This is a Vanity House release">VH</abbr>]';
|
||||
$DisplayName .= ' [<abbr class="tooltip" title="This is a Vanity House release">VH</abbr>]';
|
||||
}
|
||||
return $DisplayName;
|
||||
}
|
||||
@ -243,8 +243,8 @@ public static function display_name (array &$ExtendedArtists, array &$Artists, $
|
||||
public function buttons () {
|
||||
?>
|
||||
<div class="drag_drop_save">
|
||||
<input type="submit" name="update" value="Update Ranking" title="Save your rank." class="save_sortable_collage" />
|
||||
<input type="submit" name="delete" value="Delete Checked" title="Remove items." class="save_sortable_collage" />
|
||||
<input type="submit" name="update" value="Update ranking" title="Save your rank" class="tooltip save_sortable_collage" />
|
||||
<input type="submit" name="delete" value="Delete checked" title="Remove items" class="tooltip save_sortable_collage" />
|
||||
</div>
|
||||
<?
|
||||
}
|
||||
|
@ -140,7 +140,7 @@ public static function lookup_ip($IP) {
|
||||
*/
|
||||
public static function display_ip($IP) {
|
||||
$Line = display_str($IP).' ('.Tools::get_country_code_by_ajax($IP).') ';
|
||||
$Line .= '<a href="user.php?action=search&ip_history=on&ip='.display_str($IP).'&matchtype=strict" title="Search" class="brackets">S</a>';
|
||||
$Line .= '<a href="user.php?action=search&ip_history=on&ip='.display_str($IP).'&matchtype=strict" title="Search" class="brackets tooltip">S</a>';
|
||||
|
||||
return $Line;
|
||||
}
|
||||
|
@ -1,5 +1,11 @@
|
||||
CHANGE LOG
|
||||
|
||||
2013-10-26 by alderaan
|
||||
Added tooltip class to many HTML elements that were missing it
|
||||
|
||||
2013-10-25 by alderaan
|
||||
Fix many display bugs in the unsupported/unofficial Eye Candy CSS.
|
||||
|
||||
2013-10-24 by alderaan
|
||||
Layer Cake CSS now has a wider table of torrents on torrents.php
|
||||
|
||||
|
@ -333,16 +333,16 @@ function compare($X, $Y) {
|
||||
<td class="small"><!-- expand/collapse --></td>
|
||||
<td width="70%"><a href="#">↑</a> <strong><?=$DisplayName?></strong> (<a href="#" onclick="$('.releases_<?=$ReleaseType?>').gtoggle(true); return false;">View</a>)</td>
|
||||
<td>Size</td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/snatched.png" alt="Snatches" title="Snatches" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/seeders.png" alt="Seeders" title="Seeders" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/leechers.png" alt="Leechers" title="Leechers" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/snatched.png" class="tooltip" alt="Snatches" title="Snatches" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/seeders.png" class="tooltip" alt="Seeders" title="Seeders" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/leechers.png" class="tooltip" alt="Leechers" title="Leechers" /></td>
|
||||
</tr>
|
||||
<? $OpenTable = true;
|
||||
$LastReleaseType = $ReleaseType;
|
||||
}
|
||||
|
||||
|
||||
$DisplayName = "<a href=\"torrents.php?id=$GroupID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
$DisplayName = "<a href=\"torrents.php?id=$GroupID\" class=\"tooltip\" title=\"View torrent group\" dir=\"ltr\">$GroupName</a>";
|
||||
if (check_perms('users_mod') || check_perms('torrents_fix_ghosts')) {
|
||||
$DisplayName .= ' <a href="torrents.php?action=fix_group&groupid='.$GroupID.'&artistid='.$ArtistID.'&auth='.$LoggedUser['AuthKey'].'" class="brackets tooltip" title="Fix ghost DB entry">Fix</a>';
|
||||
}
|
||||
@ -382,7 +382,7 @@ function compare($X, $Y) {
|
||||
}
|
||||
|
||||
if ($GroupVanityHouse) {
|
||||
$DisplayName .= ' [<abbr title="This is a Vanity House release">VH</abbr>]';
|
||||
$DisplayName .= ' [<abbr class="tooltip" title="This is a Vanity House release">VH</abbr>]';
|
||||
}
|
||||
|
||||
$SnatchedGroupClass = ($GroupFlags['IsSnatched'] ? ' snatched_group' : '');
|
||||
@ -454,9 +454,9 @@ function compare($X, $Y) {
|
||||
<tr class="releases_<?=$ReleaseType?> torrent_row groupid_<?=$GroupID?> edition_<?=$EditionID?> group_torrent discog<?=$SnatchedTorrentClass . $SnatchedGroupClass . $HideDiscog . $HideTorrents?>">
|
||||
<td colspan="2">
|
||||
<span>
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download"><?=$Torrent['HasFile'] ? 'DL' : 'Missing'?></a>
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="tooltip" title="Download"><?=$Torrent['HasFile'] ? 'DL' : 'Missing'?></a>
|
||||
<? if (Torrents::can_use_token($Torrent)) { ?>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');" class="tooltip">FL</a>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" class="tooltip" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');">FL</a>
|
||||
<? } ?> ]
|
||||
</span>
|
||||
» <a href="torrents.php?id=<?=$GroupID?>&torrentid=<?=$TorrentID?>"><?=Torrents::torrent_info($Torrent)?></a>
|
||||
@ -516,7 +516,7 @@ function compare($X, $Y) {
|
||||
<? } else { ?>
|
||||
<a href="#" id="bookmarklink_artist_<?=$ArtistID?>" onclick="Bookmark('artist', <?=$ArtistID?>, 'Remove bookmark'); return false;" class="brackets">Bookmark</a>
|
||||
<? } ?>
|
||||
<a href="#" id="subscribelink_artist<?=$ArtistID?>" class="brackets" onclick="SubscribeComments('artist',<?=$ArtistID?>);return false;"><?=Subscriptions::has_subscribed_comments('artist', $ArtistID) !== false ? 'Unsubscribe' : 'Subscribe'?></a>
|
||||
<a href="#" id="subscribelink_artist<?=$ArtistID?>" class="brackets" onclick="SubscribeComments('artist', <?=$ArtistID?>);return false;"><?=Subscriptions::has_subscribed_comments('artist', $ArtistID) !== false ? 'Unsubscribe' : 'Subscribe'?></a>
|
||||
<!-- <a href="#" id="recommend" class="brackets">Recommend</a> -->
|
||||
<?
|
||||
if (check_perms('site_edit_wiki')) {
|
||||
@ -584,7 +584,7 @@ function compare($X, $Y) {
|
||||
<li id="list<?=$ListItem?>">
|
||||
<input type="hidden" name="list[]" value="<?=$ListItem?>" />
|
||||
<span style="float: left;"><?=$ZIPOptions[$ListItem]['2']?></span>
|
||||
<span class="remove remove_collector"><a href="#" onclick="remove_selection('<?=$ListItem?>'); return false;" style="float: right;" class="brackets" title="Remove format from the Collector">X</a></span>
|
||||
<span class="remove remove_collector"><a href="#" onclick="remove_selection('<?=$ListItem?>'); return false;" style="float: right;" class="brackets tooltip" title="Remove format from the Collector">X</a></span>
|
||||
<br style="clear: all;" />
|
||||
</li>
|
||||
<? } ?>
|
||||
@ -779,10 +779,10 @@ function compare($X, $Y) {
|
||||
<a href="#">↑</a>
|
||||
<strong>Request Name</strong>
|
||||
</td>
|
||||
<td>
|
||||
<td class="nobr">
|
||||
<strong>Vote</strong>
|
||||
</td>
|
||||
<td>
|
||||
<td class="nobr">
|
||||
<strong>Bounty</strong>
|
||||
</td>
|
||||
<td>
|
||||
@ -820,14 +820,14 @@ function compare($X, $Y) {
|
||||
<?=$FullName?>
|
||||
<div class="tags"><?=$ReqTagList?></div>
|
||||
</td>
|
||||
<td>
|
||||
<td class="nobr">
|
||||
<span id="vote_count_<?=$RequestID?>"><?=$Request['Votes']?></span>
|
||||
<? if (check_perms('site_vote')) { ?>
|
||||
<input type="hidden" id="auth" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
|
||||
<a href="javascript:Vote(0, <?=$RequestID?>)" class="brackets"><strong>+</strong></a>
|
||||
<? } ?>
|
||||
</td>
|
||||
<td>
|
||||
<td class="nobr">
|
||||
<span id="bounty_<?=$RequestID?>"><?=Format::get_size($Request['Bounty'])?></span>
|
||||
</td>
|
||||
<td>
|
||||
|
@ -35,7 +35,7 @@
|
||||
if ($DB->has_results()) {
|
||||
?>
|
||||
<div class="thin">
|
||||
There are still torrents that have <a href="artist.php?id=<?=$ArtistID?>" class="tooltip" title="View artist"><?=$Name?></a> as an artist.<br />
|
||||
There are still torrents that have <a href="artist.php?id=<?=$ArtistID?>" class="tooltip" title="View artist" dir="ltr"><?=$Name?></a> as an artist.<br />
|
||||
Please remove the artist from these torrents manually before attempting to delete.<br />
|
||||
<div class="box pad">
|
||||
<ul>
|
||||
@ -43,7 +43,7 @@
|
||||
while (list($GroupName, $GroupID) = $DB->next_record(MYSQLI_NUM, true)) {
|
||||
?>
|
||||
<li>
|
||||
<a href="torrents.php?id=<?=$GroupID?>" title="View Torrent"><?=$GroupName?></a>
|
||||
<a href="torrents.php?id=<?=$GroupID?>" class="tooltip" title="View torrent group" dir="ltr"><?=$GroupName?></a>
|
||||
</li>
|
||||
<?
|
||||
}
|
||||
@ -63,7 +63,7 @@
|
||||
if ($DB->has_results()) {
|
||||
?>
|
||||
<div class="thin">
|
||||
There are still requests that have <a href="artist.php?id=<?=$ArtistID?>" class="tooltip" title="View artist"><?=$Name?></a> as an artist.<br />
|
||||
There are still requests that have <a href="artist.php?id=<?=$ArtistID?>" class="tooltip" title="View artist" dir="ltr"><?=$Name?></a> as an artist.<br />
|
||||
Please remove the artist from these requests manually before attempting to delete.<br />
|
||||
<div class="box pad">
|
||||
<ul>
|
||||
@ -71,7 +71,7 @@
|
||||
while (list($RequestName, $RequestID) = $DB->next_record(MYSQLI_NUM, true)) {
|
||||
?>
|
||||
<li>
|
||||
<a href="requests.php?action=view&id=<?=$RequestID?>" title="View Torrent"><?=$RequestName?></a>
|
||||
<a href="requests.php?action=view&id=<?=$RequestID?>" class="tooltip" title="View request" dir="ltr"><?=$RequestName?></a>
|
||||
</li>
|
||||
<?
|
||||
}
|
||||
|
@ -65,7 +65,7 @@
|
||||
} else {
|
||||
$DisplayName = '';
|
||||
}
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID\" class=\"tooltip\" title=\"View torrent group\" dir=\"ltr\">$GroupName</a>";
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName .= " [$GroupYear]";
|
||||
}
|
||||
@ -81,7 +81,7 @@
|
||||
<tr class="torrent torrent_row<?=$GroupFlags['IsSnatched'] ? ' snatched_torrent"' : ''?>">
|
||||
<td>
|
||||
<span class="torrent_links_block">
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="brackets" title="Download torrent">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="brackets tooltip" title="Download">DL</a>
|
||||
</span>
|
||||
<?=$DisplayName?>
|
||||
<? if (check_perms('admin_reports')) { ?>
|
||||
|
@ -65,7 +65,7 @@
|
||||
} else {
|
||||
$DisplayName = '';
|
||||
}
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID\" class=\"tooltip\" title=\"View torrent group\" dir=\"ltr\">$GroupName</a>";
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName .= " [$GroupYear]";
|
||||
}
|
||||
@ -81,7 +81,7 @@
|
||||
<tr class="torrent torrent_row<?=$Torrents[$TorrentID]['IsSnatched'] ? ' snatched_torrent' : ''?>">
|
||||
<td>
|
||||
<span class="torrent_links_block">
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="brackets" title="Download torrent">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="brackets tooltip" title="Download">DL</a>
|
||||
</span>
|
||||
<?=$DisplayName?>
|
||||
<? if (check_perms('admin_reports')) { ?>
|
||||
|
@ -42,7 +42,7 @@
|
||||
}
|
||||
$FlacID = $GroupIDs[$GroupID]['TorrentID'];
|
||||
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID&torrentid=$FlacID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID&torrentid=$FlacID\" class=\"tooltip\" title=\"View torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName .= " [$GroupYear]";
|
||||
}
|
||||
@ -58,7 +58,7 @@
|
||||
<tr class="torrent torrent_row<?=$Torrents[$FlacID]['IsSnatched'] ? ' snatched_torrent' : ''?>">
|
||||
<td>
|
||||
<span class="torrent_links_block">
|
||||
<a href="torrents.php?action=download&id=<?=$FlacID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="brackets">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$FlacID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets tooltip">DL</a>
|
||||
</span>
|
||||
<?=$DisplayName?>
|
||||
<div class="tags"><?=$TorrentTags->format()?></div>
|
||||
|
@ -185,7 +185,7 @@
|
||||
if (!$Edition['FlacID'] || count($Edition['Formats']) === 3) {
|
||||
continue;
|
||||
}
|
||||
$DisplayName = $ArtistNames . '<a href="torrents.php?id='.$GroupID.'&torrentid='.$Edition['FlacID'].'#torrent'.$Edition['FlacID'].'" title="View Torrent" dir="ltr">'.$GroupName.'</a>';
|
||||
$DisplayName = $ArtistNames . '<a href="torrents.php?id='.$GroupID.'&torrentid='.$Edition['FlacID'].'#torrent'.$Edition['FlacID'].'" class="tooltip" title="View torrent" dir="ltr">'.$GroupName.'</a>';
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName .= " [$GroupYear]";
|
||||
}
|
||||
@ -217,7 +217,7 @@
|
||||
<tr class="torrent torrent_row<?=$Edition['IsSnatched'] ? ' snatched_torrent' : ''?>">
|
||||
<td>
|
||||
<span class="torrent_links_block">
|
||||
<a href="torrents.php?action=download&id=<?=$Edition['FlacID']?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$Edition['FlacID']?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets tooltip">DL</a>
|
||||
</span>
|
||||
<?=$DisplayName?>
|
||||
<div class="torrent_info"><?=$ExtraInfo?></div>
|
||||
|
@ -66,7 +66,7 @@
|
||||
} else {
|
||||
$DisplayName = '';
|
||||
}
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID&torrentid=$TorrentID#torrent$TorrentID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID&torrentid=$TorrentID#torrent$TorrentID\" class=\"tooltip\" title=\"View torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName .= " [$GroupYear]";
|
||||
}
|
||||
@ -82,7 +82,7 @@
|
||||
<tr class="torrent torrent_row<?=$Torrents[$TorrentID]['IsSnatched'] ? ' snatched_torrent' : ''?>">
|
||||
<td>
|
||||
<span class="torrent_links_block">
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="brackets" title="Download torrent">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="brackets tooltip" title="Download">DL</a>
|
||||
</span>
|
||||
<?=$DisplayName?>
|
||||
<? if (check_perms('admin_reports')) { ?>
|
||||
|
@ -131,7 +131,7 @@
|
||||
{
|
||||
continue;
|
||||
}
|
||||
$DisplayName = $ArtistNames . '<a href="torrents.php?id='.$GroupID.'&torrentid='.$Edition['FlacID'].'#torrent'.$Edition['FlacID'].'" title="View Torrent" dir="ltr">'.$GroupName.'</a>';
|
||||
$DisplayName = $ArtistNames . '<a href="torrents.php?id='.$GroupID.'&torrentid='.$Edition['FlacID'].'#torrent'.$Edition['FlacID'].'" class="tooltip" title="View torrent" dir="ltr">'.$GroupName.'</a>';
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName .= " [$GroupYear]";
|
||||
}
|
||||
@ -165,7 +165,7 @@
|
||||
<tr<?=$Edition['IsSnatched'] ? ' class="snatched_torrent"' : ''?>>
|
||||
<td>
|
||||
<span class="torrent_links_block">
|
||||
<a href="torrents.php?action=download&id=<?=$Edition['FlacID']?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$Edition['FlacID']?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets tooltip">DL</a>
|
||||
</span>
|
||||
<?=$DisplayName?>
|
||||
<div class="torrent_info"><?=$ExtraInfo?></div>
|
||||
|
@ -304,7 +304,7 @@ function transcode_parse_groups($Groups) {
|
||||
foreach ($Group['Editions'] as $RemIdent => $Edition) {
|
||||
// TODO: point to the correct FLAC (?)
|
||||
$FlacID = array_search(true, $Edition['FlacIDs']);
|
||||
$DisplayName = $ArtistNames . "<a href=\"torrents.php?id=$GroupID&torrentid=$FlacID#torrent$FlacID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
$DisplayName = $ArtistNames . "<a href=\"torrents.php?id=$GroupID&torrentid=$FlacID#torrent$FlacID\" class=\"tooltip\" title=\"View torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName .= " [$GroupYear]";
|
||||
}
|
||||
@ -318,7 +318,7 @@ function transcode_parse_groups($Groups) {
|
||||
<tr<?=($Edition['FLACIsSnatched'] ? ' class="snatched_torrent"' : '')?>>
|
||||
<td>
|
||||
<span class="torrent_links_block">
|
||||
<a href="torrents.php?action=download&id=<?=$Edition['FlacID']?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$Edition['FlacID']?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets tooltip">DL</a>
|
||||
</span>
|
||||
<?=$DisplayName?>
|
||||
<div class="torrent_info"><?=$Edition['EditionName']?></div>
|
||||
|
@ -116,7 +116,7 @@
|
||||
foreach ($Encodings as $Encoding) {
|
||||
if (!isset($Edition['Formats'][$Encoding])) {
|
||||
++$edition_miss;
|
||||
++$Counter['miss_'.$Encoding];
|
||||
++$Counter["miss_$Encoding"];
|
||||
}
|
||||
}
|
||||
$Counter['miss_total'] += $edition_miss;
|
||||
@ -164,7 +164,7 @@
|
||||
if (!$Edition['FlacID'] || count($Edition['Formats']) === 3) {
|
||||
continue;
|
||||
}
|
||||
$DisplayName = $ArtistNames . '<a href="torrents.php?id='.$GroupID.'&torrentid='.$Edition['FlacID'].'#torrent'.$Edition['FlacID'].'" title="View Torrent" dir="ltr">'.$GroupName.'</a>';
|
||||
$DisplayName = $ArtistNames . '<a href="torrents.php?id='.$GroupID.'&torrentid='.$Edition['FlacID'].'#torrent'.$Edition['FlacID'].'" class="tooltip" title="View torrent" dir="ltr">'.$GroupName.'</a>';
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName .= " [$GroupYear]";
|
||||
}
|
||||
@ -196,7 +196,7 @@
|
||||
<tr class="torrent torrent_row<?=$Edition['IsSnatched'] ? ' snatched_torrent' : ''?>">
|
||||
<td>
|
||||
<span class="torrent_links_block">
|
||||
<a href="torrents.php?action=download&id=<?=$Edition['FlacID']?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$Edition['FlacID']?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets tooltip">DL</a>
|
||||
</span>
|
||||
<?=$DisplayName?>
|
||||
<div class="torrent_info"><?=$ExtraInfo?></div>
|
||||
|
@ -65,12 +65,12 @@ function compare($X, $Y) {
|
||||
} else {
|
||||
$DisplayName = '';
|
||||
}
|
||||
$DisplayName .= '<a href="torrents.php?id='.$GroupID.'" title="View Torrent" dir="ltr">'.$GroupName.'</a>';
|
||||
$DisplayName .= '<a href="torrents.php?id='.$GroupID.'" class="tooltip" title="View torrent group" dir="ltr">'.$GroupName.'</a>';
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName = "$DisplayName [$GroupYear]";
|
||||
}
|
||||
if ($GroupVanityHouse) {
|
||||
$DisplayName .= ' [<abbr title="This is a Vanity House release">VH</abbr>]';
|
||||
$DisplayName .= ' [<abbr class="tooltip" title="This is a Vanity House release">VH</abbr>]';
|
||||
}
|
||||
$SnatchedGroupClass = $GroupFlags['IsSnatched'] ? ' snatched_group' : '';
|
||||
|
||||
@ -87,7 +87,7 @@ function compare($X, $Y) {
|
||||
</div>
|
||||
</td>
|
||||
<td class="center">
|
||||
<div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div>
|
||||
<div title="<?=$TorrentTags->title()?>" class="tooltip <?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div>
|
||||
</td>
|
||||
<td colspan="5">
|
||||
<strong><?=$DisplayName?></strong>
|
||||
@ -141,11 +141,11 @@ function compare($X, $Y) {
|
||||
?>
|
||||
<tr class="group_torrent torrent_row groupid_<?=$GroupID?> edition_<?=$EditionID?><?=$SnatchedTorrentClass . $SnatchedGroupClass . (!empty($LoggedUser['TorrentGrouping']) && $LoggedUser['TorrentGrouping'] === 1 ? ' hidden' : '')?>">
|
||||
<td colspan="3">
|
||||
<span>[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download">DL</a>
|
||||
<span>[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="tooltip" title="Download">DL</a>
|
||||
<? if (Torrents::can_use_token($Torrent)) { ?>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');" class="tooltip">FL</a>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" class="tooltip" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');">FL</a>
|
||||
<? } ?>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" title="Report">RP</a> ]
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" class="tooltip" title="Report">RP</a> ]
|
||||
</span>
|
||||
» <a href="torrents.php?id=<?=$GroupID?>&torrentid=<?=$TorrentID?>"><?=Torrents::torrent_info($Torrent)?></a>
|
||||
</td>
|
||||
@ -161,7 +161,7 @@ function compare($X, $Y) {
|
||||
|
||||
list($TorrentID, $Torrent) = each($Torrents);
|
||||
|
||||
$DisplayName = '<a href="torrents.php?id='.$GroupID.'" title="View Torrent" dir="ltr">'.$GroupName.'</a>';
|
||||
$DisplayName = '<a href="torrents.php?id='.$GroupID.'" class="tooltip" title="View torrent group" dir="ltr">'.$GroupName.'</a>';
|
||||
|
||||
if ($Torrent['IsSnatched']) {
|
||||
$DisplayName .= ' ' . Format::torrent_label('Snatched!');
|
||||
@ -178,16 +178,16 @@ function compare($X, $Y) {
|
||||
<tr class="torrent torrent_row<?=$SnatchedTorrentClass . $SnatchedGroupClass?>" id="group_<?=$GroupID?>">
|
||||
<td></td>
|
||||
<td class="center">
|
||||
<div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>">
|
||||
<div title="<?=$TorrentTags->title()?>" class="tooltip <?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>">
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<span>
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download">DL</a>
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="tooltip" title="Download">DL</a>
|
||||
<? if (Torrents::can_use_token($Torrent)) { ?>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');" class="tooltip">FL</a>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" class="tooltip" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');">FL</a>
|
||||
<? } ?>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" title="Report">RP</a> ]
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" class="tooltip" title="Report">RP</a> ]
|
||||
</span>
|
||||
<strong><?=$DisplayName?></strong>
|
||||
<div class="tags"><?=$TorrentTags->format()?></div>
|
||||
@ -358,9 +358,9 @@ function compare($X, $Y) {
|
||||
<td><!-- Category --></td>
|
||||
<td width="70%"><strong>Torrents</strong></td>
|
||||
<td>Size</td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/snatched.png" alt="Snatches" title="Snatches" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/seeders.png" alt="Seeders" title="Seeders" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/leechers.png" alt="Leechers" title="Leechers" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/snatched.png" class="tooltip" alt="Snatches" title="Snatches" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/seeders.png" class="tooltip" alt="Seeders" title="Seeders" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/leechers.png" class="tooltip" alt="Leechers" title="Leechers" /></td>
|
||||
</tr>
|
||||
<?=$TorrentTable?>
|
||||
</table>
|
||||
|
@ -94,10 +94,10 @@
|
||||
} elseif (count($Artists) > 0) {
|
||||
$DisplayName .= Artists::display_artists(array('1' => $Artists), true, false);
|
||||
}
|
||||
$TorrentLink = "<a href=\"torrents.php?id=$GroupID\" title=\"View Torrent\">$GroupName</a>";
|
||||
$TorrentLink = "<a href=\"torrents.php?id=$GroupID\" class=\"tooltip\" title=\"View torrent group\">$GroupName</a>";
|
||||
$GroupYear = $GroupYear > 0 ? $GroupYear : '';
|
||||
if ($GroupVanityHouse) {
|
||||
$DisplayName .= ' [<abbr title="This is a Vanity House release">VH</abbr>]';
|
||||
$DisplayName .= ' [<abbr class="tooltip" title="This is a Vanity House release">VH</abbr>]';
|
||||
}
|
||||
|
||||
$AltCSS = ($Number % 2 === 0) ? 'rowa' : 'rowb';
|
||||
|
@ -80,12 +80,12 @@
|
||||
$DisplayName .= Artists::display_artists(array('1' => $GroupArtists));
|
||||
}
|
||||
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID\" class=\"tooltip\" title=\"View torrent group\" dir=\"ltr\">$GroupName</a>";
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName = "$DisplayName [$GroupYear]";
|
||||
}
|
||||
if ($GroupVanityHouse) {
|
||||
$DisplayName .= ' [<abbr title="This is a Vanity House release">VH</abbr>]';
|
||||
$DisplayName .= ' [<abbr class="tooltip" title="This is a Vanity House release">VH</abbr>]';
|
||||
}
|
||||
$SnatchedGroupClass = ($GroupFlags['IsSnatched'] ? ' snatched_group' : '');
|
||||
// Start an output buffer, so we can store this output in $TorrentTable
|
||||
@ -98,11 +98,11 @@
|
||||
<tr class="group discog<?=$SnatchedGroupClass?>" id="group_<?=$GroupID?>">
|
||||
<td class="center">
|
||||
<div id="showimg_<?=$GroupID?>" class="<?=($ShowGroups ? 'hide' : 'show')?>_torrents">
|
||||
<a href="#" class="tooltip show_torrents_link" onclick="toggle_group(<?=$GroupID?>, this, event)" title="Collapse this group. Hold "Ctrl" while clicking to collapse all groups on this page."></a>
|
||||
<a href="#" class="tooltip show_torrents_link" onclick="toggle_group(<?=$GroupID?>, this, event);" title="Collapse this group. Hold "Ctrl" while clicking to collapse all groups on this page."></a>
|
||||
</div>
|
||||
</td>
|
||||
<td class="center">
|
||||
<div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div>
|
||||
<div title="<?=$TorrentTags->title()?>" class="tooltip <?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div>
|
||||
</td>
|
||||
<td colspan="5">
|
||||
<strong><?=$DisplayName?></strong>
|
||||
@ -157,11 +157,11 @@
|
||||
<tr class="group_torrent torrent_row groupid_<?=$GroupID?> edition_<?=$EditionID?><?=$SnatchedTorrentClass . $SnatchedGroupClass . (!empty($LoggedUser['TorrentGrouping']) && $LoggedUser['TorrentGrouping'] == 1 ? ' hidden' : '')?>">
|
||||
<td colspan="3">
|
||||
<span class="brackets">
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="tooltip" title="Download">DL</a>
|
||||
<? if (Torrents::can_use_token($Torrent)) { ?>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');" class="tooltip">FL</a>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" class="tooltip" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');">FL</a>
|
||||
<? } ?>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" title="Report">RP</a>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" class="tooltip" title="Report">RP</a>
|
||||
</span>
|
||||
» <a href="torrents.php?id=<?=$GroupID?>&torrentid=<?=$TorrentID?>"><?=Torrents::torrent_info($Torrent)?></a>
|
||||
</td>
|
||||
@ -177,7 +177,7 @@
|
||||
|
||||
list($TorrentID, $Torrent) = each($Torrents);
|
||||
|
||||
$DisplayName = "<a href=\"torrents.php?id=$GroupID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
$DisplayName = "<a href=\"torrents.php?id=$GroupID\" class=\"tooltip\" title=\"View torrent group\" dir=\"ltr\">$GroupName</a>";
|
||||
|
||||
if ($Torrent['IsSnatched']) {
|
||||
$DisplayName .= ' ' . Format::torrent_label('Snatched!');
|
||||
@ -194,16 +194,16 @@
|
||||
<tr class="torrent torrent_row<?=$SnatchedTorrentClass . $SnatchedGroupClass?>" id="group_<?=$GroupID?>">
|
||||
<td></td>
|
||||
<td class="center">
|
||||
<div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>">
|
||||
<div title="<?=$TorrentTags->title()?>" class="tooltip <?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>">
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<span class="brackets">
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="tooltip" title="Download">DL</a>
|
||||
<? if (Torrents::can_use_token($Torrent)) { ?>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');" class="tooltip">FL</a>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" class="tooltip" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');">FL</a>
|
||||
<? } ?>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" title="Report">RP</a>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" class="tooltip" title="Report">RP</a>
|
||||
</span>
|
||||
<strong><?=$DisplayName?></strong>
|
||||
<? Votes::vote_link($GroupID, $UserVotes[$GroupID]['Type']); ?>
|
||||
@ -576,9 +576,9 @@
|
||||
<td><!-- Category --></td>
|
||||
<td width="70%"><strong>Torrents</strong></td>
|
||||
<td>Size</td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/snatched.png" alt="Snatches" title="Snatches" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/seeders.png" alt="Seeders" title="Seeders" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/leechers.png" alt="Leechers" title="Leechers" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/snatched.png" class="tooltip" alt="Snatches" title="Snatches" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/seeders.png" class="tooltip" alt="Seeders" title="Seeders" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/leechers.png" class="tooltip" alt="Leechers" title="Leechers" /></td>
|
||||
</tr>
|
||||
<?=$TorrentTable?>
|
||||
</table>
|
||||
|
@ -54,6 +54,29 @@
|
||||
error(403);
|
||||
}
|
||||
|
||||
if (empty($_POST['question']) || empty($_POST['answers']) || !check_perms('forums_polls_create')) {
|
||||
$NoPoll = 1;
|
||||
} else {
|
||||
$NoPoll = 0;
|
||||
$Question = trim($_POST['question']);
|
||||
$Answers = array();
|
||||
$Votes = array();
|
||||
|
||||
//This can cause polls to have answer IDs of 1 3 4 if the second box is empty
|
||||
foreach ($_POST['answers'] as $i => $Answer) {
|
||||
if ($Answer == '') {
|
||||
continue;
|
||||
}
|
||||
$Answers[$i + 1] = $Answer;
|
||||
$Votes[$i + 1] = 0;
|
||||
}
|
||||
|
||||
if (count($Answers) < 2) {
|
||||
error('You cannot create a poll with only one answer.');
|
||||
} elseif (count($Answers) > 25) {
|
||||
error('You cannot create a poll with greater than 25 answers.');
|
||||
}
|
||||
}
|
||||
|
||||
$DB->query("
|
||||
INSERT INTO forums_topics
|
||||
@ -94,29 +117,7 @@
|
||||
Subscriptions::subscribe($TopicID);
|
||||
}
|
||||
|
||||
if (empty($_POST['question']) || empty($_POST['answers']) || !check_perms('forums_polls_create')) {
|
||||
$NoPoll = 1;
|
||||
} else {
|
||||
$NoPoll = 0;
|
||||
$Question = trim($_POST['question']);
|
||||
$Answers = array();
|
||||
$Votes = array();
|
||||
|
||||
//This can cause polls to have answer IDs of 1 3 4 if the second box is empty
|
||||
foreach ($_POST['answers'] as $i => $Answer) {
|
||||
if ($Answer == '') {
|
||||
continue;
|
||||
}
|
||||
$Answers[$i + 1] = $Answer;
|
||||
$Votes[$i + 1] = 0;
|
||||
}
|
||||
|
||||
if (count($Answers) < 2) {
|
||||
error('You cannot create a poll with only one answer.');
|
||||
} elseif (count($Answers) > 25) {
|
||||
error('You cannot create a poll with greater than 25 answers.');
|
||||
}
|
||||
|
||||
if (!$NoPoll) { // god, I hate double negatives...
|
||||
$DB->query("
|
||||
INSERT INTO forums_polls
|
||||
(TopicID, Question, Answers)
|
||||
|
@ -186,7 +186,7 @@
|
||||
SELECT COUNT(ID)
|
||||
FROM torrents");
|
||||
list($TorrentCount) = $DB->next_record();
|
||||
$Cache->cache_value('stats_torrent_count', $TorrentCount, 0); //inf cache
|
||||
$Cache->cache_value('stats_torrent_count', $TorrentCount, 604800); // staggered 1 week cache
|
||||
}
|
||||
|
||||
if (($AlbumCount = $Cache->get_value('stats_album_count')) === false) {
|
||||
@ -195,7 +195,7 @@
|
||||
FROM torrents_group
|
||||
WHERE CategoryID = '1'");
|
||||
list($AlbumCount) = $DB->next_record();
|
||||
$Cache->cache_value('stats_album_count', $AlbumCount, 0); //inf cache
|
||||
$Cache->cache_value('stats_album_count', $AlbumCount, 604830); // staggered 1 week cache
|
||||
}
|
||||
|
||||
if (($ArtistCount = $Cache->get_value('stats_artist_count')) === false) {
|
||||
@ -203,7 +203,7 @@
|
||||
SELECT COUNT(ArtistID)
|
||||
FROM artists_group");
|
||||
list($ArtistCount) = $DB->next_record();
|
||||
$Cache->cache_value('stats_artist_count', $ArtistCount, 0); //inf cache
|
||||
$Cache->cache_value('stats_artist_count', $ArtistCount, 604860); // staggered 1 week cache
|
||||
}
|
||||
|
||||
if (($PerfectCount = $Cache->get_value('stats_perfect_count')) === false) {
|
||||
@ -217,7 +217,7 @@
|
||||
OR (Media = 'Soundboard' AND Format = 'FLAC')
|
||||
)");
|
||||
list($PerfectCount) = $DB->next_record();
|
||||
$Cache->cache_value('stats_perfect_count', $PerfectCount, 0); //inf cache
|
||||
$Cache->cache_value('stats_perfect_count', $PerfectCount, 604890); // staggered 1 week cache
|
||||
}
|
||||
?>
|
||||
<li>Torrents: <?=number_format($TorrentCount)?></li>
|
||||
@ -265,7 +265,7 @@
|
||||
$PeerCount = $DB->to_array(0, MYSQLI_NUM, false);
|
||||
$SeederCount = $PeerCount['Seeding'][1] ?: 0;
|
||||
$LeecherCount = $PeerCount['Leeching'][1] ?: 0;
|
||||
$Cache->cache_value('stats_peers', array($LeecherCount, $SeederCount), 0);
|
||||
$Cache->cache_value('stats_peers', array($LeecherCount, $SeederCount), 1209600); // 2 week cache
|
||||
$Cache->delete_value('stats_peers_lock');
|
||||
}
|
||||
} else {
|
||||
@ -299,7 +299,7 @@
|
||||
$Cache->cache_value('polls_featured', $TopicID, 0);
|
||||
}
|
||||
if ($TopicID) {
|
||||
if (($Poll = $Cache->get_value('polls_'.$TopicID)) === false) {
|
||||
if (($Poll = $Cache->get_value("polls_$TopicID")) === false) {
|
||||
$DB->query("
|
||||
SELECT Question, Answers, Featured, Closed
|
||||
FROM forums_polls
|
||||
|
@ -1,7 +1,13 @@
|
||||
<?
|
||||
DEFINE('MAX_QUESTIONS', 50);
|
||||
|
||||
authorize();
|
||||
|
||||
$DB->query("SELECT COUNT(1) FROM user_questions WHERE UserID = '$LoggedUser[ID]'");
|
||||
if ($DB->record_count() >= MAX_QUESTIONS) {
|
||||
error("You have asked too many questions for the time being.");
|
||||
}
|
||||
|
||||
$Question = db_string($_POST['question']);
|
||||
|
||||
if (empty($Question)) {
|
||||
|
@ -94,8 +94,8 @@
|
||||
while (list($ReportID, $SnitchID, $SnitchName, $ThingID, $Short, $ReportedTime, $Reason, $Status, $ClaimerID, $Notes, $ResolverID) = $DB->next_record()) {
|
||||
$Type = $Types[$Short];
|
||||
$Reference = "reports.php?id=$ReportID#report$ReportID";
|
||||
?>
|
||||
<div id="report_<?=$ReportID?>">
|
||||
?>
|
||||
<div id="report_<?=$ReportID?>" class="pending_report_v1">
|
||||
<table cellpadding="5" id="report_<?=$ReportID?>">
|
||||
<tr>
|
||||
<td><strong><a href="<?=$Reference?>">Report #<?=$ReportID?></a></strong></td>
|
||||
|
@ -154,7 +154,7 @@
|
||||
<a href="log.php?search=Torrent+<?=$TorrentID?>"><?=$TorrentID?></a> (Deleted)
|
||||
<? } else { ?>
|
||||
<?=$LinkName?>
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets tooltip">DL</a>
|
||||
uploaded by <a href="user.php?id=<?=$UploaderID?>"><?=$UploaderName?></a> <?=time_diff($Time)?>
|
||||
<br />
|
||||
<div style="text-align: right;">was reported by <a href="user.php?id=<?=$ReporterID?>"><?=$ReporterName?></a> <?=time_diff($ReportedTime)?> for the reason: <strong><?=$ReportType['title']?></strong></div>
|
||||
@ -298,7 +298,7 @@
|
||||
?>
|
||||
<?=($First ? '' : '<br />')?>
|
||||
<?=$ExtraLinkName?>
|
||||
<a href="torrents.php?action=download&id=<?=$ExtraID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$ExtraID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets tooltip">DL</a>
|
||||
uploaded by <a href="user.php?id=<?=$ExtraUploaderID?>"><?=$ExtraUploaderName?></a> <?=time_diff($ExtraTime)?> <a href="#" onclick="Switch(<?=$ReportID?>, <?=$TorrentID?>, <?=$ExtraID?>); return false;" class="brackets">Switch</a>
|
||||
<?
|
||||
$First = false;
|
||||
|
@ -80,9 +80,9 @@
|
||||
<tr class="colhead_dark">
|
||||
<td width="80%"><strong>Reported torrent</strong></td>
|
||||
<td><strong>Size</strong></td>
|
||||
<td class="sign"><img src="static/styles/<?=($LoggedUser['StyleName'])?>/images/snatched.png" alt="Snatches" title="Snatches" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=($LoggedUser['StyleName'])?>/images/seeders.png" alt="Seeders" title="Seeders" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=($LoggedUser['StyleName'])?>/images/leechers.png" alt="Leechers" title="Leechers" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=($LoggedUser['StyleName'])?>/images/snatched.png" class="tooltip" alt="Snatches" title="Snatches" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=($LoggedUser['StyleName'])?>/images/seeders.png" class="tooltip" alt="Seeders" title="Seeders" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=($LoggedUser['StyleName'])?>/images/leechers.png" class="tooltip" alt="Leechers" title="Leechers" /></td>
|
||||
</tr>
|
||||
<?
|
||||
build_torrents_table($Cache, $DB, $LoggedUser, $GroupID, $GroupName, $GroupCategoryID, $ReleaseType, $TorrentList, $Types, $Text, $Username, $ReportedTimes);
|
||||
@ -104,7 +104,7 @@
|
||||
<tr>
|
||||
<td class="label">Reason:</td>
|
||||
<td>
|
||||
<select id="type" name="type" onchange="ChangeReportType()">
|
||||
<select id="type" name="type" onchange="ChangeReportType();">
|
||||
<?
|
||||
if (!empty($Types[$CategoryID])) {
|
||||
$TypeList = $Types['master'] + $Types[$CategoryID];
|
||||
|
@ -323,7 +323,7 @@
|
||||
<a href="log.php?search=Torrent+<?=$TorrentID?>"><?=$TorrentID?></a> (Deleted)
|
||||
<? } else { ?>
|
||||
<?=$LinkName?>
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets tooltip">DL</a>
|
||||
uploaded by <a href="user.php?id=<?=$UploaderID?>"><?=$UploaderName?></a> <?=time_diff($Time)?>
|
||||
<br />
|
||||
<? if ($ReporterName == '') {
|
||||
@ -475,7 +475,7 @@
|
||||
?>
|
||||
<?=($First ? '' : '<br />')?>
|
||||
<?=$ExtraLinkName?>
|
||||
<a href="torrents.php?action=download&id=<?=$ExtraID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$ExtraID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets tooltip">DL</a>
|
||||
uploaded by <a href="user.php?id=<?=$ExtraUploaderID?>"><?=$ExtraUploaderName?></a> <?=time_diff($ExtraTime)?> <a href="#" onclick="Switch(<?=$ReportID?>, <?=$TorrentID?>, <?=$ExtraID?>); return false;" class="brackets">Switch</a>
|
||||
<?
|
||||
$First = false;
|
||||
|
@ -432,7 +432,7 @@
|
||||
</tr>
|
||||
<? } ?>
|
||||
</table>
|
||||
<div class="box2 box_request_desc">
|
||||
<div class="box box2 box_request_desc">
|
||||
<div class="head"><strong>Description</strong></div>
|
||||
<div class="pad">
|
||||
<?= $Text->full_format($Request['Description']);?>
|
||||
|
@ -78,7 +78,7 @@
|
||||
|
||||
foreach ($ChangeLog as $Change) {
|
||||
?>
|
||||
<div class="box box2">
|
||||
<div class="box box2 change_log_entry">
|
||||
<div class="head">
|
||||
<span><?=$Change['Time']?> by <?=$Change['Author']?></span>
|
||||
<? if ($CanEdit) { ?>
|
||||
|
@ -19,7 +19,7 @@
|
||||
<table class="layout">
|
||||
<tr>
|
||||
<td class="label">Date:</td>
|
||||
<td><input type="text" id="date" name="date" value="<?=!empty($_GET['date']) ? display_str($_GET['date']) : 'YYYY-MM-DD'?>" onfocus="if ($('#date').raw().value == 'YYYY-MM-DD') $('#date').raw().value = ''" /></td>
|
||||
<td><input type="text" id="date" name="date" value="<?=!empty($_GET['date']) ? display_str($_GET['date']) : 'YYYY-MM-DD'?>" onfocus="if ($('#date').raw().value == 'YYYY-MM-DD') { $('#date').raw().value = ''; }" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label">Type:</td>
|
||||
@ -119,7 +119,7 @@
|
||||
$DisplayName = Artists::display_artists($Artists, true, true);
|
||||
}
|
||||
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID&torrentid=$TorrentID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID&torrentid=$TorrentID\" class=\"tooltip\" title=\"View torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
|
||||
if ($GroupCategoryID == 1 && $GroupYear > 0) {
|
||||
$DisplayName .= " [$GroupYear]";
|
||||
@ -174,9 +174,9 @@
|
||||
?>
|
||||
<tr class="group_torrent row<?=$Highlight?>">
|
||||
<td style="padding: 8px; text-align: center;"><strong><?=$Rank?></strong></td>
|
||||
<td class="center cats_col"><div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div></td>
|
||||
<td class="center cats_col"><div title="<?=$TorrentTags->title()?>" class="tooltip <?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div></td>
|
||||
<td>
|
||||
<span><?=($GroupID ? '<a href="torrents.php?action=download&id='.$TorrentID.'&authkey='.$LoggedUser['AuthKey'].'&torrent_pass='.$LoggedUser['torrent_pass'].' title="Download" class="brackets">DL</a>' : '(Deleted)')?></span>
|
||||
<span><?=($GroupID ? '<a href="torrents.php?action=download&id='.$TorrentID.'&authkey='.$LoggedUser['AuthKey'].'&torrent_pass='.$LoggedUser['torrent_pass'].' title="Download" class="brackets tooltip">DL</a>' : '(Deleted)')?></span>
|
||||
<?=$DisplayName?>
|
||||
<div class="tags"><?=$TorrentTags->format()?></div>
|
||||
</td>
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
if ($_GET['tags']) {
|
||||
$TagWhere = array();
|
||||
$Tags = explode(',', str_replace(".","_",trim($_GET['tags'])));
|
||||
$Tags = explode(',', str_replace('.', '_', trim($_GET['tags'])));
|
||||
foreach ($Tags as $Tag) {
|
||||
$Tag = preg_replace('/[^a-z0-9_]/', '', $Tag);
|
||||
if ($Tag != '') {
|
||||
@ -473,7 +473,7 @@ function generate_torrent_table($Caption, $Tag, $Details, $Limit) {
|
||||
$DisplayName = Artists::display_artists($Artists[$GroupID], true, true);
|
||||
}
|
||||
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID&torrentid=$TorrentID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID&torrentid=$TorrentID\" class=\"tooltip\" title=\"View torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
|
||||
if ($GroupCategoryID == 1 && $GroupYear > 0) {
|
||||
$DisplayName .= " [$GroupYear]";
|
||||
@ -542,7 +542,7 @@ function generate_torrent_table($Caption, $Tag, $Details, $Limit) {
|
||||
?>
|
||||
<tr class="torrent row<?=$Highlight . ($IsBookmarked ? ' bookmarked' : '') . ($IsSnatched ? ' snatched_torrent' : '')?>">
|
||||
<td style="padding: 8px; text-align: center;"><strong><?=$Rank?></strong></td>
|
||||
<td class="center cats_col"><div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div></td>
|
||||
<td class="center cats_col"><div title="<?=$TorrentTags->title()?>" class="tooltip <?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div></td>
|
||||
<td class="big_info">
|
||||
<? if ($LoggedUser['CoverArt']) { ?>
|
||||
<div class="group_image float_left clear">
|
||||
@ -551,7 +551,7 @@ function generate_torrent_table($Caption, $Tag, $Details, $Limit) {
|
||||
<? } ?>
|
||||
<div class="group_info clear">
|
||||
|
||||
<span><a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets">DL</a></span>
|
||||
<span><a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets tooltip">DL</a></span>
|
||||
|
||||
<strong><?=$DisplayName?></strong> <?=$ExtraInfo?><? if ($Reported) { ?> - <strong class="torrent_label tl_reported">Reported</strong><? } ?>
|
||||
<span class="bookmark" style="float: right;">
|
||||
|
@ -183,12 +183,12 @@
|
||||
$DisplayName .= Artists::display_artists(array('1'=>$GroupArtists));
|
||||
}
|
||||
|
||||
$DisplayName .= '<a href="torrents.php?id='.$GroupID.'" title="View Torrent" dir="ltr">'.$GroupName.'</a>';
|
||||
$DisplayName .= '<a href="torrents.php?id='.$GroupID.'" class="tooltip" title="View torrent group" dir="ltr">'.$GroupName.'</a>';
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName = $DisplayName. " [$GroupYear]";
|
||||
}
|
||||
if ($GroupVanityHouse) {
|
||||
$DisplayName .= ' [<abbr title="This is a Vanity House release">VH</abbr>]';
|
||||
$DisplayName .= ' [<abbr class="tooltip" title="This is a Vanity House release">VH</abbr>]';
|
||||
}
|
||||
// Start an output buffer, so we can store this output in $TorrentTable
|
||||
ob_start();
|
||||
@ -211,7 +211,7 @@
|
||||
</div>
|
||||
</td>
|
||||
<td class="center cats_col">
|
||||
<div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div>
|
||||
<div title="<?=$TorrentTags->title()?>" class="tooltip <?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div>
|
||||
</td>
|
||||
<td class="big_info">
|
||||
<? if ($LoggedUser['CoverArt']) { ?>
|
||||
@ -292,11 +292,11 @@
|
||||
<tr class="group_torrent torrent_row groupid_<?=$GroupID?> edition_<?=$EditionID?><?=$SnatchedTorrentClass . $SnatchedGroupClass?> hidden">
|
||||
<td colspan="3">
|
||||
<span>
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download">DL</a>
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="tooltip" title="Download">DL</a>
|
||||
<? if (Torrents::can_use_token($Torrent)) { ?>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');" class="tooltip">FL</a>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" class="tooltip" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');">FL</a>
|
||||
<? } ?>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" title="Report">RP</a> ]
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" class="tooltip" title="Report">RP</a> ]
|
||||
</span>
|
||||
» <a href="torrents.php?id=<?=$GroupID?>&torrentid=<?=$TorrentID?>"><?=Torrents::torrent_info($Torrent)?><? if ($Reported) { ?> / <strong class="torrent_label tl_reported">Reported</strong><? } ?></a>
|
||||
</td>
|
||||
@ -313,7 +313,7 @@
|
||||
list($TorrentID, $Torrent) = each($Torrents);
|
||||
$Torrent['IsSnatched'] = Torrents::has_snatched($TorrentID);
|
||||
|
||||
$DisplayName = $Number .' - <a href="torrents.php?id='.$GroupID.'" title="View Torrent" dir="ltr">'.$GroupName.'</a>';
|
||||
$DisplayName = $Number .' - <a href="torrents.php?id='.$GroupID.'" class="tooltip" title="View torrent group" dir="ltr">'.$GroupName.'</a>';
|
||||
if ($Torrent['IsSnatched']) {
|
||||
$DisplayName .= ' ' . Format::torrent_label('Snatched!');
|
||||
}
|
||||
@ -329,7 +329,7 @@
|
||||
<tr class="torrent torrent_row<?=$SnatchedTorrentClass . $SnatchedGroupClass?>" id="group_<?=$GroupID?>">
|
||||
<td></td>
|
||||
<td class="center cats_col">
|
||||
<div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>">
|
||||
<div title="<?=$TorrentTags->title()?>" class="tooltip <?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>">
|
||||
</div>
|
||||
</td>
|
||||
<td class="nobr big_info">
|
||||
@ -340,11 +340,11 @@
|
||||
<? } ?>
|
||||
<div class="group_info clear">
|
||||
<span>
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download">DL</a>
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="tooltip" title="Download">DL</a>
|
||||
<? if (Torrents::can_use_token($Torrent)) { ?>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');" class="tooltip">FL</a>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" class="tooltip" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');">FL</a>
|
||||
<? } ?>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" title="Report">RP</a>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" class="tooltip" title="Report">RP</a>
|
||||
<? if ($IsBookmarked) { ?>
|
||||
| <a href="#" id="bookmarklink_torrent_<?=$GroupID?>" class="remove_bookmark" onclick="Unbookmark('torrent', <?=$GroupID?>, 'Bookmark'); return false;">Remove bookmark</a>
|
||||
<? } else { ?>
|
||||
@ -352,7 +352,7 @@
|
||||
<? } ?>
|
||||
]
|
||||
</span>
|
||||
<strong><?=$DisplayName?></strong> <!--<?Votes::vote_link($GroupID,$UserVotes[$GroupID]['Type']);?>-->
|
||||
<strong><?=$DisplayName?></strong> <!--<?Votes::vote_link($GroupID, $UserVotes[$GroupID]['Type']);?>-->
|
||||
<div class="tags"><?=$TorrentTags->format()?></div>
|
||||
</div>
|
||||
</td>
|
||||
|
@ -925,7 +925,7 @@ function header_link($SortKey, $DefaultWay = 'DESC') {
|
||||
<div class="submit">
|
||||
<span style="float: left;"><?=number_format($TorrentCount)?> Results</span>
|
||||
<input type="submit" value="Filter torrents" />
|
||||
<input type="button" value="Reset" onclick="location.href='torrents.php<? if (isset($_GET['action']) && $_GET['action'] == 'advanced') { ?>?action=advanced<? } ?>'" />
|
||||
<input type="button" value="Reset" onclick="location.href = 'torrents.php<? if (isset($_GET['action']) && $_GET['action'] == 'advanced') { ?>?action=advanced<? } ?>';" />
|
||||
|
||||
<? if (isset($TorrentWhere) || isset($GroupWhere) || $OrderBy != 's3' || $OrderWay != 'DESC') { ?>
|
||||
<input type="submit" name="setdefault" value="Make default" />
|
||||
@ -952,9 +952,21 @@ function header_link($SortKey, $DefaultWay = 'DESC') {
|
||||
<td>Files</td>
|
||||
<td><a href="<?=header_link('s3')?>"><?=$TimeLabel?></a></td>
|
||||
<td><a href="<?=header_link('s4')?>">Size</a></td>
|
||||
<td class="sign"><a href="<?=header_link('s5')?>"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/snatched.png" alt="Snatches" title="Snatches" /></a></td>
|
||||
<td class="sign"><a href="<?=header_link('s6')?>"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/seeders.png" alt="Seeders" title="Seeders" /></a></td>
|
||||
<td class="sign"><a href="<?=header_link('s7')?>"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/leechers.png" alt="Leechers" title="Leechers" /></a></td>
|
||||
<td class="sign">
|
||||
<a href="<?=header_link('s5')?>">
|
||||
<img src="static/styles/<?=$LoggedUser['StyleName']?>/images/snatched.png" class="tooltip" alt="Snatches" title="Snatches" />
|
||||
</a>
|
||||
</td>
|
||||
<td class="sign">
|
||||
<a href="<?=header_link('s6')?>">
|
||||
<img src="static/styles/<?=$LoggedUser['StyleName']?>/images/seeders.png" class="tooltip" alt="Seeders" title="Seeders" />
|
||||
</a>
|
||||
</td>
|
||||
<td class="sign">
|
||||
<a href="<?=header_link('s7')?>">
|
||||
<img src="static/styles/<?=$LoggedUser['StyleName']?>/images/leechers.png" class="tooltip" alt="Leechers" title="Leechers" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?
|
||||
if ($LoggedUser['TorrentGrouping'] == 0) {
|
||||
@ -1032,14 +1044,14 @@ function header_link($SortKey, $DefaultWay = 'DESC') {
|
||||
$DisplayName = Artists::display_artists($Artists[$GroupID]);
|
||||
if ((count($Torrents['id']) > 1 || $GroupCategoryID == 1) && !$DisableGrouping) {
|
||||
// These torrents are in a group
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID\" class=\"tooltip\" title=\"View torrent group\" dir=\"ltr\">$GroupName</a>";
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName .= " [$GroupYear]";
|
||||
}
|
||||
?>
|
||||
<tr class="group">
|
||||
<td class="center"><div title="<?=$ActionTitle?>" id="showimg_<?=$GroupID?>" class="<?=$ActionURL?>_torrents"><a href="#" class="show_torrents_link" onclick="$('.groupid_<?=$GroupID?>').gtoggle(); return false;"></a></div></td>
|
||||
<td class="center cats_col"><div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div></td>
|
||||
<td class="center"><div title="<?=$ActionTitle?>" id="showimg_<?=$GroupID?>" class="tooltip <?=$ActionURL?>_torrents"><a href="#" class="show_torrents_link" onclick="$('.groupid_<?=$GroupID?>').gtoggle(); return false;"></a></div></td>
|
||||
<td class="center cats_col"><div title="<?=$TorrentTags->title()?>" class="tooltip <?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div></td>
|
||||
<td colspan="2" class="big_info">
|
||||
<?
|
||||
// Image cover art requires WikiImage
|
||||
@ -1168,8 +1180,8 @@ function header_link($SortKey, $DefaultWay = 'DESC') {
|
||||
<tr class="group_torrent groupid_<?=$GroupID?> <?=$HideGroup?>">
|
||||
<td colspan="3">
|
||||
<span>
|
||||
[ <a href="torrents.php?action=download&id=<?=$Torrents['id'][$Key]?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download">DL</a>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$Torrents['id'][$Key]?>" title="Report">RP</a> ]
|
||||
[ <a href="torrents.php?action=download&id=<?=$Torrents['id'][$Key]?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="tooltip" title="Download">DL</a>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$Torrents['id'][$Key]?>" class="tooltip" title="Report">RP</a> ]
|
||||
</span>
|
||||
» <a href="torrents.php?id=<?=$GroupID?>&torrentid=<?=$Val?>"><?=$ExtraInfo?></a>
|
||||
</td>
|
||||
@ -1185,9 +1197,9 @@ function header_link($SortKey, $DefaultWay = 'DESC') {
|
||||
} else {
|
||||
// Either grouping is disabled, or we're viewing a type that does not require grouping
|
||||
if ($GroupCategoryID == 1) {
|
||||
$DisplayName .= '<a href="torrents.php?id='.$GroupID.'&torrentid='.$Torrents['id'][0].'" title="View Torrent" dir="ltr">'.$GroupName.'</a>';
|
||||
$DisplayName .= '<a href="torrents.php?id='.$GroupID.'&torrentid='.$Torrents['id'][0].'" class="tooltip" title="View torrent" dir="ltr">'.$GroupName.'</a>';
|
||||
} else {
|
||||
$DisplayName .= '<a href="torrents.php?id='.$GroupID.'" title="View Torrent" dir="ltr">'.$GroupName.'</a>';
|
||||
$DisplayName .= '<a href="torrents.php?id='.$GroupID.'" class="tooltip" title="View torrent group" dir="ltr">'.$GroupName.'</a>';
|
||||
}
|
||||
|
||||
$ExtraInfo = '';
|
||||
@ -1250,7 +1262,9 @@ function header_link($SortKey, $DefaultWay = 'DESC') {
|
||||
<? if (!$DisableGrouping) { ?>
|
||||
<td></td>
|
||||
<? } ?>
|
||||
<td class="center cats_col"><div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div></td>
|
||||
<td class="center cats_col">
|
||||
<div title="<?=$TorrentTags->title()?>" class="tooltip <?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div>
|
||||
</td>
|
||||
<td class="big_info">
|
||||
<? /* if ($LoggedUser['CoverArt']) { ?>
|
||||
<div class="group_image float_left clear">
|
||||
@ -1258,7 +1272,7 @@ function header_link($SortKey, $DefaultWay = 'DESC') {
|
||||
</div>
|
||||
<? } */ ?>
|
||||
<div class="group_info">
|
||||
<span>[ <a href="torrents.php?action=download&id=<?=$Torrents['id'][0].$DownloadString?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download">DL</a> | <a href="reportsv2.php?action=report&id=<?=$Torrents['id'][0]?>" title="Report">RP</a> ]</span>
|
||||
<span>[ <a href="torrents.php?action=download&id=<?=$Torrents['id'][0].$DownloadString?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="tooltip" title="Download">DL</a> | <a href="reportsv2.php?action=report&id=<?=$Torrents['id'][0]?>" class="tooltip" title="Report">RP</a> ]</span>
|
||||
<?=$DisplayName?>
|
||||
<?=$ExtraInfo?>
|
||||
<div class="tags"><?=$TorrentTags->format()?></div>
|
||||
|
@ -966,9 +966,21 @@ function header_link($SortKey, $DefaultWay = 'desc') {
|
||||
<td>Files</td>
|
||||
<td><a href="<?=header_link('time')?>">Time</a></td>
|
||||
<td><a href="<?=header_link('size')?>">Size</a></td>
|
||||
<td class="sign"><a href="<?=header_link('snatched')?>"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/snatched.png" alt="Snatches" title="Snatches" /></a></td>
|
||||
<td class="sign"><a href="<?=header_link('seeders')?>"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/seeders.png" alt="Seeders" title="Seeders" /></a></td>
|
||||
<td class="sign"><a href="<?=header_link('leechers')?>"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/leechers.png" alt="Leechers" title="Leechers" /></a></td>
|
||||
<td class="sign">
|
||||
<a href="<?=header_link('snatched')?>">
|
||||
<img src="static/styles/<?=$LoggedUser['StyleName']?>/images/snatched.png" class="tooltip" alt="Snatches" title="Snatches" />
|
||||
</a>
|
||||
</td>
|
||||
<td class="sign">
|
||||
<a href="<?=header_link('seeders')?>">
|
||||
<img src="static/styles/<?=$LoggedUser['StyleName']?>/images/seeders.png" class="tooltip" alt="Seeders" title="Seeders" />
|
||||
</a>
|
||||
</td>
|
||||
<td class="sign">
|
||||
<a href="<?=header_link('leechers')?>">
|
||||
<img src="static/styles/<?=$LoggedUser['StyleName']?>/images/leechers.png" class="tooltip" alt="Leechers" title="Leechers" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?
|
||||
|
||||
@ -1015,12 +1027,12 @@ function header_link($SortKey, $DefaultWay = 'desc') {
|
||||
|
||||
if ($GroupResults && (count($Torrents) > 1 || isset($GroupedCategories[$CategoryID - 1]))) {
|
||||
// These torrents are in a group
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID\" class=\"tooltip\" title=\"View torrent group\" dir=\"ltr\">$GroupName</a>";
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName .= " [$GroupYear]";
|
||||
}
|
||||
if ($GroupInfo['VanityHouse']) {
|
||||
$DisplayName .= ' [<abbr title="This is a Vanity House release">VH</abbr>]';
|
||||
$DisplayName .= ' [<abbr class="tooltip" title="This is a Vanity House release">VH</abbr>]';
|
||||
}
|
||||
$DisplayName .= ' ['.$ReleaseTypes[$ReleaseType].']';
|
||||
?>
|
||||
@ -1034,7 +1046,7 @@ function header_link($SortKey, $DefaultWay = 'desc') {
|
||||
</div>
|
||||
</td>
|
||||
<td class="center cats_col">
|
||||
<div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($CategoryID)?> <?=$TorrentTags->css_name()?>">
|
||||
<div title="<?=$TorrentTags->title()?>" class="tooltip <?=Format::css_category($CategoryID)?> <?=$TorrentTags->css_name()?>">
|
||||
</div>
|
||||
</td>
|
||||
<td colspan="2" class="big_info">
|
||||
@ -1114,11 +1126,11 @@ function header_link($SortKey, $DefaultWay = 'desc') {
|
||||
<tr class="group_torrent groupid_<?=$GroupID?> edition_<?=$EditionID?><?=$SnatchedTorrentClass . $SnatchedGroupClass . (!empty($LoggedUser['TorrentGrouping']) && $LoggedUser['TorrentGrouping'] == 1 ? ' hidden' : '')?>">
|
||||
<td colspan="3">
|
||||
<span>
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download"><?=$Data['HasFile'] ? 'DL' : 'Missing'?></a>
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="tooltip" title="Download"><?=$Data['HasFile'] ? 'DL' : 'Missing'?></a>
|
||||
<? if (Torrents::can_use_token($Data)) { ?>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');" class="tooltip">FL</a>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" class="tooltip" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');">FL</a>
|
||||
<? } ?>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" title="Report">RP</a> ]
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" class="tooltip" title="Report">RP</a> ]
|
||||
</span>
|
||||
» <a href="torrents.php?id=<?=$GroupID?>&torrentid=<?=$TorrentID?>"><?=Torrents::torrent_info($Data)?><? if ($Reported) { ?> / <strong class="torrent_label tl_reported">Reported</strong><? } ?></a>
|
||||
</td>
|
||||
@ -1135,7 +1147,7 @@ function header_link($SortKey, $DefaultWay = 'desc') {
|
||||
// Viewing a type that does not require grouping
|
||||
|
||||
list($TorrentID, $Data) = each($Torrents);
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID&torrentid=$TorrentID#torrent$TorrentID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID&torrentid=$TorrentID#torrent$TorrentID\" class=\"tooltip\" title=\"View torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
if (isset($GroupedCategories[$CategoryID - 1])) {
|
||||
if ($GroupYear) {
|
||||
$DisplayName .= " [$GroupYear]";
|
||||
@ -1156,7 +1168,7 @@ function header_link($SortKey, $DefaultWay = 'desc') {
|
||||
<td></td>
|
||||
<? } ?>
|
||||
<td class="center cats_col">
|
||||
<div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($CategoryID)?> <?=$TorrentTags->css_name()?>"></div>
|
||||
<div title="<?=$TorrentTags->title()?>" class="tooltip <?=Format::css_category($CategoryID)?> <?=$TorrentTags->css_name()?>"></div>
|
||||
</td>
|
||||
<td class="big_info">
|
||||
<? if ($LoggedUser['CoverArt']) { ?>
|
||||
@ -1166,11 +1178,11 @@ function header_link($SortKey, $DefaultWay = 'desc') {
|
||||
<? } ?>
|
||||
<div class="group_info clear">
|
||||
<span>
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download">DL</a>
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="tooltip" title="Download">DL</a>
|
||||
<? if (Torrents::can_use_token($Data)) { ?>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');" class="tooltip">FL</a>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" class="tooltip" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');">FL</a>
|
||||
<? } ?>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" title="Report">RP</a> ]
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" class="tooltip" title="Report">RP</a> ]
|
||||
</span>
|
||||
<?=$DisplayName?>
|
||||
<div class="torrent_info"><?=$ExtraInfo?></div>
|
||||
|
@ -182,7 +182,7 @@
|
||||
<a href="log.php?search=Torrent+<?=$TorrentID?>"><?=$TorrentID?></a> (Deleted)
|
||||
<? } else { ?>
|
||||
<?=$LinkName?>
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="brackets" title="Download">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="brackets tooltip" title="Download">DL</a>
|
||||
uploaded by <a href="user.php?id=<?=$UploaderID?>"><?=$UploaderName?></a> <?=time_diff($Time)?>
|
||||
<br />
|
||||
<? $DB->query("
|
||||
|
@ -517,9 +517,9 @@ function compare($X, $Y) {
|
||||
<tr class="colhead_dark">
|
||||
<td width="80%"><strong>Torrents</strong></td>
|
||||
<td><strong>Size</strong></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/snatched.png" alt="Snatches" title="Snatches" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/seeders.png" alt="Seeders" title="Seeders" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/leechers.png" alt="Leechers" title="Leechers" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/snatched.png" class="tooltip" alt="Snatches" title="Snatches" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/seeders.png" class="tooltip" alt="Seeders" title="Seeders" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/leechers.png" class="tooltip" alt="Leechers" title="Leechers" /></td>
|
||||
</tr>
|
||||
<?
|
||||
function filelist($Str) {
|
||||
@ -696,7 +696,7 @@ function filelist($Str) {
|
||||
|
||||
?>
|
||||
<tr class="releases_<?=$ReleaseType?> groupid_<?=$GroupID?> edition group_torrent">
|
||||
<td colspan="5" class="edition_info"><strong><a href="#" onclick="toggle_edition(<?=$GroupID?>, <?=$EditionID?>, this, event)" title="Collapse this edition. Hold "Ctrl" while clicking to collapse all editions in this torrent group." class="tooltip">−</a> <?=Torrents::edition_string($Torrent, $TorrentDetails)?></strong></td>
|
||||
<td colspan="5" class="edition_info"><strong><a href="#" onclick="toggle_edition(<?=$GroupID?>, <?=$EditionID?>, this, event);" title="Collapse this edition. Hold "Ctrl" while clicking to collapse all editions in this torrent group." class="tooltip">−</a> <?=Torrents::edition_string($Torrent, $TorrentDetails)?></strong></td>
|
||||
</tr>
|
||||
<?
|
||||
}
|
||||
@ -709,18 +709,18 @@ function filelist($Str) {
|
||||
|
||||
<tr class="torrent_row releases_<?=$ReleaseType?> groupid_<?=$GroupID?> edition_<?=$EditionID?> group_torrent<?=($IsSnatched ? ' snatched_torrent' : '')?>" style="font-weight: normal;" id="torrent<?=$TorrentID?>">
|
||||
<td>
|
||||
<span>[ <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download"><?=($HasFile ? 'DL' : 'Missing')?></a>
|
||||
<span>[ <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="tooltip" title="Download"><?=($HasFile ? 'DL' : 'Missing')?></a>
|
||||
<? if (Torrents::can_use_token($Torrent)) { ?>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');" class="tooltip">FL</a>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID ?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" class="tooltip" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');">FL</a>
|
||||
<? } ?>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" title="Report">RP</a>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" class="tooltip" title="Report">RP</a>
|
||||
<? if ($CanEdit) { ?>
|
||||
| <a href="torrents.php?action=edit&id=<?=$TorrentID ?>" title="Edit">ED</a>
|
||||
| <a href="torrents.php?action=edit&id=<?=$TorrentID ?>" class="tooltip" title="Edit">ED</a>
|
||||
<? }
|
||||
if (check_perms('torrents_delete') || $UserID == $LoggedUser['ID']) { ?>
|
||||
| <a href="torrents.php?action=delete&torrentid=<?=$TorrentID ?>" title="Remove">RM</a>
|
||||
| <a href="torrents.php?action=delete&torrentid=<?=$TorrentID ?>" class="tooltip" title="Remove">RM</a>
|
||||
<? }?>
|
||||
| <a href="torrents.php?torrentid=<?=$TorrentID ?>" title="Permalink">PL</a>
|
||||
| <a href="torrents.php?torrentid=<?=$TorrentID ?>" class="tooltip" title="Permalink">PL</a>
|
||||
]</span>
|
||||
» <a href="#" onclick="$('#torrent_<?=$TorrentID?>').gtoggle(); return false;"><?=$ExtraInfo; ?></a>
|
||||
</td>
|
||||
@ -785,7 +785,10 @@ function filelist($Str) {
|
||||
$i = 0;
|
||||
?>
|
||||
<div class="box">
|
||||
<div class="head"><span style="font-weight: bold;">Requests (<?=number_format(count($Requests))?>)</span> <a href="#" style="float: right;" onclick="$('#requests').gtoggle(); this.innerHTML = (this.innerHTML == 'Hide' ? 'Show' : 'Hide'); return false;" class="brackets">Show</a></div>
|
||||
<div class="head">
|
||||
<span style="font-weight: bold;">Requests (<?=number_format(count($Requests))?>)</span>
|
||||
<a href="#" style="float: right;" onclick="$('#requests').gtoggle(); this.innerHTML = (this.innerHTML == 'Hide' ? 'Show' : 'Hide'); return false;" class="brackets">Show</a>
|
||||
</div>
|
||||
<table id="requests" class="request_table hidden">
|
||||
<tr class="colhead">
|
||||
<td>Format / Bitrate / Media</td>
|
||||
|
@ -459,18 +459,18 @@ function filelist($Str) {
|
||||
?>
|
||||
<tr class="torrent_row releases_<?=($ReleaseType)?> groupid_<?=($GroupID)?> edition_<?=($EditionID)?> group_torrent<?=($IsSnatched ? ' snatched_torrent' : '')?>" style="font-weight: normal;" id="torrent<?=($TorrentID)?>">
|
||||
<td>
|
||||
<span>[ <a href="torrents.php?action=download&id=<?=($TorrentID)?>&authkey=<?=($LoggedUser['AuthKey'])?>&torrent_pass=<?=($LoggedUser['torrent_pass'])?>" title="Download"><?=($HasFile ? 'DL' : 'Missing')?></a>
|
||||
<span>[ <a href="torrents.php?action=download&id=<?=($TorrentID)?>&authkey=<?=($LoggedUser['AuthKey'])?>&torrent_pass=<?=($LoggedUser['torrent_pass'])?>" class="tooltip" title="Download"><?=($HasFile ? 'DL' : 'Missing')?></a>
|
||||
<? if (Torrents::can_use_token($Torrent)) { ?>
|
||||
| <a href="torrents.php?action=download&id=<?=($TorrentID)?>&authkey=<?=($LoggedUser['AuthKey'])?>&torrent_pass=<?=($LoggedUser['torrent_pass'])?>&usetoken=1" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');" class="tooltip">FL</a>
|
||||
| <a href="torrents.php?action=download&id=<?=($TorrentID)?>&authkey=<?=($LoggedUser['AuthKey'])?>&torrent_pass=<?=($LoggedUser['torrent_pass'])?>&usetoken=1" class="tooltip" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');">FL</a>
|
||||
<? } ?>
|
||||
| <a href="reportsv2.php?action=report&id=<?=($TorrentID)?>" title="Report">RP</a>
|
||||
| <a href="reportsv2.php?action=report&id=<?=($TorrentID)?>" class="tooltip" title="Report">RP</a>
|
||||
<? if ($CanEdit) { ?>
|
||||
| <a href="torrents.php?action=edit&id=<?=($TorrentID)?>" title="Edit">ED</a>
|
||||
| <a href="torrents.php?action=edit&id=<?=($TorrentID)?>" class="tooltip" title="Edit">ED</a>
|
||||
<? }
|
||||
if (check_perms('torrents_delete') || $UserID == $LoggedUser['ID']) { ?>
|
||||
| <a href="torrents.php?action=delete&torrentid=<?=($TorrentID)?>" title="Remove">RM</a>
|
||||
| <a href="torrents.php?action=delete&torrentid=<?=($TorrentID)?>" class="tooltip" title="Remove">RM</a>
|
||||
<? } ?>
|
||||
| <a href="torrents.php?torrentid=<?=($TorrentID)?>" title="Permalink">PL</a>
|
||||
| <a href="torrents.php?torrentid=<?=($TorrentID)?>" class="tooltip" title="Permalink">PL</a>
|
||||
]</span>
|
||||
» <a href="#" onclick="$('#torrent_<?=($TorrentID)?>').gtoggle(); return false;"><?=($ExtraInfo)?></a>
|
||||
</td>
|
||||
@ -502,8 +502,8 @@ function filelist($Str) {
|
||||
<div class="linkbox">
|
||||
<a href="#" class="brackets" onclick="show_peers('<?=($TorrentID)?>', 0); return false;">View peer list</a>
|
||||
<? if (check_perms('site_view_torrent_snatchlist')) { ?>
|
||||
<a href="#" class="brackets" onclick="show_downloads('<?=($TorrentID)?>', 0); return false;" class="tooltip" title="View the list of users that have clicked the "DL" button.">View download list</a>
|
||||
<a href="#" class="brackets" onclick="show_snatches('<?=($TorrentID)?>', 0); return false;" class="tooltip" title="View the list of users that have reported a snatch to the tracker.">View snatch list</a>
|
||||
<a href="#" class="brackets tooltip" onclick="show_downloads('<?=($TorrentID)?>', 0); return false;" title="View the list of users that have clicked the "DL" button.">View download list</a>
|
||||
<a href="#" class="brackets tooltip" onclick="show_snatches('<?=($TorrentID)?>', 0); return false;" title="View the list of users that have reported a snatch to the tracker.">View snatch list</a>
|
||||
<? } ?>
|
||||
<a href="#" class="brackets" onclick="show_files('<?=($TorrentID)?>'); return false;">View file list</a>
|
||||
<? if ($Reported) { ?>
|
||||
|
@ -233,9 +233,9 @@ function header_link($SortKey, $DefaultWay = 'desc') {
|
||||
<td>Files</td>
|
||||
<td><a href="<?=header_link('time')?>">Time</a></td>
|
||||
<td><a href="<?=header_link('size')?>">Size</a></td>
|
||||
<td class="sign"><a href="<?=header_link('snatches')?>"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/snatched.png" alt="Snatches" title="Snatches" /></a></td>
|
||||
<td class="sign"><a href="<?=header_link('seeders')?>"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/seeders.png" alt="Seeders" title="Seeders" /></a></td>
|
||||
<td class="sign"><a href="<?=header_link('leechers')?>"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/leechers.png" alt="Leechers" title="Leechers" /></a></td>
|
||||
<td class="sign"><a href="<?=header_link('snatches')?>"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/snatched.png" class="tooltip" alt="Snatches" title="Snatches" /></a></td>
|
||||
<td class="sign"><a href="<?=header_link('seeders')?>"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/seeders.png" class="tooltip" alt="Seeders" title="Seeders" /></a></td>
|
||||
<td class="sign"><a href="<?=header_link('leechers')?>"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/leechers.png" class="tooltip" alt="Leechers" title="Leechers" /></a></td>
|
||||
</tr>
|
||||
<?
|
||||
unset($FilterResults['FilterLabel']);
|
||||
@ -262,7 +262,7 @@ function header_link($SortKey, $DefaultWay = 'desc') {
|
||||
$MatchingArtistsText = (!empty($MatchingArtists) ? 'Caught by filter for '.implode(', ', $MatchingArtists) : '');
|
||||
$DisplayName = Artists::display_artists($GroupInfo['ExtendedArtists'], true, true);
|
||||
}
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID&torrentid=$TorrentID#torrent$TorrentID\" title=\"View Torrent\" dir=\"ltr\">" . $GroupInfo['Name'] . '</a>';
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID&torrentid=$TorrentID#torrent$TorrentID\" class=\"tooltip\" title=\"View torrent\" dir=\"ltr\">" . $GroupInfo['Name'] . '</a>';
|
||||
|
||||
$GroupCategoryID = $GroupInfo['CategoryID'];
|
||||
if ($GroupCategoryID == 1) {
|
||||
@ -285,8 +285,12 @@ function header_link($SortKey, $DefaultWay = 'desc') {
|
||||
// print row
|
||||
?>
|
||||
<tr class="torrent torrent_row<?=($TorrentInfo['IsSnatched'] ? ' snatched_torrent' : '') . ($GroupInfo['Flags']['IsSnatched'] ? ' snatched_group' : '')?>" id="torrent<?=$TorrentID?>"<?=($MatchingArtistsText ? ' title="'.display_str($MatchingArtistsText).'"' : '')?>>
|
||||
<td style="text-align: center;"><input type="checkbox" class="notify_box notify_box_<?=$FilterID?>" value="<?=$TorrentID?>" id="clear_<?=$TorrentID?>" tabindex="1" /></td>
|
||||
<td class="center cats_col"><div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div></td>
|
||||
<td style="text-align: center;">
|
||||
<input type="checkbox" class="notify_box notify_box_<?=$FilterID?>" value="<?=$TorrentID?>" id="clear_<?=$TorrentID?>" tabindex="1" />
|
||||
</td>
|
||||
<td class="center cats_col">
|
||||
<div title="<?=$TorrentTags->title()?>" class="tooltip <?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div>
|
||||
</td>
|
||||
<td class="big_info">
|
||||
<? if ($LoggedUser['CoverArt']) { ?>
|
||||
<div class="group_image float_left clear">
|
||||
@ -295,9 +299,9 @@ function header_link($SortKey, $DefaultWay = 'desc') {
|
||||
<? } ?>
|
||||
<div class="group_info clear">
|
||||
<span>
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download">DL</a>
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="tooltip" title="Download">DL</a>
|
||||
<? if (Torrents::can_use_token($TorrentInfo)) { ?>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');" class="tooltip">FL</a>
|
||||
| <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>&usetoken=1" class="tooltip" title="Use a FL Token" onclick="return confirm('Are you sure you want to use a freeleech token here?');">FL</a>
|
||||
<?
|
||||
}
|
||||
if (!$Sneaky) { ?>
|
||||
@ -322,11 +326,11 @@ function header_link($SortKey, $DefaultWay = 'desc') {
|
||||
</div>
|
||||
</td>
|
||||
<td><?=$TorrentInfo['FileCount']?></td>
|
||||
<td style="text-align: right;" class="nobr"><?=time_diff($TorrentInfo['Time'])?></td>
|
||||
<td class="nobr" style="text-align: right;"><?=Format::get_size($TorrentInfo['Size'])?></td>
|
||||
<td style="text-align: right;"><?=number_format($TorrentInfo['Snatched'])?></td>
|
||||
<td style="text-align: right;"><?=number_format($TorrentInfo['Seeders'])?></td>
|
||||
<td style="text-align: right;"><?=number_format($TorrentInfo['Leechers'])?></td>
|
||||
<td class="number_column nobr"><?=time_diff($TorrentInfo['Time'])?></td>
|
||||
<td class="number_column nobr"><?=Format::get_size($TorrentInfo['Size'])?></td>
|
||||
<td class="number_column"><?=number_format($TorrentInfo['Snatched'])?></td>
|
||||
<td class="number_column"><?=number_format($TorrentInfo['Seeders'])?></td>
|
||||
<td class="number_column"><?=number_format($TorrentInfo['Leechers'])?></td>
|
||||
</tr>
|
||||
<?
|
||||
}
|
||||
|
@ -474,13 +474,19 @@ function header_link($SortKey, $DefaultWay = 'DESC') {
|
||||
<td><a href="<?=header_link('Time')?>">Time</a></td>
|
||||
<td><a href="<?=header_link('Size')?>">Size</a></td>
|
||||
<td class="sign">
|
||||
<a href="<?=header_link('Snatched')?>"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/snatched.png" alt="Snatches" title="Snatches" /></a>
|
||||
<a href="<?=header_link('Snatched')?>">
|
||||
<img src="static/styles/<?=$LoggedUser['StyleName']?>/images/snatched.png" class="tooltip" alt="Snatches" title="Snatches" />
|
||||
</a>
|
||||
</td>
|
||||
<td class="sign">
|
||||
<a href="<?=header_link('Seeders')?>"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/seeders.png" alt="Seeders" title="Seeders" /></a>
|
||||
<a href="<?=header_link('Seeders')?>">
|
||||
<img src="static/styles/<?=$LoggedUser['StyleName']?>/images/seeders.png" class="tooltip" alt="Seeders" title="Seeders" />
|
||||
</a>
|
||||
</td>
|
||||
<td class="sign">
|
||||
<a href="<?=header_link('Leechers')?>"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/leechers.png" alt="Leechers" title="Leechers" /></a>
|
||||
<a href="<?=header_link('Leechers')?>">
|
||||
<img src="static/styles/<?=$LoggedUser['StyleName']?>/images/leechers.png" class="tooltip" alt="Leechers" title="Leechers" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?
|
||||
@ -502,12 +508,12 @@ function header_link($SortKey, $DefaultWay = 'DESC') {
|
||||
} else {
|
||||
$DisplayName = '';
|
||||
}
|
||||
$DisplayName .= '<a href="torrents.php?id='.$GroupID.'&torrentid='.$TorrentID.'" title="View Torrent" dir="ltr">'.$GroupName.'</a>';
|
||||
$DisplayName .= '<a href="torrents.php?id='.$GroupID.'&torrentid='.$TorrentID.'" class="tooltip" title="View torrent" dir="ltr">'.$GroupName.'</a>';
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName .= " [$GroupYear]";
|
||||
}
|
||||
if ($GroupVanityHouse) {
|
||||
$DisplayName .= ' [<abbr title="This is a Vanity House release">VH</abbr>]';
|
||||
$DisplayName .= ' [<abbr class="tooltip" title="This is a Vanity House release">VH</abbr>]';
|
||||
}
|
||||
|
||||
$ExtraInfo = Torrents::torrent_info($Torrent);
|
||||
@ -517,7 +523,7 @@ function header_link($SortKey, $DefaultWay = 'DESC') {
|
||||
?>
|
||||
<tr class="torrent torrent_row<?=($Torrent['IsSnatched'] ? ' snatched_torrent' : '') . ($GroupFlags['IsSnatched'] ? ' snatched_group' : '')?>">
|
||||
<td class="center cats_col">
|
||||
<div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div>
|
||||
<div title="<?=$TorrentTags->title()?>" class="tooltip <?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div>
|
||||
</td>
|
||||
<td class="big_info">
|
||||
<? if ($LoggedUser['CoverArt']) { ?>
|
||||
@ -527,8 +533,8 @@ function header_link($SortKey, $DefaultWay = 'DESC') {
|
||||
<? } ?>
|
||||
<div class="group_info clear">
|
||||
<span class="torrent_links_block">
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download">DL</a>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" title="Report">RP</a> ]
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="tooltip" title="Download">DL</a>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" class="tooltip" title="Report">RP</a> ]
|
||||
</span>
|
||||
<? echo "$DisplayName\n"; ?>
|
||||
<? Votes::vote_link($GroupID, $UserVotes[$GroupID]['Type']); ?>
|
||||
|
@ -49,26 +49,26 @@
|
||||
<div class="box box_info box_userinfo_community">
|
||||
<div class="head colhead_dark">Community</div>
|
||||
<ul class="stats nobullet">
|
||||
<li id="comm_posts">Forum posts: <?=number_format($ForumPosts)?> <a href="userhistory.php?action=posts&userid=<?=$UserID?>" class="brackets" title="View">View</a></li>
|
||||
<li id="comm_posts">Forum posts: <?=number_format($ForumPosts)?> <a href="userhistory.php?action=posts&userid=<?=$UserID?>" class="brackets">View</a></li>
|
||||
<? if ($Override = check_paranoia_here('torrentcomments+')) { ?>
|
||||
<li id="comm_torrcomm"<?=($Override === 2 ? ' class="paranoia_override"' : '')?>>Torrent comments: <?=number_format($NumComments)?>
|
||||
<? if ($Override = check_paranoia_here('torrentcomments')) { ?>
|
||||
<a href="comments.php?id=<?=$UserID?>" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>" title="View">View</a>
|
||||
<a href="comments.php?id=<?=$UserID?>" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>">View</a>
|
||||
<? } ?>
|
||||
</li>
|
||||
<li id="comm_artcomm"<?=($Override === 2 ? ' class="paranoia_override"' : '')?>>Artist comments: <?=number_format($NumArtistComments)?>
|
||||
<? if ($Override = check_paranoia_here('torrentcomments')) { ?>
|
||||
<a href="comments.php?id=<?=$UserID?>&action=artist" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>" title="View">View</a>
|
||||
<a href="comments.php?id=<?=$UserID?>&action=artist" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>">View</a>
|
||||
<? } ?>
|
||||
</li>
|
||||
<li id="comm_collcomm"<?=($Override === 2 ? ' class="paranoia_override"' : '')?>>Collage comments: <?=number_format($NumCollageComments)?>
|
||||
<? if ($Override = check_paranoia_here('torrentcomments')) { ?>
|
||||
<a href="comments.php?id=<?=$UserID?>&action=collages" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>" title="View">View</a>
|
||||
<a href="comments.php?id=<?=$UserID?>&action=collages" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>">View</a>
|
||||
<? } ?>
|
||||
</li>
|
||||
<li id="comm_reqcomm"<?=($Override === 2 ? ' class="paranoia_override"' : '')?>>Request comments: <?=number_format($NumRequestComments)?>
|
||||
<? if ($Override = check_paranoia_here('torrentcomments')) { ?>
|
||||
<a href="comments.php?id=<?=$UserID?>&action=requests" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>" title="View">View</a>
|
||||
<a href="comments.php?id=<?=$UserID?>&action=requests" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>">View</a>
|
||||
<? } ?>
|
||||
</li>
|
||||
<?
|
||||
@ -76,7 +76,7 @@
|
||||
if (($Override = check_paranoia_here('collages+'))) { ?>
|
||||
<li id="comm_collstart"<?=($Override === 2 ? ' class="paranoia_override"' : '')?>>Collages started: <?=number_format($NumCollages)?>
|
||||
<? if ($Override = check_paranoia_here('collages')) { ?>
|
||||
<a href="collages.php?userid=<?=$UserID?>" class="brackets<?=(($Override === 2) ? ' paranoia_override' : '')?>" title="View">View</a>
|
||||
<a href="collages.php?userid=<?=$UserID?>" class="brackets<?=(($Override === 2) ? ' paranoia_override' : '')?>">View</a>
|
||||
<? } ?>
|
||||
</li>
|
||||
<?
|
||||
@ -84,7 +84,7 @@
|
||||
if (($Override = check_paranoia_here('collagecontribs+'))) { ?>
|
||||
<li id="comm_collcontrib"<?=($Override === 2 ? ' class="paranoia_override"' : '')?>>Collages contributed to: <? echo number_format($NumCollageContribs); ?>
|
||||
<? if ($Override = check_paranoia_here('collagecontribs')) { ?>
|
||||
<a href="collages.php?userid=<?=$UserID?>&contrib=1" class="brackets<?=(($Override === 2) ? ' paranoia_override' : '')?>" title="View">View</a>
|
||||
<a href="collages.php?userid=<?=$UserID?>&contrib=1" class="brackets<?=(($Override === 2) ? ' paranoia_override' : '')?>">View</a>
|
||||
<? } ?>
|
||||
</li>
|
||||
<?
|
||||
@ -105,7 +105,7 @@
|
||||
<li>
|
||||
<span<?=($ViewCount === 2 ? ' class="paranoia_override"' : '')?>>Requests filled: <?=number_format($RequestsFilled)?></span>
|
||||
<span<?=($ViewBounty === 2 ? ' class="paranoia_override"' : '')?>> for <?=Format::get_size($TotalBounty) ?></span>
|
||||
<a href="requests.php?type=filled&userid=<?=$UserID?>" class="brackets<?=(($ViewAll === 2) ? ' paranoia_override' : '')?>" title="View">View</a>
|
||||
<a href="requests.php?type=filled&userid=<?=$UserID?>" class="brackets<?=(($ViewAll === 2) ? ' paranoia_override' : '')?>">View</a>
|
||||
</li>
|
||||
<?
|
||||
}
|
||||
@ -128,21 +128,21 @@
|
||||
<li>
|
||||
<span<?=($ViewCount === 2 ? ' class="paranoia_override"' : '')?>>Requests created: <?=number_format($RequestsCreated)?></span>
|
||||
<span<?=($ViewBounty === 2 ? ' class="paranoia_override"' : '')?>> for <?=Format::get_size($RequestsCreatedSpent)?></span>
|
||||
<a href="requests.php?type=created&userid=<?=$UserID?>" class="brackets<?=($ViewAll === 2 ? ' paranoia_override' : '')?>" title="View">View</a>
|
||||
<a href="requests.php?type=created&userid=<?=$UserID?>" class="brackets<?=($ViewAll === 2 ? ' paranoia_override' : '')?>">View</a>
|
||||
</li>
|
||||
<li>
|
||||
<span<?=($ViewCount === 2 ? ' class="paranoia_override"' : '')?>>Requests voted: <?=number_format($RequestsVoted)?></span>
|
||||
<span<?=($ViewBounty === 2 ? ' class="paranoia_override"' : '')?>> for <?=Format::get_size($TotalSpent)?></span>
|
||||
<a href="requests.php?type=voted&userid=<?=$UserID?>" class="brackets<?=($ViewAll === 2 ? ' paranoia_override' : '')?>" title="View">View</a>
|
||||
<a href="requests.php?type=voted&userid=<?=$UserID?>" class="brackets<?=($ViewAll === 2 ? ' paranoia_override' : '')?>">View</a>
|
||||
</li>
|
||||
<?
|
||||
}
|
||||
if ($Override = check_paranoia_here('uploads+')) { ?>
|
||||
<li id="comm_upload"<?=($Override === 2 ? ' class="paranoia_override"' : '')?>>Uploaded: <?=number_format($Uploads)?>
|
||||
<? if ($Override = check_paranoia_here('uploads')) { ?>
|
||||
<a href="torrents.php?type=uploaded&userid=<?=$UserID?>" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>" title="View">View</a>
|
||||
<a href="torrents.php?type=uploaded&userid=<?=$UserID?>" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>">View</a>
|
||||
<? if (check_perms('zip_downloader')) { ?>
|
||||
<a href="torrents.php?action=redownload&type=uploads&userid=<?=$UserID?>" onclick="return confirm('If you no longer have the content, your ratio WILL be affected; be sure to check the size of all torrents before redownloading.');" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>" title="Download">Download</a>
|
||||
<a href="torrents.php?action=redownload&type=uploads&userid=<?=$UserID?>" onclick="return confirm('If you no longer have the content, your ratio WILL be affected; be sure to check the size of all torrents before redownloading.');" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>">Download</a>
|
||||
<?
|
||||
}
|
||||
}
|
||||
@ -153,7 +153,7 @@
|
||||
if ($Override = check_paranoia_here('uniquegroups+')) { ?>
|
||||
<li id="comm_uniquegroup"<?=($Override === 2 ? ' class="paranoia_override"' : '')?>>Unique groups: <?=number_format($UniqueGroups)?>
|
||||
<? if ($Override = check_paranoia_here('uniquegroups')) { ?>
|
||||
<a href="torrents.php?type=uploaded&userid=<?=$UserID?>&filter=uniquegroup" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>" title="View">View</a>
|
||||
<a href="torrents.php?type=uploaded&userid=<?=$UserID?>&filter=uniquegroup" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>">View</a>
|
||||
<? } ?>
|
||||
</li>
|
||||
<?
|
||||
@ -161,7 +161,7 @@
|
||||
if ($Override = check_paranoia_here('perfectflacs+')) { ?>
|
||||
<li id="comm_perfectflac"<?=($Override === 2 ? ' class="paranoia_override"' : '')?>>"Perfect" FLACs: <?=number_format($PerfectFLACs)?>
|
||||
<? if ($Override = check_paranoia_here('perfectflacs')) { ?>
|
||||
<a href="torrents.php?type=uploaded&userid=<?=$UserID?>&filter=perfectflac" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>" title="View">View</a>
|
||||
<a href="torrents.php?type=uploaded&userid=<?=$UserID?>&filter=perfectflac" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>">View</a>
|
||||
<? } ?>
|
||||
</li>
|
||||
<?
|
||||
@ -176,9 +176,9 @@
|
||||
}
|
||||
if ($Override = check_paranoia_here('seeding')) {
|
||||
?>
|
||||
<a href="torrents.php?type=seeding&userid=<?=$UserID?>" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>" title="View">View</a>
|
||||
<a href="torrents.php?type=seeding&userid=<?=$UserID?>" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>">View</a>
|
||||
<? if (check_perms('zip_downloader')) { ?>
|
||||
<a href="torrents.php?action=redownload&type=seeding&userid=<?=$UserID?>" onclick="return confirm('If you no longer have the content, your ratio WILL be affected; be sure to check the size of all torrents before redownloading.');" class="brackets" title="Download">Download</a>
|
||||
<a href="torrents.php?action=redownload&type=seeding&userid=<?=$UserID?>" onclick="return confirm('If you no longer have the content, your ratio WILL be affected; be sure to check the size of all torrents before redownloading.');" class="brackets">Download</a>
|
||||
<?
|
||||
}
|
||||
}
|
||||
@ -191,7 +191,7 @@
|
||||
<li id="comm_leeching"<?=($Override === 2 ? ' class="paranoia_override"' : '')?>>Leeching:
|
||||
<span class="user_commstats" id="user_commstats_leeching"><a href="#" class="brackets" onclick="commStats(<?=$UserID?>); return false;">Show stats</a></span>
|
||||
<? if ($Override = check_paranoia_here('leeching')) { ?>
|
||||
<a href="torrents.php?type=leeching&userid=<?=$UserID?>" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>" title="View">View</a>
|
||||
<a href="torrents.php?type=leeching&userid=<?=$UserID?>" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>">View</a>
|
||||
<?
|
||||
}
|
||||
if ($DisableLeech == 0 && check_perms('users_view_ips')) {
|
||||
@ -210,9 +210,9 @@
|
||||
}
|
||||
}
|
||||
if ($Override = check_paranoia_here('snatched')) { ?>
|
||||
<a href="torrents.php?type=snatched&userid=<?=$UserID?>" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>" title="View">View</a>
|
||||
<a href="torrents.php?type=snatched&userid=<?=$UserID?>" class="brackets<?=($Override === 2 ? ' paranoia_override' : '')?>">View</a>
|
||||
<? if (check_perms('zip_downloader')) { ?>
|
||||
<a href="torrents.php?action=redownload&type=snatches&userid=<?=$UserID?>" onclick="return confirm('If you no longer have the content, your ratio WILL be affected, be sure to check the size of all torrents before redownloading.');" class="brackets" title="Download">Download</a>
|
||||
<a href="torrents.php?action=redownload&type=snatches&userid=<?=$UserID?>" onclick="return confirm('If you no longer have the content, your ratio WILL be affected, be sure to check the size of all torrents before redownloading.');" class="brackets">Download</a>
|
||||
<? } ?>
|
||||
</li>
|
||||
<?
|
||||
@ -222,7 +222,7 @@
|
||||
<li id="comm_downloaded">Downloaded:
|
||||
<span class="user_commstats" id="user_commstats_downloaded"><a href="#" class="brackets" onclick="commStats(<?=$UserID?>); return false;">Show stats</a></span>
|
||||
<span id="user_commstats_udownloaded"></span>
|
||||
<a href="torrents.php?type=downloaded&userid=<?=$UserID?>" class="brackets" title="View">View</a>
|
||||
<a href="torrents.php?type=downloaded&userid=<?=$UserID?>" class="brackets">View</a>
|
||||
</li>
|
||||
<?
|
||||
}
|
||||
|
@ -257,12 +257,12 @@ function check_paranoia_here($Setting) {
|
||||
}
|
||||
if (($Override = check_paranoia_here('uploaded'))) {
|
||||
?>
|
||||
<li<?=($Override === 2 ? ' class="paranoia_override"' : '')?> title="<?=Format::get_size($Uploaded, 5)?>">Uploaded: <?=Format::get_size($Uploaded)?></li>
|
||||
<li class="tooltip<?=($Override === 2 ? ' paranoia_override' : '')?>" title="<?=Format::get_size($Uploaded, 5)?>">Uploaded: <?=Format::get_size($Uploaded)?></li>
|
||||
<?
|
||||
}
|
||||
if (($Override = check_paranoia_here('downloaded'))) {
|
||||
?>
|
||||
<li<?=($Override === 2 ? ' class="paranoia_override"' : '')?> title="<?=Format::get_size($Downloaded, 5)?>">Downloaded: <?=Format::get_size($Downloaded)?></li>
|
||||
<li class="tooltip<?=($Override === 2 ? ' paranoia_override' : '')?>" title="<?=Format::get_size($Downloaded, 5)?>">Downloaded: <?=Format::get_size($Downloaded)?></li>
|
||||
<?
|
||||
}
|
||||
if (($Override = check_paranoia_here('ratio'))) {
|
||||
@ -365,27 +365,27 @@ function check_paranoia_here($Setting) {
|
||||
<div class="head colhead_dark">Percentile Rankings (hover for values)</div>
|
||||
<ul class="stats nobullet">
|
||||
<? if (($Override = check_paranoia_here('uploaded'))) { ?>
|
||||
<li<?=($Override === 2 ? ' class="paranoia_override"' : '')?> title="<?=Format::get_size($Uploaded)?>">Data uploaded: <?=$UploadedRank === false ? 'Server busy' : number_format($UploadedRank)?></li>
|
||||
<li class="tooltip<?=($Override === 2 ? ' paranoia_override' : '')?>" title="<?=Format::get_size($Uploaded)?>">Data uploaded: <?=$UploadedRank === false ? 'Server busy' : number_format($UploadedRank)?></li>
|
||||
<?
|
||||
}
|
||||
if (($Override = check_paranoia_here('downloaded'))) { ?>
|
||||
<li<?=($Override === 2 ? ' class="paranoia_override"' : '')?> title="<?=Format::get_size($Downloaded)?>">Data downloaded: <?=$DownloadedRank === false ? 'Server busy' : number_format($DownloadedRank)?></li>
|
||||
<li class="tooltip<?=($Override === 2 ? ' paranoia_override' : '')?>" title="<?=Format::get_size($Downloaded)?>">Data downloaded: <?=$DownloadedRank === false ? 'Server busy' : number_format($DownloadedRank)?></li>
|
||||
<?
|
||||
}
|
||||
if (($Override = check_paranoia_here('uploads+'))) { ?>
|
||||
<li<?=($Override === 2 ? ' class="paranoia_override"' : '')?> title="<?=number_format($Uploads)?>">Torrents uploaded: <?=$UploadsRank === false ? 'Server busy' : number_format($UploadsRank)?></li>
|
||||
<li class="tooltip<?=($Override === 2 ? ' paranoia_override' : '')?>" title="<?=number_format($Uploads)?>">Torrents uploaded: <?=$UploadsRank === false ? 'Server busy' : number_format($UploadsRank)?></li>
|
||||
<?
|
||||
}
|
||||
if (($Override = check_paranoia_here('requestsfilled_count'))) { ?>
|
||||
<li<?=($Override === 2 ? ' class="paranoia_override"' : '')?> title="<?=number_format($RequestsFilled)?>">Requests filled: <?=$RequestRank === false ? 'Server busy' : number_format($RequestRank)?></li>
|
||||
<li class="tooltip<?=($Override === 2 ? ' paranoia_override' : '')?>" title="<?=number_format($RequestsFilled)?>">Requests filled: <?=$RequestRank === false ? 'Server busy' : number_format($RequestRank)?></li>
|
||||
<?
|
||||
}
|
||||
if (($Override = check_paranoia_here('requestsvoted_bounty'))) { ?>
|
||||
<li<?=($Override === 2 ? ' class="paranoia_override"' : '')?> title="<?=Format::get_size($TotalSpent)?>">Bounty spent: <?=$BountyRank === false ? 'Server busy' : number_format($BountyRank)?></li>
|
||||
<li class="tooltip<?=($Override === 2 ? ' paranoia_override' : '')?>" title="<?=Format::get_size($TotalSpent)?>">Bounty spent: <?=$BountyRank === false ? 'Server busy' : number_format($BountyRank)?></li>
|
||||
<? } ?>
|
||||
<li title="<?=number_format($ForumPosts)?>">Posts made: <?=$PostRank === false ? 'Server busy' : number_format($PostRank)?></li>
|
||||
<li class="tooltip" title="<?=number_format($ForumPosts)?>">Posts made: <?=$PostRank === false ? 'Server busy' : number_format($PostRank)?></li>
|
||||
<? if (($Override = check_paranoia_here('artistsadded'))) { ?>
|
||||
<li<?=($Override === 2 ? ' class="paranoia_override"' : '')?> title="<?=number_format($ArtistsAdded)?>">Artists added: <?=$ArtistsRank === false ? 'Server busy' : number_format($ArtistsRank)?></li>
|
||||
<li class="tooltip<?=($Override === 2 ? ' paranoia_override' : '')?>" title="<?=number_format($ArtistsAdded)?>">Artists added: <?=$ArtistsRank === false ? 'Server busy' : number_format($ArtistsRank)?></li>
|
||||
<?
|
||||
}
|
||||
if (check_paranoia_here(array('uploaded', 'downloaded', 'uploads+', 'requestsfilled_count', 'requestsvoted_bounty', 'artistsadded'))) { ?>
|
||||
@ -487,11 +487,11 @@ function check_paranoia_here($Setting) {
|
||||
$ParanoiaLevelText = 'Very high';
|
||||
}
|
||||
?>
|
||||
<li>Paranoia level: <span title="<?=$ParanoiaLevel?>"><?=$ParanoiaLevelText?></span></li>
|
||||
<li>Paranoia level: <span class="tooltip" title="<?=$ParanoiaLevel?>"><?=$ParanoiaLevelText?></span></li>
|
||||
<? if (check_perms('users_view_email', $Class) || $OwnProfile) { ?>
|
||||
<li>Email: <a href="mailto:<?=display_str($Email)?>"><?=display_str($Email)?></a>
|
||||
<? if (check_perms('users_view_email', $Class)) { ?>
|
||||
<a href="user.php?action=search&email_history=on&email=<?=display_str($Email)?>" title="Search" class="brackets">S</a>
|
||||
<a href="user.php?action=search&email_history=on&email=<?=display_str($Email)?>" title="Search" class="brackets tooltip">S</a>
|
||||
<? } ?>
|
||||
</li>
|
||||
<? }
|
||||
@ -630,7 +630,7 @@ function check_paranoia_here($Setting) {
|
||||
<tr>
|
||||
<? foreach ($RecentSnatches as $RS) { ?>
|
||||
<td>
|
||||
<a href="torrents.php?id=<?=$RS['ID']?>" title="<?=display_str($RS['Artist'])?><?=display_str($RS['Name'])?>">
|
||||
<a href="torrents.php?id=<?=$RS['ID']?>">
|
||||
<img class="tooltip" title="<?=display_str($RS['Artist'])?><?=display_str($RS['Name'])?>" src="<?=ImageTools::process($RS['WikiImage'], true)?>" alt="<?=display_str($RS['Artist'])?><?=display_str($RS['Name'])?>" width="107" />
|
||||
</a>
|
||||
</td>
|
||||
@ -730,8 +730,8 @@ function check_paranoia_here($Setting) {
|
||||
$Name .= $GroupName;
|
||||
?>
|
||||
<td>
|
||||
<a href="torrents.php?id=<?=$GroupID?>" title="<?=$Name?>">
|
||||
<img class="tooltip" title="<?=$Name?>" src="<?=ImageTools::process($C['WikiImage'], true)?>" alt="<?=$Name?>" width="107" />
|
||||
<a href="torrents.php?id=<?=$GroupID?>">
|
||||
<img class="tooltip" title="<?=$Name?>" src="<?=ImageTools::process($C['WikiImage'], true)?>" alt="<?=$Name?>" width="107" />
|
||||
</a>
|
||||
</td>
|
||||
<? } ?>
|
||||
|
@ -114,12 +114,12 @@
|
||||
} elseif (count($Artists) > 0) {
|
||||
$DisplayName .= Artists::display_artists(array('1' => $Artists));
|
||||
}
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
$DisplayName .= "<a href=\"torrents.php?id=$GroupID\" class=\"tooltip\" title=\"View torrent group\" dir=\"ltr\">$GroupName</a>";
|
||||
if ($GroupYear > 0) {
|
||||
$DisplayName = "$DisplayName [$GroupYear]";
|
||||
}
|
||||
if ($GroupVanityHouse) {
|
||||
$DisplayName .= ' [<abbr title="This is a Vanity House release">VH</abbr>]';
|
||||
$DisplayName .= ' [<abbr class="tooltip" title="This is a Vanity House release">VH</abbr>]';
|
||||
}
|
||||
|
||||
$SnatchedGroupClass = $GroupFlags['IsSnatched'] ? ' snatched_group' : '';
|
||||
@ -186,7 +186,7 @@
|
||||
<tr class="group_torrent groupid_<?=$CollageID . $GroupID?> edition_<?=$EditionID?> hidden<?=$SnatchedTorrentClass . $SnatchedGroupClass?>">
|
||||
<td colspan="2">
|
||||
<span>
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets">DL</a>
|
||||
<a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets tooltip">DL</a>
|
||||
</span>
|
||||
» <a href="torrents.php?id=<?=$GroupID?>&torrentid=<?=$TorrentID?>"><?=Torrents::torrent_info($Torrent)?></a>
|
||||
</td>
|
||||
@ -202,7 +202,7 @@
|
||||
|
||||
list($TorrentID, $Torrent) = each($Torrents);
|
||||
|
||||
$DisplayName = "<a href=\"torrents.php?id=$GroupID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
||||
$DisplayName = "<a href=\"torrents.php?id=$GroupID\" class=\"tooltip\" title=\"View torrent group\" dir=\"ltr\">$GroupName</a>";
|
||||
|
||||
if ($Torrent['IsSnatched']) {
|
||||
$DisplayName .= ' ' . Format::torrent_label('Snatched!');
|
||||
@ -215,7 +215,7 @@
|
||||
<tr class="torrent<?=$SnatchedTorrentClass?>" id="group_<?=$CollageID . $GroupID?>">
|
||||
<td></td>
|
||||
<td class="center">
|
||||
<div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>">
|
||||
<div title="<?=$TorrentTags->title()?>" class="tooltip <?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>">
|
||||
</div>
|
||||
</td>
|
||||
<td class="big_info">
|
||||
@ -226,8 +226,8 @@
|
||||
<? } ?>
|
||||
<div class="group_info clear">
|
||||
<span>
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download">DL</a>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" title="Report">RP</a> ]
|
||||
[ <a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="tooltip" title="Download">DL</a>
|
||||
| <a href="reportsv2.php?action=report&id=<?=$TorrentID?>" class="tooltip" title="Report">RP</a> ]
|
||||
</span>
|
||||
<strong><?=$DisplayName?></strong>
|
||||
<div class="tags"><?=$TorrentTags->format()?></div>
|
||||
@ -262,9 +262,9 @@
|
||||
<td width="1%"><!-- expand/collapse --></td>
|
||||
<td width="70%"><strong>Torrents</strong></td>
|
||||
<td>Size</td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/snatched.png" alt="Snatches" title="Snatches" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/seeders.png" alt="Seeders" title="Seeders" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/leechers.png" alt="Leechers" title="Leechers" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/snatched.png" class="tooltip" alt="Snatches" title="Snatches" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/seeders.png" class="tooltip" alt="Seeders" title="Seeders" /></td>
|
||||
<td class="sign"><img src="static/styles/<?=$LoggedUser['StyleName'] ?>/images/leechers.png" class="tooltip" alt="Leechers" title="Leechers" /></td>
|
||||
</tr>
|
||||
<?=$TorrentTable?>
|
||||
</table>
|
||||
|
@ -93,6 +93,16 @@ function toggle_group(groupid, link, event) {
|
||||
var group_rows = clickedRow.parentNode.children;
|
||||
var showing = $(clickedRow).nextElementSibling().has_class('hidden');
|
||||
var allGroups = event.ctrlKey;
|
||||
|
||||
// for dealing with Mac OS X
|
||||
// http://stackoverflow.com/a/3922353
|
||||
var allGroupsMac = (
|
||||
event.keyCode == 91 // WebKit (left apple)
|
||||
|| event.keyCode == 93 // WebKit (right apple)
|
||||
|| event.keyCode == 224 // Firefox
|
||||
|| event.keyCode == 17 // Opera
|
||||
) ? 91 : null;
|
||||
|
||||
for (var i = 0; i < group_rows.length; i++) {
|
||||
var row = $(group_rows[i]);
|
||||
if (row.has_class('colhead_dark')) {
|
||||
@ -102,7 +112,7 @@ function toggle_group(groupid, link, event) {
|
||||
continue;
|
||||
}
|
||||
var relevantRow = row.has_class('group') ? $(group_rows[i + 1]) : row;
|
||||
if (allGroups || relevantRow.has_class('groupid_' + groupid)) {
|
||||
if (allGroups || allGroupsMac || relevantRow.has_class('groupid_' + groupid)) {
|
||||
row = $(group_rows[i]); // idk why we need this :S
|
||||
if (row.has_class('group')) {
|
||||
var section;
|
||||
|
@ -833,15 +833,13 @@ ul .invitetree {
|
||||
background: #F1E6CC;
|
||||
}
|
||||
|
||||
div[class~=tooltipster-base] {
|
||||
div[class~=tooltipster-base],
|
||||
div[class~=tooltipster-content] > a {
|
||||
background-color: #DCB881;
|
||||
border-color: #65430F;
|
||||
color: #492802;
|
||||
}
|
||||
|
||||
div[class~=tooltipster-content] > a {
|
||||
}
|
||||
|
||||
.post_id {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
@ -708,7 +708,8 @@ body#torrents {
|
||||
padding: 5px 2px;
|
||||
border-top: 1px solid #5F7187;
|
||||
}
|
||||
#torrent_table tr.group a[href ^="artist.php"], #torrent_table tr.group a[title ^="View Torrent"] {
|
||||
#torrent_table tr.group a[href ^="artist.php"], #torrent_table tr.group a[title ^="View torrent"],
|
||||
#torrent_table tr.group a[href ^="artist.php"], #torrent_table tr.group a[title ^="View torrent group"] {
|
||||
font-size: 12pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user