Subversion Repositories taios

Compare Revisions

Ignore whitespace Rev 378 → Rev 388

/challenge/00.php
0,0 → 1,35
<?php
 
require '../_taios.php';
 
$page = new Taios_Page('Tim32 Challenge - 00', '../');
$page->checkChallengeStatus(0, "index", "01");
 
$page->drawHeader();
$page->drawMiddle();
 
?>
 
<form action="00-do.php" method="POST">
<table>
<tr>
<td class="bold">Morse: </td>
<td style="color: #FFFFFF">.. .-.. .. -.- . -- --- --- ... . </td>
</tr>
<tr>
<td class="bold">Moose: </td>
<td><input type="text" name="moose" /></td>
</tr>
<tr>
<td class="bold"></td>
<td><input type="submit" value="Submit" /></td>
</tr>
</table>
</form>
 
<?php
 
$page->drawFooter();
 
?>
 
/challenge/01.php
0,0 → 1,16
<?php
 
require '../_taios.php';
 
$page = new Taios_Page('Tim32 Challenge - 01', '../');
$page->checkChallengeStatus(1, "index", "02");
 
$page->drawHeader();
$page->drawMiddle();
 
 
 
$page->drawFooter();
 
?>
 
/challenge/index.php
0,0 → 1,15
<?php
 
require '../_taios.php';
 
$page = new Taios_Page('Tim32 Challenge', '../');
$page->drawHeader();
$page->drawMiddle();
 
write('<p class="bold">Take the Tim32 challenge here!</p>');
write('<br /><br /><a href="00.php"><h2 style="text-align: center">Enter!</h2></a>');
 
$page->drawFooter();
 
?>
 
/_taios.php
88,7 → 88,7
{
if (!$this->drawnFooter)
{
write('<p class="copyright">&copy; 2011 Tim32 &middot; <a href="http://validator.w3.org/check?uri=http%3A%2F%2Ftim32.org%2F">HTML5 Valid</a></p>');
write('<br /><p class="copyright">&copy; 2011 Tim32 &middot; <a href="http://validator.w3.org/check?uri=http%3A%2F%2Ftim32.org%2F">HTML5 Valid</a></p>');
write('</div>');
write('</body>');
write('</html>');
278,6 → 278,24
return false;
}
function checkChallengeStatus($challengeID, $previous, $next)
{
$currentChallengeID = $this->getLoggedInUser()->challengeID;
if (!$this->isLoggedIn())
{
$this->redirect('index.php');
}
else if ($currentChallengeID > $challengeID)
{
$this->redirect($next . '.php');
}
else if ($currentChallengeID < $challengeID)
{
$this->redirect($previous . '.php');
}
}
function checkLoggedIn()
{
if (!$this->isLoggedIn())
/styles.css
149,7 → 149,6
}
 
.copyright {
margin-top: 8px;
color: #BBBBBB;
text-align: left;
font-size: 9pt;
/photos/album.php
104,7 → 104,7
}
 
write('</tr>');
write('<table>');
write('</table>');
 
$page->drawFooter();