Empty commit

This commit is contained in:
Git 2013-02-13 08:00:35 +00:00
parent ba19d68c78
commit 39b774233f
12 changed files with 96 additions and 70 deletions

View File

@ -64,7 +64,7 @@ function update_tracker($Action, $Updates, $ToIRC = false) {
send_irc("PRIVMSG #tracker :{$Attempts} {$Err} {$Get}"); send_irc("PRIVMSG #tracker :{$Attempts} {$Err} {$Get}");
if ($Cache->get_value('ocelot_error_reported') === false) { if ($Cache->get_value('ocelot_error_reported') === false) {
send_irc("PRIVMSG ".ADMIN_CHAN." :Failed to update ocelot: ".$Err." : ".$Get); send_irc("PRIVMSG ".ADMIN_CHAN." :Failed to update ocelot: ".$Err." : ".$Get);
$Cache->cache_value('ocelot_error_reported', true, 900); $Cache->cache_value('ocelot_error_reported', true, 3600);
} }
} }
return ($Return == "success"); return ($Return == "success");

View File

@ -1,5 +1,3 @@
<?
function print_compose_staff_pm($Hidden = true) { ?>
<div id="compose" class="<?=($Hidden ? 'hidden' : '')?>"> <div id="compose" class="<?=($Hidden ? 'hidden' : '')?>">
<form class="send_form" name="staff_message" action="staffpm.php" method="post"> <form class="send_form" name="staff_message" action="staffpm.php" method="post">
<input type="hidden" name="action" value="takepost" /> <input type="hidden" name="action" value="takepost" />
@ -8,7 +6,9 @@ function print_compose_staff_pm($Hidden = true) { ?>
<br /> <br />
<h3><label for="message">Message</label></h3> <h3><label for="message">Message</label></h3>
<textarea rows="10" cols="95" name="message" id="message"></textarea> <?
$TextPrev = new TEXTAREA_PREVIEW('message', 'message', '', 95, 10, true, false);
?>
<br /> <br />
<strong>Send to: </strong> <strong>Send to: </strong>
@ -18,8 +18,8 @@ function print_compose_staff_pm($Hidden = true) { ?>
<option value="700">Staff</option> <option value="700">Staff</option>
</select> </select>
<input type="button" value="Preview" class="hidden button_preview_<?=$TextPrev->getID()?>" title="Preview text" />
<input type="submit" value="Send message" /> <input type="submit" value="Send message" />
<input type="button" value="Hide" onclick="$('#compose').toggle();return false;" /> <input type="button" value="Hide" onclick="$('#compose').toggle();return false;" />
</form> </form>
</div> </div>
<? } ?>

View File

@ -56,10 +56,10 @@
$TorrentTags='<br /><div class="tags">'.$TagList.'</div>'; $TorrentTags='<br /><div class="tags">'.$TagList.'</div>';
} }
?> ?>
<tr class="torrent torrent_row<?=$Torrents[$FlacID]['IsSnatched'] ? ' snatched_torrent"' : ''?>"> <tr class="torrent torrent_row<?=$Torrents[$FlacID]['IsSnatched'] ? ' snatched_torrent' : ''?>">
<td> <td>
<span class="torrent_links_block"> <span class="torrent_links_block">
[ <a href="torrents.php?action=download&amp;id=<?=$FlacID?>&amp;authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>">DL</a> ] <a href="torrents.php?action=download&amp;id=<?=$FlacID?>&amp;authkey=<?=$LoggedUser['AuthKey']?>&amp;torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="brackets">DL</a>
</span> </span>
<?=$DisplayName?> <?=$DisplayName?>
<?=$TorrentTags?> <?=$TorrentTags?>

View File

@ -109,9 +109,9 @@
?> ?>
<div class="linkbox"> <div class="linkbox">
<? if ($SeedingOnly) { ?> <? if ($SeedingOnly) { ?>
<a href="better.php?method=snatch">Show all</a> <a href="better.php?method=snatch" class="brackets">Show all</a>
<? } else { ?> <? } else { ?>
<a href="better.php?method=snatch&amp;filter=seeding">Just those currently seeding</a> <a href="better.php?method=snatch&amp;filter=seeding" class="brackets">Just those currently seeding</a>
<? } ?> <? } ?>
</div> </div>
<div class="thin"> <div class="thin">
@ -183,7 +183,7 @@
<tr class="torrent torrent_row<?=$Edition['IsSnatched'] ? ' snatched_torrent' : ''?>"> <tr class="torrent torrent_row<?=$Edition['IsSnatched'] ? ' snatched_torrent' : ''?>">
<td> <td>
<span class="torrent_links_block"> <span class="torrent_links_block">
[ <a href="torrents.php?action=download&amp;id=<?=$Edition['FlacID']?>&amp;authkey=<?=$LoggedUser['AuthKey']?>&amp;torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download">DL</a> ] <a href="torrents.php?action=download&amp;id=<?=$Edition['FlacID']?>&amp;authkey=<?=$LoggedUser['AuthKey']?>&amp;torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets">DL</a>
</span> </span>
<?=$DisplayName?> <?=$DisplayName?>
<div class="torrent_info"><?=$ExtraInfo?></div> <div class="torrent_info"><?=$ExtraInfo?></div>

