1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
<?php rcs_id('$Id: RecentChanges.php,v 1.4 2004/06/14 11:26:51 rurban Exp $');
/*
* Extensions/modifications to the stock RecentChanges (and PageHistory) format.
*/
require_once('lib/plugin/RecentChanges.php');
require_once('lib/plugin/PageHistory.php');
function SpaceWiki_RC_revision_formatter (&$fmt, &$rev) {
$class = 'rc-' . $fmt->importance($rev);
return HTML::li(array('class' => $class),
$fmt->diffLink($rev), ' ',
$fmt->pageLink($rev), ' ',
' . ',
$rev->get('is_minor_edit') ? $fmt->time($rev) : HTML::strong($fmt->time($rev)), ' ',
' . . . ',
$fmt->summaryAsHTML($rev),
' . . . ',
$fmt->authorLink($rev));
}
function SpaceWiki_PH_revision_formatter (&$fmt, &$rev) {
$class = 'rc-' . $fmt->importance($rev);
return HTML::li(array('class' => $class),
$fmt->diffLink($rev), ' ',
$fmt->pageLink($rev), ' ',
$rev->get('is_minor_edit') ? $fmt->time($rev) : HTML::strong($fmt->time($rev)), ' ',
' . . . ',
$fmt->summaryAsHTML($rev),
' . . . ',
$fmt->authorLink($rev),
($fmt->importance($rev)=='minor') ? HTML::small(" (" . _("minor edit") . ")") : '');
}
class _SpaceWiki_RecentChanges_Formatter
extends _RecentChanges_HtmlFormatter
{
function format_revision (&$rev) {
return SpaceWiki_RC_revision_formatter($this, $rev);
}
function summaryAsHTML ($rev) {
if ( !($summary = $this->summary($rev)) )
return '';
return HTML::strong( array('class' => 'wiki-summary'),
" ",
TransformLinks($summary, $rev->get('markup'), $rev->getPageName()),
" ");
}
function diffLink ($rev) {
global $WikiTheme;
return $WikiTheme->makeButton(_("diff"), $this->diffURL($rev), 'wiki-rc-action');
}
}
class _SpaceWiki_PageHistory_Formatter
extends _PageHistory_HtmlFormatter
{
function format_revision (&$rev) {
return SpaceWiki_PH_revision_formatter($this, $rev);
}
function summaryAsHTML ($rev) {
if ( !($summary = $this->summary($rev)) )
return '';
return HTML::strong( array('class' => 'wiki-summary'),
" ",
TransformLinks($summary, $rev->get('markup'), $rev->getPageName()),
" ");
}
}
// (c-file-style: "gnu")
// Local Variables:
// mode: php
// tab-width: 8
// c-basic-offset: 4
// c-hanging-comment-ender-p: nil
// indent-tabs-mode: nil
// End:
?>
|