Subversion Repositories taios

Compare Revisions

Ignore whitespace Rev 303 → Rev 314

/styles.css
8,7 → 8,7
 
h1 {
font-size: 28pt;
margin: 6px;
margin: 8px;
margin-top: 0px;
color: #000089;
border-bottom: 1px solid #000000;
16,7 → 16,7
 
h2 {
font-size: 20pt;
margin: 6px;
margin: 8px;
margin-left: 8px;
color: #00004B;
}
23,7 → 23,7
 
h3 {
font-size: 16pt;
margin: 6px;
margin: 8px;
margin-left: 10px;
color: #000055;
}
30,7 → 30,7
 
h4 {
font-size: 12pt;
margin: 6px;
margin: 8px;
margin-left: 12px;
color: #00005F;
}
37,7 → 37,7
 
h5 {
font-size: 10pt;
margin: 6px;
margin: 8px;
margin-left: 14px;
color: #000069;
}
44,7 → 44,7
 
p, table, span {
font-size: 11pt;
margin: 6px;
margin: 8px;
margin-left: 16px;
}
 
94,7 → 94,7
padding: 0px;
padding-left: 32px;
border-right: 1px solid #000089;
background-color: #FFFF73;
background-color: #9ECCE7;
background-image: url('data/sidebar-gradient.png');
background-repeat: repeat-x;
background-position: center bottom;
/_taios.php
169,7 → 169,9
function replaceBBCode($str)
{
$newstr = str_replace("\n", '</p><p>', $str);
$newstr = str_replace("<", "[", $str);
$newstr = str_replace(">", "]", $newstr);
$newstr = str_replace("\n", '<br />', $newstr);
$newstr = str_replace(' ', '&nbsp;&nbsp;', $newstr);
$newstr = str_replace(' :)', ' <img src="' . $this->url . 'data/smilies/face-smile.png" class="smiley" />', $newstr);
$newstr = str_replace(' :p', ' <img src="' . $this->url . 'data/smilies/face-raspberry.png" class="smiley" />', $newstr);
/404.php
16,6 → 16,7
 
<p class="bold">404 - Page not found</p>
<p>The page you requested could not be found.</p>
<br />
 
<h4>Useful Links</h4>
 
/admin/all-accounts.php
17,7 → 17,7
write('<td class="bold">ID</td>');
write('<td class="bold">AccessID</td>');
write('<td class="bold">Username</td>');
write('<td class="bold">Password</td>');
write('<td class="bold">SHA1 Password</td>');
write('<td class="bold">Name</td>');
write('<td class="bold">Email Address</td>');
write('<td class="bold">Challenge ID</td>');
/wiki/index.php
12,6 → 12,8
$page->drawHeader();
$page->drawMiddle();
 
write('<p><i>The wiki is still under construction.</i></p>');
 
if ($page->isUserGM($page->getLoggedInUser()))
{
write('<p><a href="edit.php?page=' . $pageName . '">Edit Page</a></p><br />');
/forums/index.php
4,8 → 4,6
 
$page = new Taios_Page('Forums', '../');
 
write('<p><i>The forums are still under construction.</i></p>');
 
$parentID = $_GET['parentID'];
if (empty($parentID))
{
19,6 → 17,8
$page->drawHeader();
$page->drawMiddle();
 
write('<p><i>The forums are still under construction.</i></p>');
 
write('<p class="bold">');
if ($parentID != -1)
{