View File

@ -173,15 +173,15 @@
<tr<?=$Edition['IsSnatched'] ? ' class="snatched_torrent"' : ''?>> <tr<?=$Edition['IsSnatched'] ? ' class="snatched_torrent"' : ''?>>
<td> <td>
<span class="torrent_links_block"> <span class="torrent_links_block">
[ <a href="torrents.php?action=download&amp;id=<?=$Edition['FlacID']?>&amp;authkey=<?=$LoggedUser['AuthKey']?>&amp;torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download">DL</a> ] <a href="torrents.php?action=download&amp;id=<?=$Edition['FlacID']?>&amp;authkey=<?=$LoggedUser['AuthKey']?>&amp;torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets">DL</a>
</span> </span>
<?=$DisplayName?> <?=$DisplayName?>
<div class="torrent_info"><?=$ExtraInfo?></div> <div class="torrent_info"><?=$ExtraInfo?></div>
<div class="tags"><?=$TorrentTags?></div> <div class="tags"><?=$TorrentTags?></div>
</td> </td>
<td><strong><?=isset($Edition['Formats']['V2 (VBR)'])?'<span class="important_text_alt">YES</span>':'<span class="important_text">NO</span>'?></strong></td> <td><?=isset($Edition['Formats']['V2 (VBR)']) ? '<strong class="important_text_alt">YES</strong>' : '<strong class="important_text">NO</strong>'?></td>
<td><strong><?=isset($Edition['Formats']['V0 (VBR)'])?'<span class="important_text_alt">YES</span>':'<span class="important_text">NO</span>'?></strong></td> <td><?=isset($Edition['Formats']['V0 (VBR)']) ? '<strong class="important_text_alt">YES</strong>' : '<strong class="important_text">NO</strong>'?></td>
<td><strong><?=isset($Edition['Formats']['320'])?'<span class="important_text_alt">YES</span>':'<span class="important_text">NO</span>'?></strong></td> <td><?=isset($Edition['Formats']['320']) ? '<strong class="important_text_alt">YES</strong>' : '<strong class="important_text">NO</strong>'?></td>
</tr> </tr>
<? <?
} }

View File

@ -104,14 +104,14 @@
<tr<?=$Torrents[$FlacID]['IsSnatched'] ? ' class="snatched_torrent"' : ''?>> <tr<?=$Torrents[$FlacID]['IsSnatched'] ? ' class="snatched_torrent"' : ''?>>
<td> <td>
<span class="torrent_links_block"> <span class="torrent_links_block">
[ <a href="torrents.php?action=download&amp;id=<?=$FlacID?>&amp;authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>">DL</a> ] <a href="torrents.php?action=download&amp;id=<?=$FlacID?>&amp;authkey=<?=$LoggedUser['AuthKey']?>&amp;torrent_pass=<?=$LoggedUser['torrent_pass']?>" class="brackets">DL</a>
</span> </span>
<?=$DisplayName?> <?=$DisplayName?>
<?=$TorrentTags?> <?=$TorrentTags?>
</td> </td>
<td><strong><?=($MissingEncodings['V2 (VBR)'] == 0)?'<span style="color: green;">YES</span>':'<span style="color: red;">NO</span>'?></strong></td> <td><?=($MissingEncodings['V2 (VBR)'] == 0) ? '<strong class="important_text_alt">YES</strong>' : '<strong class="important_text">NO</strong>'?></td>
<td><strong><?=($MissingEncodings['V0 (VBR)'] == 0)?'<span style="color: green;">YES</span>':'<span style="color: red;">NO</span>'?></strong></td> <td><?=($MissingEncodings['V0 (VBR)'] == 0) ? '<strong class="important_text_alt">YES</strong>' : '<strong class="important_text">NO</strong>'?></td>
<td><strong><?=($MissingEncodings['320'] == 0)?'<span style="color: green;">YES</span>':'<span style="color: red;">NO</span>'?></strong></td> <td><?=($MissingEncodings['320'] == 0) ? '<strong class="important_text_alt">YES</strong>' : '<strong class="important_text">NO</strong>'?></td>
</tr> </tr>
<? } ?> <? } ?>
</table> </table>

