X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fpublic.php;h=43beaffc6a6074790fbc42e186f0eeb099afb026;hb=69a1cea319f22362d197cb8a0fc9ab19abdf8548;hp=7776125792c1f7262e124a809e872a0a937f8277;hpb=3ea856c69e4ec78c830b39f00e1a92ff29c3905f;p=quix0rs-gnu-social.git diff --git a/actions/public.php b/actions/public.php index 7776125792..43beaffc6a 100644 --- a/actions/public.php +++ b/actions/public.php @@ -1,18 +1,18 @@ . */ @@ -26,9 +26,13 @@ class PublicAction extends StreamAction { function handle($args) { parent::handle($args); - $page = $this->arg('page') || 1; + $page = ($this->arg('page')) ? ($this->arg('page')+0) : 1; - common_show_header(_t('Public timeline')); + header('X-XRDS-Location: '. common_local_url('publicxrds')); + + common_show_header(_('Public timeline'), + array($this, 'show_header'), NULL, + array($this, 'show_top')); # XXX: Public sidebar here? @@ -37,24 +41,41 @@ class PublicAction extends StreamAction { common_show_footer(); } - function show_notices($page) { - - $notice = DB_DataObject::factory('notice'); - - # XXX: filter out private notifications - - $notice->orderBy('created DESC'); - $notice->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE); + function show_top() { + if (common_logged_in()) { + common_notice_form('public'); + } + } - $notice->find(); + function show_header() { + common_element('link', array('rel' => 'alternate', + 'href' => common_local_url('publicrss'), + 'type' => 'application/rss+xml', + 'title' => _('Public Stream Feed'))); + # for client side of OpenID authentication + common_element('meta', array('http-equiv' => 'X-XRDS-Location', + 'content' => common_local_url('publicxrds'))); + } - common_element_start('div', 'notices'); + function show_notices($page) { - while ($notice->fetch()) { - $this->show_notice($notice); + $cnt = 0; + $notice = Notice::publicStream(($page-1)*NOTICES_PER_PAGE, + NOTICES_PER_PAGE + 1); + + if ($notice) { + common_element_start('ul', array('id' => 'notices')); + while ($notice->fetch()) { + $cnt++; + if ($cnt > NOTICES_PER_PAGE) { + break; + } + $this->show_notice($notice); + } + common_element_end('ul'); } - common_element_end('div'); + common_pagination($page > 1, $cnt > NOTICES_PER_PAGE, + $page, 'public'); } -} - +} \ No newline at end of file