From: Carsten K. <car...@ma...> - 2001-12-15 05:30:30
|
Hi Jeff, I have a few suggestions for the recent changes plugin. * Use css <span class="summary"> for the summary instead of <b>. * Exclude the [brackets] from the bold effect, I think this helps to make the list a little easier to read (look at the code below to see what I mean by exclude). * I don't know how easy this is to do: clickable WikiWords in the subject. "What you say !!" Carsten +++ phpwiki/lib/plugin/RecentChanges.php 2001/12/15 05:15:52 @@ -186,8 +186,9 @@ function format_revision ($rev) { if ( ($summary = $this->summary($rev)) ) - $summary = QElement('b', "[$summary]"); + $summary = "[" . Element('span', array('class' => "summary"), + "$summary") . "]"; $class = 'rc-' . $this->importance($rev); return Element('li', array('class' => $class), +++ phpwiki/phpwiki.css .summary { font-weight: bold; } |