Documentation Update
This commit is contained in:
@@ -117,18 +117,18 @@ print "<!-- max_episode_number is $max_episode_number -->\n";
|
||||
// --------------------------------------------
|
||||
// Get the number of shows in the Reserve Pool.
|
||||
|
||||
$query = mysqli_query($connection, "SELECT COUNT(*) as count_reserve_queue FROM reservations WHERE status = 'RESERVE_SHOW_SUBMITTED' AND ip = '127.0.0.1';");
|
||||
$query = mysqli_query($connection, "SELECT COUNT(*) as count_reserve_pool FROM reservations WHERE status = 'RESERVE_SHOW_SUBMITTED' AND ip = '127.0.0.1';");
|
||||
$response_array = mysqli_fetch_row($query);
|
||||
$count_reserve_queue = $response_array[0];
|
||||
print "<!-- count_reserve_queue is $count_reserve_queue -->\n";
|
||||
$count_reserve_pool = $response_array[0];
|
||||
print "<!-- count_reserve_pool is $count_reserve_pool -->\n";
|
||||
|
||||
// --------------------------------------------
|
||||
// Get the number of shows in the Reserve Pool yet to be processed.
|
||||
|
||||
$query = mysqli_query($connection, "SELECT COUNT(*) as count_reserve_queue_unprocessed FROM reservations WHERE status = 'RESERVE_SHOW_SUBMITTED' AND ip != '127.0.0.1';");
|
||||
$query = mysqli_query($connection, "SELECT COUNT(*) as count_reserve_pool_unprocessed FROM reservations WHERE status = 'RESERVE_SHOW_SUBMITTED' AND ip != '127.0.0.1';");
|
||||
$response_array = mysqli_fetch_row($query);
|
||||
$count_reserve_queue_unprocessed = $response_array[0];
|
||||
print "<!-- count_reserve_queue_unprocessed is $count_reserve_queue_unprocessed -->\n";
|
||||
$count_reserve_pool_unprocessed = $response_array[0];
|
||||
print "<!-- count_reserve_pool_unprocessed is $count_reserve_pool_unprocessed -->\n";
|
||||
|
||||
// --------------------------------------------
|
||||
// Populate array with future shows and reservations
|
||||
@@ -314,13 +314,13 @@ There are only <strong><?php echo "${days_to_wait}"; ?></strong> days to wait un
|
||||
<li>When the queue is filling up then leave some slots free for new contributors.</li>
|
||||
<li>Post non urgent shows into the first empty week.</li>
|
||||
<li>If you are uploading a series of shows then post them one every two weeks.</li>
|
||||
<li>If you have a non urgent show that is timeless, then add it to the <a href="<?php echo $referrerurl ?>about.html#reserve_queue">Reserve Pool</a>.</li>
|
||||
<li>If you have a non urgent show that is timeless, then add it to the <a href="<?php echo $referrerurl ?>about.html#reserve_pool">Reserve Pool</a>.</li>
|
||||
</ol>
|
||||
|
||||
<h2 id="reserve_queue">Add to the Reserve Pool ?</h2>
|
||||
<h2 id="reserve_pool">Add to the Reserve Pool ?</h2>
|
||||
|
||||
<p>
|
||||
<a aria-label="Post to the Reserve Pool" href="<?php echo "${hubBaseurl}"; ?>request.php?id=9999">Post your show to the <strong>Reserve Pool</strong></a> if you don't care when it will be released. <small><a aria-label="Help on the Reserve Pool" href="<?php echo "${referrerurl}"; ?>about.html#reserve_queue";">ⓘ</a></small>
|
||||
<a aria-label="Post to the Reserve Pool" href="<?php echo "${hubBaseurl}"; ?>request.php?id=9999">Post your show to the <strong>Reserve Pool</strong></a> if you don't care when it will be released. <small><a aria-label="Help on the Reserve Pool" href="<?php echo "${referrerurl}"; ?>about.html#reserve_pool";">ⓘ</a></small>
|
||||
</p>
|
||||
|
||||
<h2 id="current_schedule">Select a date in the current schedule ?</h2>
|
||||
@@ -384,7 +384,7 @@ while ( $slot <= $max_episode_number) {
|
||||
}
|
||||
?>
|
||||
|
||||
<h3 id="reserve_queue_overview">Reserve Pool Overview</h3>
|
||||
<h3 id="reserve_pool_overview">Reserve Pool Overview</h3>
|
||||
<pre>
|
||||
<?php
|
||||
include 'reserve.txt';
|
||||
|
||||
Reference in New Issue
Block a user