Subversion Repositories taios

Compare Revisions

Ignore whitespace Rev 420 → Rev 426

/_taios.php
207,8 → 207,8
'<b>$1</b>',
'<i>$1</i>',
'<u>$1</u>',
'<a href="$1">$1</a>',
'<a href="$1">$2</a>',
'<a target="_blank" href="$1">$1</a>',
'<a target="_blank" href="$1">$2</a>',
'<div class="code">$1</div>',
'<img src="$1" />',
'<ul>$1</ul>',
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>');
}
 
/styles.css
153,6 → 153,7
background-color: #DDDDDD;
font-family: Droid Sans Mono, Monospace, Fixed;
font-size: 9px;
line-height: 80%;
}
 
.copyright {