mirror of
https://github.com/WhatCD/Gazelle.git
synced 2025-01-18 20:21:37 +00:00
Empty commit
This commit is contained in:
parent
8025f4d5e9
commit
09e5a6e62c
@ -1,5 +1,14 @@
|
|||||||
CHANGE LOG
|
CHANGE LOG
|
||||||
|
|
||||||
|
2014-03-20 by alderaan
|
||||||
|
Use class="wide_input_text" for the "extra log message" and "extra staff notes" text boxes on the Reports v2 and torrent deletion forms
|
||||||
|
|
||||||
|
2014-03-20 by alderaan
|
||||||
|
Rename "Upload" to "Remove upload privileges" on the torrent deletion form
|
||||||
|
|
||||||
|
2014-03-20 by alderaan
|
||||||
|
Add <label> tags for the "Delete", "Warning", and "Upload" fields on the torrent deletion form
|
||||||
|
|
||||||
2014-03-18 by alderaan
|
2014-03-18 by alderaan
|
||||||
Add a "[Jump to staff tools]" button on user profiles that links to a page anchor after the "Recent Snatches", "Recent Uploads", collage sections, etc.
|
Add a "[Jump to staff tools]" button on user profiles that links to a page anchor after the "Recent Snatches", "Recent Uploads", collage sections, etc.
|
||||||
|
|
||||||
|
@ -393,7 +393,8 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td class="label"><strong>Extra</strong> log message:</td>
|
<td class="label"><strong>Extra</strong> log message:</td>
|
||||||
<td>
|
<td>
|
||||||
<input type="text" name="log_message" id="log_message<?=$ReportID?>" size="40"<? if ($ExtraIDs) {
|
<input type="text" class="wide_input_text" name="log_message" id="log_message<?=$ReportID?>"<?
|
||||||
|
if ($ExtraIDs) {
|
||||||
$Extras = explode(' ', $ExtraIDs);
|
$Extras = explode(' ', $ExtraIDs);
|
||||||
$Value = '';
|
$Value = '';
|
||||||
foreach ($Extras as $ExtraID) {
|
foreach ($Extras as $ExtraID) {
|
||||||
@ -404,7 +405,7 @@
|
|||||||
</td>
|
</td>
|
||||||
<td class="label"><strong>Extra</strong> staff notes:</td>
|
<td class="label"><strong>Extra</strong> staff notes:</td>
|
||||||
<td>
|
<td>
|
||||||
<input type="text" name="admin_message" id="admin_message<?=$ReportID?>" size="40" />
|
<input type="text" class="wide_input_text" name="admin_message" id="admin_message<?=$ReportID?>" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -581,20 +581,20 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td class="label"><strong>Extra</strong> log message:</td>
|
<td class="label"><strong>Extra</strong> log message:</td>
|
||||||
<td>
|
<td>
|
||||||
<input type="text" name="log_message" id="log_message<?=$ReportID?>" size="40"
|
<input type="text" class="wide_input_text" name="log_message" id="log_message<?=$ReportID?>"<?
|
||||||
<? if ($ExtraIDs) {
|
if ($ExtraIDs) {
|
||||||
$Extras = explode(' ', $ExtraIDs);
|
$Extras = explode(' ', $ExtraIDs);
|
||||||
$Value = '';
|
$Value = '';
|
||||||
foreach ($Extras as $ExtraID) {
|
foreach ($Extras as $ExtraID) {
|
||||||
$Value .= site_url()."torrents.php?torrentid=$ExtraID ";
|
$Value .= site_url()."torrents.php?torrentid=$ExtraID ";
|
||||||
}
|
}
|
||||||
echo 'value="'.trim($Value).'"';
|
echo ' value="'.trim($Value).'"';
|
||||||
} ?>
|
} ?>
|
||||||
/>
|
/>
|
||||||
</td>
|
</td>
|
||||||
<td class="label"><strong>Extra</strong> staff notes:</td>
|
<td class="label"><strong>Extra</strong> staff notes:</td>
|
||||||
<td>
|
<td>
|
||||||
<input type="text" name="admin_message" id="admin_message<?=$ReportID?>" size="40" />
|
<input type="text" class="wide_input_text" name="admin_message" id="admin_message<?=$ReportID?>" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -256,11 +256,11 @@
|
|||||||
</select>
|
</select>
|
||||||
<span id="options<?=$ReportID?>">
|
<span id="options<?=$ReportID?>">
|
||||||
<span class="tooltip" title="Delete torrent?">
|
<span class="tooltip" title="Delete torrent?">
|
||||||
<strong>Delete</strong>
|
<label for="delete<?=$ReportID?>"><strong>Delete</strong></label>
|
||||||
<input type="checkbox" name="delete" id="delete<?=$ReportID?>"<?=($ReportType['resolve_options']['delete'] ? ' checked="checked"' : '')?> />
|
<input type="checkbox" name="delete" id="delete<?=$ReportID?>"<?=($ReportType['resolve_options']['delete'] ? ' checked="checked"' : '')?> />
|
||||||
</span>
|
</span>
|
||||||
<span class="tooltip" title="Warning length in weeks">
|
<span class="tooltip" title="Warning length in weeks">
|
||||||
<strong>Warning</strong>
|
<label for="warning<?=$ReportID?>"><strong>Warning</strong></label>
|
||||||
<select name="warning" id="warning<?=$ReportID?>">
|
<select name="warning" id="warning<?=$ReportID?>">
|
||||||
<? for ($i = 0; $i < 9; $i++) { ?>
|
<? for ($i = 0; $i < 9; $i++) { ?>
|
||||||
<option value="<?=$i?>"<?=(($ReportType['resolve_options']['warn'] == $i) ? ' selected="selected"' : '')?>><?=$i?></option>
|
<option value="<?=$i?>"<?=(($ReportType['resolve_options']['warn'] == $i) ? ' selected="selected"' : '')?>><?=$i?></option>
|
||||||
@ -268,7 +268,7 @@
|
|||||||
</select>
|
</select>
|
||||||
</span>
|
</span>
|
||||||
<span class="tooltip" title="Remove upload privileges?">
|
<span class="tooltip" title="Remove upload privileges?">
|
||||||
<strong>Upload</strong>
|
<label for="upload<?=$ReportID?>"><strong>Remove upload privileges</strong></label>
|
||||||
<input type="checkbox" name="upload" id="upload<?=$ReportID?>"<?=($ReportType['resolve_options']['upload'] ? ' checked="checked"' : '')?> />
|
<input type="checkbox" name="upload" id="upload<?=$ReportID?>"<?=($ReportType['resolve_options']['upload'] ? ' checked="checked"' : '')?> />
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
@ -277,20 +277,20 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td class="label">PM uploader:</td>
|
<td class="label">PM uploader:</td>
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
<span class="tooltip" title="Appended to the regular message unless using "Send Now".">
|
<span class="tooltip" title="Appended to the regular message unless using "Send now".">
|
||||||
<textarea name="uploader_pm" id="uploader_pm<?=$ReportID?>" cols="50" rows="1"></textarea>
|
<textarea name="uploader_pm" id="uploader_pm<?=$ReportID?>" cols="50" rows="1"></textarea>
|
||||||
</span>
|
</span>
|
||||||
<input type="button" value="Send Now" onclick="SendPM(<?=$ReportID?>);" />
|
<input type="button" value="Send now" onclick="SendPM(<?=$ReportID?>);" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="label"><strong>Extra</strong> log message:</td>
|
<td class="label"><strong>Extra</strong> log message:</td>
|
||||||
<td>
|
<td>
|
||||||
<input type="text" name="log_message" id="log_message<?=$ReportID?>" size="40" />
|
<input type="text" class="wide_input_text" name="log_message" id="log_message<?=$ReportID?>" />
|
||||||
</td>
|
</td>
|
||||||
<td class="label"><strong>Extra</strong> staff notes:</td>
|
<td class="label"><strong>Extra</strong> staff notes:</td>
|
||||||
<td>
|
<td>
|
||||||
<input type="text" name="admin_message" id="admin_message<?=$ReportID?>" size="40" />
|
<input type="text" class="wide_input_text" name="admin_message" id="admin_message<?=$ReportID?>" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
Loading…
Reference in New Issue
Block a user