Subversion Repositories taios

Compare Revisions

Ignore whitespace Rev 423 → Rev 430

/styles.css
92,7 → 92,7
 
.sidebar {
float: left;
width: 156px;
width: 166px;
padding: 0px;
padding-left: 32px;
border-right: 0px solid #000089;
128,7 → 128,7
 
.content {
top: 0px;
left: 190px;
left: 194px;
position: absolute;
margin-right: 32px;
}
/index.php
10,6 → 10,8
$page->drawMenuItem('Muzer', '/~muzer/');
$page->drawMenuItem('Sh4rk', '/~szabot/');
$page->drawMenuItem('Tom (TomMan)', '/~tom/');
write('<br /><h3>Downtime-o-meter</h3>');
write('<p>No planned down.</p>');
$page->drawMiddle();
 
?>
19,6 → 21,7
<br />
 
<h3 title="Take the Tim32 challenge: http://tim32.org/challenge/">Latest Blog Posts</h3>
<p><a href="blog/rss.php">Rss Feed</a></p>
 
<?php
 
/_taios.php
533,6 → 533,7
public $author;
public $title;
public $description;
 
public $logoURL;
public $downloadURL;
public $websiteURL;
/blog/rss.php
22,7 → 22,7
write('<link>http://tim32.org/blog/post.php?id=' . $id . '</link>');
write('<guid>' . $id . '</guid>');
write('<pubDate>' . date('D, d M Y H:i:s O', $post->datePosted). '</pubDate>');
write('<description>' . $page->replaceBBCode($post->content) . '</description>');
write('<description>' . str_replace(">", "&gt;", str_replace("<", "&lt;", $page->replaceBBCode($post->content))) . '</description>');
write('</item>');
}