Changed ul to ol and added xoxo for notice lists.

This commit is contained in:
Sarven Capadisli 2009-05-29 02:38:38 +00:00
parent a456ceb47c
commit b8de793556
4 changed files with 11 additions and 11 deletions

View File

@ -179,14 +179,14 @@ class ConversationTree extends NoticeList
$this->out->elementStart('div', array('id' =>'notices_primary'));
$this->out->element('h2', null, _('Notices'));
$this->out->elementStart('ul', array('class' => 'notices'));
$this->out->elementStart('ol', array('class' => 'notices xoxo'));
if (array_key_exists('root', $this->tree)) {
$rootid = $this->tree['root'][0];
$this->showNoticePlus($rootid);
}
$this->out->elementEnd('ul');
$this->out->elementEnd('ol');
$this->out->elementEnd('div');
return $cnt;
@ -215,13 +215,13 @@ class ConversationTree extends NoticeList
if (array_key_exists($id, $this->tree)) {
$children = $this->tree[$id];
$this->out->elementStart('ul', array('class' => 'notices'));
$this->out->elementStart('ol', array('class' => 'notices'));
foreach ($children as $child) {
$this->showNoticePlus($child);
}
$this->out->elementEnd('ul');
$this->out->elementEnd('ol');
}
$this->out->elementEnd('li');
@ -295,4 +295,4 @@ class ConversationTreeItem extends NoticeListItem
{
return;
}
}
}

View File

@ -208,10 +208,10 @@ class ShownoticeAction extends Action
function showContent()
{
$this->elementStart('ul', array('class' => 'notices'));
$this->elementStart('ol', array('class' => 'notices xoxo'));
$nli = new NoticeListItem($this->notice, $this);
$nli->show();
$this->elementEnd('ul');
$this->elementEnd('ol');
}
/**

View File

@ -86,7 +86,7 @@ class NoticeList extends Widget
{
$this->out->elementStart('div', array('id' =>'notices_primary'));
$this->out->element('h2', null, _('Notices'));
$this->out->elementStart('ul', array('class' => 'notices'));
$this->out->elementStart('ol', array('class' => 'notices xoxo'));
$cnt = 0;
@ -101,7 +101,7 @@ class NoticeList extends Widget
$item->show();
}
$this->out->elementEnd('ul');
$this->out->elementEnd('ol');
$this->out->elementEnd('div');
return $cnt;

View File

@ -52,12 +52,12 @@ class NoticeSection extends Section
{
$notices = $this->getNotices();
$cnt = 0;
$this->out->elementStart('ul', 'notices');
$this->out->elementStart('ol', 'notices xoxo');
while ($notices->fetch() && ++$cnt <= NOTICES_PER_SECTION) {
$this->showNotice($notices);
}
$this->out->elementEnd('ul');
$this->out->elementEnd('ol');
return ($cnt > NOTICES_PER_SECTION);
}