mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
Empty commit
This commit is contained in:
parent
a28f3d6df7
commit
9086287fca
@ -3,7 +3,7 @@
|
||||
<? if (!empty($Options['disclaimer'])) { ?>
|
||||
<br /><br />
|
||||
<div id="disclaimer_container" class="thin" style="text-align:center; margin-bottom:20px;">
|
||||
None of the files shown here are actually hosted on this server. The links are provided solely by this site's users. These BitTorrent files are meant for the distribution of backup files. By downloading the BitTorrent file, you are claiming that you own the original file. The administrator of this site (http://<?=NONSSL_SITE_URL?>) holds NO RESPONSIBILITY if these files are misused in any way and cannot be held responsible for what its users post, or any other actions of it.
|
||||
None of the files shown here are actually hosted on this server. The links are provided solely by this site's users. These BitTorrent files are meant for the distribution of backup files. By downloading the BitTorrent file, you are claiming that you own the original file. The administrator of this site (https://<?=SSL_SITE_URL?>) holds NO RESPONSIBILITY if these files are misused in any way and cannot be held responsible for what its users post, or any other actions of it.
|
||||
</div>
|
||||
<?
|
||||
}
|
||||
|
@ -17,11 +17,11 @@
|
||||
<table class="layout" cellpadding="2" cellspacing="1" border="0" align="center" width="100%">
|
||||
<tr valign="top">
|
||||
<td align="right" style="width:100px;">Password </td>
|
||||
<td align="left"><input type="password" name="password" id="new_pass_1" class="inputtext" /> <b id="pass_strength" /></td>
|
||||
<td align="left"><input type="password" name="password" id="new_pass_1" class="inputtext" /> <strong id="pass_strength"></strong></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td align="right">Confirm Password </td>
|
||||
<td align="left"><input type="password" name="verifypassword" id="new_pass_2" class="inputtext" /> <b id="pass_match" /></td>
|
||||
<td align="left"><input type="password" name="verifypassword" id="new_pass_2" class="inputtext" /> <strong id="pass_match"></strong></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" align="right"><input type="submit" name="reset" value="Reset!" class="submit" /></td>
|
||||
|
@ -31,13 +31,12 @@
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td align="right">Password </td>
|
||||
<td align="left"><input type="password" name="password" id="new_pass_1" class="inputtext" /> <b id="pass_strength" /> </td>
|
||||
<td align="left"><input type="password" name="password" id="new_pass_1" class="inputtext" /> <strong id="pass_strength"></strong></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td align="right">Verify Password </td>
|
||||
<td align="left"><input type="password" name="confirm_password" id="new_pass_2" class="inputtext" /> <b id="pass_match" />
|
||||
<td align="left"><input type="password" name="confirm_password" id="new_pass_2" class="inputtext" /> <strong id="pass_match"></strong>
|
||||
<p>A strong password is 8 characters or longer, contains at least 1 lowercase and uppercase letter, and contains at least a number or a symbol.</p>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
|
@ -52,7 +52,7 @@
|
||||
$Error = "No request with the reported ID found";
|
||||
} else {
|
||||
list($Name) = $DB->next_record();
|
||||
$TypeLink = "[url=https://".NONSSL_SITE_URL."requests.php?action=view&id=".$ThingID."]".display_str($Name)."[/url]";
|
||||
$TypeLink = "[url=https://".SSL_SITE_URL."requests.php?action=view&id=".$ThingID."]".display_str($Name)."[/url]";
|
||||
$Subject = "Request Report: ". display_str($Name);
|
||||
|
||||
}
|
||||
@ -63,7 +63,7 @@
|
||||
$Error = "No collage with the reported ID found";
|
||||
} else {
|
||||
list($Name) = $DB->next_record();
|
||||
$TypeLink = "[url=https://".NONSSL_SITE_URL."collage.php?id=".$ThingID."]".display_str($Name)."[/url]";
|
||||
$TypeLink = "[url=https://".SSL_SITE_URL."collage.php?id=".$ThingID."]".display_str($Name)."[/url]";
|
||||
$Subject = "Collage Report: ". display_str($Name);
|
||||
|
||||
}
|
||||
@ -74,7 +74,7 @@
|
||||
$Error = "No forum thread with the reported ID found";
|
||||
} else {
|
||||
list($Title) = $DB->next_record();
|
||||
$TypeLink = "[url=https://".NONSSL_SITE_URL."forums.php?action=viewthread&threadid=".$ThingID."]".display_str($Title)."[/url]";
|
||||
$TypeLink = "[url=https://".SSL_SITE_URL."forums.php?action=viewthread&threadid=".$ThingID."]".display_str($Title)."[/url]";
|
||||
$Subject = "Thread Report: ". display_str($Title);
|
||||
|
||||
}
|
||||
@ -90,7 +90,7 @@
|
||||
$Error = "No forum post with the reported ID found";
|
||||
} else {
|
||||
list($PostID,$Body,$TopicID,$PostNum) = $DB->next_record();
|
||||
$TypeLink = "[url=https://".NONSSL_SITE_URL."forums.php?action=viewthread&threadid=".$TopicID."&post=".$PostNum."#post".$PostID."]FORUM POST[/url]";
|
||||
$TypeLink = "[url=https://".SSL_SITE_URL."forums.php?action=viewthread&threadid=".$TopicID."&post=".$PostNum."#post".$PostID."]FORUM POST[/url]";
|
||||
$Subject = "Post Report";
|
||||
|
||||
}
|
||||
@ -102,7 +102,7 @@
|
||||
} else {
|
||||
list($RequestID, $Body, $PostNum) = $DB->next_record();
|
||||
$PageNum = ceil($PostNum / TORRENT_COMMENTS_PER_PAGE);
|
||||
$TypeLink = "[url=https://".NONSSL_SITE_URL."requests.php?action=view&id=".$RequestID."&page=".$PageNum."#post".$ThingID."]REQUEST COMMENT[/url]";
|
||||
$TypeLink = "[url=https://".SSL_SITE_URL."requests.php?action=view&id=".$RequestID."&page=".$PageNum."#post".$ThingID."]REQUEST COMMENT[/url]";
|
||||
$Subject = "Request Comment Report";
|
||||
|
||||
}
|
||||
@ -114,7 +114,7 @@
|
||||
} else {
|
||||
list($GroupID, $Body, $PostNum) = $DB->next_record();
|
||||
$PageNum = ceil($PostNum / TORRENT_COMMENTS_PER_PAGE);
|
||||
$TypeLink = "[url=https://".NONSSL_SITE_URL."torrents.php?id=".$GroupID."&page=".$PageNum."#post".$ThingID."]TORRENT COMMENT[/url]";
|
||||
$TypeLink = "[url=https://".SSL_SITE_URL."torrents.php?id=".$GroupID."&page=".$PageNum."#post".$ThingID."]TORRENT COMMENT[/url]";
|
||||
$Subject = "Torrent Comment Report";
|
||||
|
||||
}
|
||||
@ -127,7 +127,7 @@
|
||||
list($CollageID, $Body, $PostNum) = $DB->next_record();
|
||||
$PerPage = POSTS_PER_PAGE;
|
||||
$PageNum = ceil($PostNum / $PerPage);
|
||||
$TypeLink = "[url=https://".NONSSL_SITE_URL."collage.php?action=comments&collageid=".$CollageID."&page=".$PageNum."#post".$ThingID."]COLLAGE COMMENT[/url]";
|
||||
$TypeLink = "[url=https://".SSL_SITE_URL."collage.php?action=comments&collageid=".$CollageID."&page=".$PageNum."#post".$ThingID."]COLLAGE COMMENT[/url]";
|
||||
$Subject = "Collage Comment Report";
|
||||
}
|
||||
break;
|
||||
|
@ -107,7 +107,7 @@
|
||||
</div>
|
||||
<br />
|
||||
<div class="center">
|
||||
<select id="common_answers_select" onChange="UpdateMessage();">
|
||||
<select id="common_answers_select" onchange="UpdateMessage();">
|
||||
<option id="first_common_response">Select a message</option>
|
||||
<?
|
||||
// List common responses
|
||||
|
@ -72,8 +72,8 @@
|
||||
<input type="hidden" name="action" value="tokens" />
|
||||
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
|
||||
Tokens to set: <input type="text" name="numtokens" size="5" style="text-align: right" value="0"><br /><br />
|
||||
<span id="droptokens" class=""><label for="onlydrop">Only affect users with at least this many tokens: </label><input type="checkbox" id="onlydrop" name="onlydrop" value="1" onChange="$('#disabled').toggle();return true;"></span><br />
|
||||
<span id="disabled" class=""><label for="leechdisabled">Also add tokens (as needed) to leech disabled users: </label><input type="checkbox" id="leechdisabled" name="leechdisabled" value="1" onChange="$('#droptokens').toggle();return true;"></span><br /><br />
|
||||
<span id="droptokens" class=""><label for="onlydrop">Only affect users with at least this many tokens: </label><input type="checkbox" id="onlydrop" name="onlydrop" value="1" onchange="$('#disabled').toggle();return true;"></span><br />
|
||||
<span id="disabled" class=""><label for="leechdisabled">Also add tokens (as needed) to leech disabled users: </label><input type="checkbox" id="leechdisabled" name="leechdisabled" value="1" onchange="$('#droptokens').toggle();return true;"></span><br /><br />
|
||||
<input type="submit" name="cleartokens" value="Set token total">
|
||||
</form>
|
||||
</div>
|
||||
|
@ -716,7 +716,7 @@
|
||||
$Title = $Announce;
|
||||
|
||||
$AnnounceSSL = $Announce . " - https://".SSL_SITE_URL."/torrents.php?id=$GroupID / https://".SSL_SITE_URL."/torrents.php?action=download&id=$TorrentID";
|
||||
$Announce .= " - https://".NONSSL_SITE_URL."/torrents.php?id=$GroupID / https://".NONSSL_SITE_URL."/torrents.php?action=download&id=$TorrentID";
|
||||
$Announce .= " - https://".SSL_SITE_URL."/torrents.php?id=$GroupID / https://".SSL_SITE_URL."/torrents.php?action=download&id=$TorrentID";
|
||||
|
||||
$AnnounceSSL .= " - ".trim($Properties['TagList']);
|
||||
$Announce .= " - ".trim($Properties['TagList']);
|
||||
@ -935,7 +935,7 @@
|
||||
show_header("Warning");
|
||||
?>
|
||||
<h1>Warning</h1>
|
||||
<p><strong>Your torrent has been uploaded however, you must download your torrent from <a href="torrents.php?id=<?=$GroupID?>">here</a> because you didn't choose the private option.</strong></p>
|
||||
<p><strong>Your torrent has been uploaded; however, you must download your torrent from <a href="torrents.php?id=<?=$GroupID?>">here</a> because you didn't make your torrent using the "private" option.</strong></p>
|
||||
<?
|
||||
show_footer();
|
||||
die();
|
||||
|
@ -44,8 +44,8 @@ function paranoia_level($Setting) {
|
||||
|
||||
function display_paranoia($FieldName) {
|
||||
$Level = paranoia_level($FieldName);
|
||||
print '<label><input type="checkbox" name="p_'.$FieldName.'_c" '.checked($Level >= 1).' onChange="AlterParanoia()" /> Show count</label>'." \n";
|
||||
print '<label><input type="checkbox" name="p_'.$FieldName.'_l" '.checked($Level >= 2).' onChange="AlterParanoia()" /> Show list</label>';
|
||||
print '<label><input type="checkbox" name="p_'.$FieldName.'_c" '.checked($Level >= 1).' onchange="AlterParanoia()" /> Show count</label>'." \n";
|
||||
print '<label><input type="checkbox" name="p_'.$FieldName.'_l" '.checked($Level >= 2).' onchange="AlterParanoia()" /> Show list</label>';
|
||||
}
|
||||
|
||||
function checked($Checked) {
|
||||
@ -270,7 +270,7 @@ function checked($Checked) {
|
||||
<td class="label"><strong>IRCKey</strong></td>
|
||||
<td>
|
||||
<input type="text" size="50" name="irckey" id="irckey" value="<?=display_str($IRCKey)?>" />
|
||||
<p class="min_padding">This field, if set will be used in place of the password in the IRC login.</p>
|
||||
<p class="min_padding">If set, this field will be used in place of the password in the IRC login.</p>
|
||||
<p class="min_padding">Note: This value is stored in plaintext and should not be your password.</p>
|
||||
<p class="min_padding">Note: In order to be accepted as correct, your IRCKey must be between 6 and 32 characters.</p>
|
||||
</td>
|
||||
@ -291,7 +291,7 @@ function checked($Checked) {
|
||||
<tr>
|
||||
<td class="label">Recent activity</td>
|
||||
<td>
|
||||
<label><input type="checkbox" name="p_lastseen" <?=checked(!in_array('lastseen', $Paranoia))?>> Last seen</label>
|
||||
<label><input type="checkbox" name="p_lastseen" <?=checked(!in_array('lastseen', $Paranoia))?>/> Last seen</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -310,9 +310,9 @@ function checked($Checked) {
|
||||
$DownloadChecked = checked(!in_array('downloaded', $Paranoia));
|
||||
$RatioChecked = checked(!in_array('ratio', $Paranoia));
|
||||
?>
|
||||
<label><input type="checkbox" name="p_uploaded" onChange="AlterParanoia()"<?=$UploadChecked?> /> Uploaded</label>
|
||||
<label><input type="checkbox" name="p_downloaded" onChange="AlterParanoia()"<?=$DownloadChecked?> /> Downloaded</label>
|
||||
<label><input type="checkbox" name="p_ratio" onChange="AlterParanoia()"<?=$RatioChecked?> /> Ratio</label>
|
||||
<label><input type="checkbox" name="p_uploaded" onchange="AlterParanoia()"<?=$UploadChecked?> /> Uploaded</label>
|
||||
<label><input type="checkbox" name="p_downloaded" onchange="AlterParanoia()"<?=$DownloadChecked?> /> Downloaded</label>
|
||||
<label><input type="checkbox" name="p_ratio" onchange="AlterParanoia()"<?=$RatioChecked?> /> Ratio</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -333,6 +333,7 @@ function checked($Checked) {
|
||||
<? display_paranoia('collagecontribs'); ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label">Requests filled</td>
|
||||
<td>
|
||||
<?
|
||||
@ -340,11 +341,12 @@ function checked($Checked) {
|
||||
$RequestsFilledBountyChecked = checked(!in_array('requestsfilled_bounty', $Paranoia));
|
||||
$RequestsFilledListChecked = checked(!in_array('requestsfilled_list', $Paranoia));
|
||||
?>
|
||||
<label><input type="checkbox" name="p_requestsfilled_count" onChange="AlterParanoia()" <?=$RequestsFilledCountChecked?> /> Show count</label>
|
||||
<label><input type="checkbox" name="p_requestsfilled_bounty" onChange="AlterParanoia()" <?=$RequestsFilledBountyChecked?> /> Show bounty</label>
|
||||
<label><input type="checkbox" name="p_requestsfilled_list" onChange="AlterParanoia()" <?=$RequestsFilledListChecked?> /> Show list</label>
|
||||
<label><input type="checkbox" name="p_requestsfilled_count" onchange="AlterParanoia()" <?=$RequestsFilledCountChecked?> /> Show count</label>
|
||||
<label><input type="checkbox" name="p_requestsfilled_bounty" onchange="AlterParanoia()" <?=$RequestsFilledBountyChecked?> /> Show bounty</label>
|
||||
<label><input type="checkbox" name="p_requestsfilled_list" onchange="AlterParanoia()" <?=$RequestsFilledListChecked?> /> Show list</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label">Requests voted</td>
|
||||
<td>
|
||||
<?
|
||||
@ -352,9 +354,9 @@ function checked($Checked) {
|
||||
$RequestsVotedBountyChecked = checked(!in_array('requestsvoted_bounty', $Paranoia));
|
||||
$RequestsVotedListChecked = checked(!in_array('requestsvoted_list', $Paranoia));
|
||||
?>
|
||||
<label><input type="checkbox" name="p_requestsvoted_count" onChange="AlterParanoia()" <?=$RequestsVotedCountChecked?> /> Show count</label>
|
||||
<label><input type="checkbox" name="p_requestsvoted_bounty" onChange="AlterParanoia()" <?=$RequestsVotedBountyChecked?> /> Show bounty</label>
|
||||
<label><input type="checkbox" name="p_requestsvoted_list" onChange="AlterParanoia()" <?=$RequestsVotedListChecked?> /> Show list</label>
|
||||
<label><input type="checkbox" name="p_requestsvoted_count" onchange="AlterParanoia()" <?=$RequestsVotedCountChecked?> /> Show count</label>
|
||||
<label><input type="checkbox" name="p_requestsvoted_bounty" onchange="AlterParanoia()" <?=$RequestsVotedBountyChecked?> /> Show bounty</label>
|
||||
<label><input type="checkbox" name="p_requestsvoted_list" onchange="AlterParanoia()" <?=$RequestsVotedListChecked?> /> Show list</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -396,17 +398,17 @@ function checked($Checked) {
|
||||
<tr>
|
||||
<td class="label">Miscellaneous</td>
|
||||
<td>
|
||||
<label><input type="checkbox" name="p_requiredratio" <?=checked(!in_array('requiredratio', $Paranoia))?>> Required ratio</label>
|
||||
<label><input type="checkbox" name="p_requiredratio" <?=checked(!in_array('requiredratio', $Paranoia))?>/> Required ratio</label>
|
||||
<?
|
||||
$DB->query("SELECT COUNT(UserID) FROM users_info WHERE Inviter='$UserID'");
|
||||
list($Invited) = $DB->next_record();
|
||||
?>
|
||||
<br /><label><input type="checkbox" name="p_invitedcount" <?=checked(!in_array('invitedcount', $Paranoia))?>> Number of users invited</label>
|
||||
<br /><label><input type="checkbox" name="p_invitedcount" <?=checked(!in_array('invitedcount', $Paranoia))?>/> Number of users invited</label>
|
||||
<?
|
||||
$DB->query("SELECT COUNT(ta.ArtistID) FROM torrents_artists AS ta WHERE ta.UserID = ".$UserID);
|
||||
list($ArtistsAdded) = $DB->next_record();
|
||||
?>
|
||||
<br /><label><input type="checkbox" name="p_artistsadded" <?=checked(!in_array('artistsadded', $Paranoia))?>> Number of artists added</label>
|
||||
<br /><label><input type="checkbox" name="p_artistsadded" <?=checked(!in_array('artistsadded', $Paranoia))?>/> Number of artists added</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="colhead_dark">
|
||||
@ -428,7 +430,7 @@ function checked($Checked) {
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td/>
|
||||
<td/>
|
||||
<td>
|
||||
<p class="min_padding">A strong password is between 8 and 40 characters long</p>
|
||||
<p class="min_padding">Contains at least 1 lowercase and uppercase letter</p>
|
||||
@ -441,11 +443,11 @@ function checked($Checked) {
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label"><strong>New password</strong></td>
|
||||
<td><input type="password" size="40" name="new_pass_1" id="new_pass_1" value="" maxlength="40" /> <b id="pass_strength" /></td>
|
||||
<td><input type="password" size="40" name="new_pass_1" id="new_pass_1" value="" maxlength="40" /> <strong id="pass_strength"></strong></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label"><strong>Re-type new password</strong></td>
|
||||
<td><input type="password" size="40" name="new_pass_2" id="new_pass_2" value="" maxlength="40" /> <b id="pass_match" /></td>
|
||||
<td><input type="password" size="40" name="new_pass_2" id="new_pass_2" value="" maxlength="40" /> <strong id="pass_match"></strong></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" class="right">
|
||||
|
@ -1197,7 +1197,7 @@ function check_paranoia_here($Setting) {
|
||||
<tr>
|
||||
<td class="label">Extension:</td>
|
||||
<td>
|
||||
<select name="ExtendWarning" onChange="ToggleWarningAdjust(this)">
|
||||
<select name="ExtendWarning" onchange="ToggleWarningAdjust(this)">
|
||||
<option>---</option>
|
||||
<option value="1"> 1 Week</option>
|
||||
<option value="2"> 2 Weeks</option>
|
||||
|
Loading…
Reference in New Issue
Block a user