View File

@ -108,8 +108,28 @@
'delete' => '1', 'delete' => '1',
'pm' => '[url=http://'.NONSSL_SITE_URL.'/rules.php?p=upload#h2.2]2.2[/url]. Your torrent was reported because it was trumped by another torrent.' 'pm' => '[url=http://'.NONSSL_SITE_URL.'/rules.php?p=upload#h2.2]2.2[/url]. Your torrent was reported because it was trumped by another torrent.'
) )
),
'private_trump' => array(
'priority' => 21,
'reason' => '1',
'title' => 'Private Flag Trump',
'report_messages' => array(
'Please make sure you are reporting the torrent <strong class="important_text">which has been trumped</strong> and should be deleted, not the torrent that you think should remain on site.'
),
'report_fields' => array(
'sitelink' => '1'
),
'resolve_options' => array(
'upload' => '0',
'warn' => '0',
'delete' => '1',
'pm' => ''
)
) )
), ),
'1' => array( //Music Resolves '1' => array( //Music Resolves
'tag_trump' => array ( 'tag_trump' => array (
'priority' => '50', 'priority' => '50',

View File

@ -1,9 +1,9 @@
<? <?
enforce_login(); enforce_login();
View::show_header('Staff'); View::show_header('Staff', 'jquery');
include(SERVER_ROOT.'/sections/staff/functions.php'); include(SERVER_ROOT.'/sections/staff/functions.php');
include(SERVER_ROOT.'/sections/staffpm/functions.php');
$SupportStaff = get_support(); $SupportStaff = get_support();
list($FrontLineSupport, $ForumStaff, $Staff) = $SupportStaff; list($FrontLineSupport, $ForumStaff, $Staff) = $SupportStaff;
@ -20,7 +20,7 @@
<p>If you are looking for help with a general question, we appreciate it if you would only message through the staff inbox, where we can all help you.</p> <p>If you are looking for help with a general question, we appreciate it if you would only message through the staff inbox, where we can all help you.</p>
<p>You can do that by <strong><a href="#" onclick="$('#compose').toggle();">sending a message to the Staff Inbox</a></strong>.</p> <p>You can do that by <strong><a href="#" onclick="$('#compose').toggle();">sending a message to the Staff Inbox</a></strong>.</p>
</div> </div>
<? print_compose_staff_pm(true); ?> <? View::parse('generic/reply/staffpm.php', array('Hidden' => true)); ?>
<br /> <br />
<h3>First-line Support</h3> <h3>First-line Support</h3>
<p><strong>These users are not official staff members</strong> - they're users who have volunteered their time to help people in need. Please treat them with respect and read <a href="wiki.php?action=article&amp;id=260">this</a> before contacting them.</p> <p><strong>These users are not official staff members</strong> - they're users who have volunteered their time to help people in need. Please treat them with respect and read <a href="wiki.php?action=article&amp;id=260">this</a> before contacting them.</p>

View File

@ -2,7 +2,7 @@
include(SERVER_ROOT.'/sections/staffpm/functions.php'); include(SERVER_ROOT.'/sections/staffpm/functions.php');
View::show_header('Staff PMs', 'staffpm'); View::show_header('Staff PMs', 'staffpm,jquery');
// Get messages // Get messages
$StaffPMs = $DB->query(" $StaffPMs = $DB->query("
@ -31,7 +31,7 @@
</div> </div>
<br /> <br />
<br /> <br />
<? print_compose_staff_pm(true); ?> <? View::parse('generic/reply/staffpm.php', array('Hidden' => true)); ?>
<div class="box pad" id="inbox"> <div class="box pad" id="inbox">
<? <?

View File

@ -20,7 +20,7 @@
$Cache->delete_value('staff_pm_new_'.$LoggedUser['ID']); $Cache->delete_value('staff_pm_new_'.$LoggedUser['ID']);
} }
View::show_header('Staff PM', 'staffpm,bbcode'); View::show_header('Staff PM', 'staffpm,bbcode,jquery');
$UserInfo = Users::user_info($UserID); $UserInfo = Users::user_info($UserID);
$UserStr = Users::format_username($UserID, true, true, true, true); $UserStr = Users::format_username($UserID, true, true, true, true);
@ -132,12 +132,14 @@
?> ?>
<h3>Reply</h3> <h3>Reply</h3>
<div class="box pad"> <div class="box pad">
<div id="preview" class="hidden"></div>
<div id="buttons" class="center"> <div id="buttons" class="center">
<form class="manage_form" name="staff_messages" action="staffpm.php" method="post" id="messageform"> <form class="manage_form" name="staff_messages" action="staffpm.php" method="post" id="messageform">
<input type="hidden" name="action" value="takepost" /> <input type="hidden" name="action" value="takepost" />
<input type="hidden" name="convid" value="<?=$ConvID?>" id="convid" /> <input type="hidden" name="convid" value="<?=$ConvID?>" id="convid" />
<textarea id="quickpost" name="message" cols="90" rows="10"></textarea> <br /> <?
$TextPrev = new TEXTAREA_PREVIEW('message', 'quickpost', '', 90, 10, true, false);
?>
<br />
<? <?
// Assign to // Assign to
if ($IsStaff) { if ($IsStaff) {
@ -208,8 +210,8 @@
<input type="button" value="Resolve" onclick="location.href='staffpm.php?action=resolve&amp;id=<?=$ConvID?>';" /> <input type="button" value="Resolve" onclick="location.href='staffpm.php?action=resolve&amp;id=<?=$ConvID?>';" />
<? if ($IsFLS) { //Moved by request ?> <? if ($IsFLS) { //Moved by request ?>
<input type="button" value="Common answers" onclick="$('#common_answers').toggle();" /> <input type="button" value="Common answers" onclick="$('#common_answers').toggle();" />
<input type="button" id="previewbtn" value="Preview" onclick="PreviewMessage();" />
<? } ?> <? } ?>
<input type="button" id="previewbtn" value="Preview" class="hidden button_preview_<?=$TextPrev->getID()?>" title="Preview text" />
<input type="submit" value="Send message" /> <input type="submit" value="Send message" />
<? } else { ?> <? } else { ?>
<input type="button" value="Unresolve" onclick="location.href='staffpm.php?action=unresolve&amp;id=<?=$ConvID?>';" /> <input type="button" value="Unresolve" onclick="location.href='staffpm.php?action=unresolve&amp;id=<?=$ConvID?>';" />

View File

@ -299,7 +299,7 @@
for (i = 3; i < j.length; i++) { for (i = 3; i < j.length; i++) {
html += '<li class="hidden"><a href="artist.php?artistname=' + escapeAmpUrl(j[i]['artist']['name']) + '">' + escapeHtml(j[i]['artist']['name']) + '</a> - <a href="torrents.php?searchstr=' + escapeAmpUrl(j[i]['name']) + '">' + escapeHtml(j[i]['name']) + '</a></li>' html += '<li class="hidden"><a href="artist.php?artistname=' + escapeAmpUrl(j[i]['artist']['name']) + '">' + escapeHtml(j[i]['artist']['name']) + '</a> - <a href="torrents.php?searchstr=' + escapeAmpUrl(j[i]['name']) + '">' + escapeHtml(j[i]['name']) + '</a></li>'
} }
html+= '<li>[<a href="#topalbums" id="lastfm_expand" onclick="return false">Expand</a>]</li>' html+= '<li><a href="#topalbums" id="lastfm_expand" onclick="return false" class="brackets">Expand</a></li>'
} }
html += '</ul>'; html += '</ul>';
html += "</li>"; html += "</li>";
@ -342,7 +342,7 @@
for (i = 3; i < j.length; i++) { for (i = 3; i < j.length; i++) {
html += '<li class="hidden"><a href="artist.php?artistname=' + escapeAmpUrl(j[i]['artist']['name']) + '">' + escapeHtml(j[i]['artist']['name']) + '</a> - <a href="torrents.php?artistname=' + escapeAmpUrl(j[i]['artist']['name']) + '&filelist=' + escapeAmpUrl(j[i]['name']) + '">' + escapeHtml(j[i]['name']) + '</a></li>' html += '<li class="hidden"><a href="artist.php?artistname=' + escapeAmpUrl(j[i]['artist']['name']) + '">' + escapeHtml(j[i]['artist']['name']) + '</a> - <a href="torrents.php?artistname=' + escapeAmpUrl(j[i]['artist']['name']) + '&filelist=' + escapeAmpUrl(j[i]['name']) + '">' + escapeHtml(j[i]['name']) + '</a></li>'
} }
html+= '<li>[<a href="#toptracks" id="lastfm_expand" onclick="return false">Expand</a>]</li>' html+= '<li><a href="#toptracks" id="lastfm_expand" onclick="return false" class="brackets">Expand</a></li>'
} }
html += '</ul>'; html += '</ul>';
html += "</li>"; html += "</li>";

View File

@ -368,6 +368,10 @@ tr.torrent .bookmark>a:after {
font-size: inherit; font-size: inherit;
} }
.preview_wrap {
text-align: left;
}
.text_preview { .text_preview {
min-height: 100px min-height: 100px
} }