Remove FIXME-marked Opera links until they actually work
This commit is contained in:
parent
a2ca9d96d2
commit
f4a1cd75ab
@ -69,17 +69,6 @@ class AllAction extends ProfileAction
|
|||||||
sprintf(_('Feed for friends of %s (Atom)'), $this->user->nickname)));
|
sprintf(_('Feed for friends of %s (Atom)'), $this->user->nickname)));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Output document relationship links
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function showRelationshipLinks()
|
|
||||||
{
|
|
||||||
$this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME
|
|
||||||
$this->page, 'all', array('nickname' => $this->user->nickname));
|
|
||||||
}
|
|
||||||
|
|
||||||
function showLocalNav()
|
function showLocalNav()
|
||||||
{
|
{
|
||||||
$nav = new PersonalGroupNav($this);
|
$nav = new PersonalGroupNav($this);
|
||||||
|
@ -221,15 +221,4 @@ class FavoritedAction extends Action
|
|||||||
$this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
|
$this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
|
||||||
$this->page, 'favorited');
|
$this->page, 'favorited');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Output document relationship links
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function showRelationshipLinks()
|
|
||||||
{
|
|
||||||
$this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME
|
|
||||||
$this->page, 'favorited');
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -137,15 +137,4 @@ class GroupmembersAction extends Action
|
|||||||
$this->page, 'groupmembers',
|
$this->page, 'groupmembers',
|
||||||
array('nickname' => $this->group->nickname));
|
array('nickname' => $this->group->nickname));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Output document relationship links
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function showRelationshipLinks()
|
|
||||||
{
|
|
||||||
$this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME
|
|
||||||
$this->page, 'groupmembers', array('nickname' => $this->group->nickname));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -129,15 +129,4 @@ class GroupsAction extends Action
|
|||||||
$gbm = new GroupsByMembersSection($this);
|
$gbm = new GroupsByMembersSection($this);
|
||||||
$gbm->show();
|
$gbm->show();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Output document relationship links
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function showRelationshipLinks()
|
|
||||||
{
|
|
||||||
$this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME
|
|
||||||
$this->page, 'groups', array('nickname' => $this->group->nickname));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -63,17 +63,6 @@ class InboxAction extends MailboxAction
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Output document relationship links
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function showRelationshipLinks()
|
|
||||||
{
|
|
||||||
$this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME
|
|
||||||
$this->page, 'inbox', array('nickname' => $this->user->nickname));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve the messages for this user and this page
|
* Retrieve the messages for this user and this page
|
||||||
*
|
*
|
||||||
|
@ -62,17 +62,6 @@ class OutboxAction extends MailboxAction
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Output document relationship links
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function showRelationshipLinks()
|
|
||||||
{
|
|
||||||
$this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME
|
|
||||||
$this->page, 'outbox', array('nickname' => $this->user->nickname));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* retrieve the messages for this user and this page
|
* retrieve the messages for this user and this page
|
||||||
*
|
*
|
||||||
|
@ -135,17 +135,6 @@ class PublicAction extends Action
|
|||||||
_('Public Stream Feed (Atom)')));
|
_('Public Stream Feed (Atom)')));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Output document relationship links
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function showRelationshipLinks()
|
|
||||||
{
|
|
||||||
$this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME
|
|
||||||
$this->page, 'public');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Extra head elements
|
* Extra head elements
|
||||||
*
|
*
|
||||||
|
@ -138,17 +138,6 @@ class RepliesAction extends Action
|
|||||||
return array(new Feed(Feed::RSS1, $rssurl, $rsstitle));
|
return array(new Feed(Feed::RSS1, $rssurl, $rsstitle));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Output document relationship links
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function showRelationshipLinks()
|
|
||||||
{
|
|
||||||
$this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME
|
|
||||||
$this->page, 'replies', array('nickname' => $this->user->nickname));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* show the personal group nav
|
* show the personal group nav
|
||||||
*
|
*
|
||||||
|
@ -150,18 +150,6 @@ class ShowfavoritesAction extends Action
|
|||||||
return array(new Feed(Feed::RSS1, $feedurl, $feedtitle));
|
return array(new Feed(Feed::RSS1, $feedurl, $feedtitle));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Output document relationship links
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function showRelationshipLinks()
|
|
||||||
{
|
|
||||||
$this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME
|
|
||||||
$this->page, 'showfavorites', array('nickname' => $this->user->nickname));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* show the personal group nav
|
* show the personal group nav
|
||||||
*
|
*
|
||||||
|
@ -311,17 +311,6 @@ class ShowgroupAction extends Action
|
|||||||
$this->group->nickname)));
|
$this->group->nickname)));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Output document relationship links
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function showRelationshipLinks()
|
|
||||||
{
|
|
||||||
$this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME
|
|
||||||
$this->page, 'showgroup', array('nickname' => $this->group->nickname));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fill in the sidebar.
|
* Fill in the sidebar.
|
||||||
*
|
*
|
||||||
|
@ -135,17 +135,6 @@ class ShowstreamAction extends ProfileAction
|
|||||||
sprintf(_('FOAF for %s'), $this->user->nickname)));
|
sprintf(_('FOAF for %s'), $this->user->nickname)));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Output document relationship links
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function showRelationshipLinks()
|
|
||||||
{
|
|
||||||
$this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME
|
|
||||||
$this->page, 'showstream', array('nickname' => $this->user->nickname));
|
|
||||||
}
|
|
||||||
|
|
||||||
function extraHead()
|
function extraHead()
|
||||||
{
|
{
|
||||||
// for remote subscriptions etc.
|
// for remote subscriptions etc.
|
||||||
|
@ -51,7 +51,6 @@ class TagAction extends Action
|
|||||||
$pop->show();
|
$pop->show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
if ($this->page == 1) {
|
if ($this->page == 1) {
|
||||||
@ -77,17 +76,6 @@ class TagAction extends Action
|
|||||||
sprintf(_('Feed for tag %s'), $this->tag)));
|
sprintf(_('Feed for tag %s'), $this->tag)));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Output document relationship links
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function showRelationshipLinks()
|
|
||||||
{
|
|
||||||
$this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME
|
|
||||||
$this->page, 'tag', array('tag' => $this->tag));
|
|
||||||
}
|
|
||||||
|
|
||||||
function showPageNotice()
|
function showPageNotice()
|
||||||
{
|
{
|
||||||
return sprintf(_('Messages tagged "%s", most recent first'), $this->tag);
|
return sprintf(_('Messages tagged "%s", most recent first'), $this->tag);
|
||||||
|
@ -124,7 +124,6 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
$this->showShortcutIcon();
|
$this->showShortcutIcon();
|
||||||
$this->showStylesheets();
|
$this->showStylesheets();
|
||||||
$this->showScripts();
|
$this->showScripts();
|
||||||
$this->showRelationshipLinks();
|
|
||||||
$this->showOpenSearch();
|
$this->showOpenSearch();
|
||||||
$this->showFeeds();
|
$this->showFeeds();
|
||||||
$this->showDescription();
|
$this->showDescription();
|
||||||
@ -261,19 +260,6 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Show document relationship links
|
|
||||||
*
|
|
||||||
* SHOULD overload
|
|
||||||
*
|
|
||||||
* @return nothing
|
|
||||||
*/
|
|
||||||
function showRelationshipLinks()
|
|
||||||
{
|
|
||||||
// output <link> elements with appropriate HTML4.01 link types:
|
|
||||||
// http://www.w3.org/TR/html401/types.html#type-links
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Show OpenSearch headers
|
* Show OpenSearch headers
|
||||||
*
|
*
|
||||||
@ -1055,36 +1041,4 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Generate document metadata for sequential navigation
|
|
||||||
*
|
|
||||||
* @param boolean $have_before is there something before?
|
|
||||||
* @param boolean $have_after is there something after?
|
|
||||||
* @param integer $page current page
|
|
||||||
* @param string $action current action
|
|
||||||
* @param array $args rest of query arguments
|
|
||||||
*
|
|
||||||
* @return nothing
|
|
||||||
*/
|
|
||||||
function sequenceRelationships($have_next, $have_previous, $page, $action, $args=null)
|
|
||||||
{
|
|
||||||
// Outputs machine-readable pagination in <link> elements.
|
|
||||||
// Pattern taken from $this->pagination() method.
|
|
||||||
|
|
||||||
// "next" is equivalent to "after"
|
|
||||||
if ($have_next) {
|
|
||||||
$pargs = array('page' => $page-1);
|
|
||||||
$this->element('link', array('rel' => 'next',
|
|
||||||
'href' => common_local_url($action, $args, $pargs),
|
|
||||||
'title' => _('Next')));
|
|
||||||
}
|
|
||||||
// "previous" is equivalent to "before"
|
|
||||||
if ($have_previous=true) { // FIXME
|
|
||||||
$pargs = array('page' => $page+1);
|
|
||||||
$this->element('link', array('rel' => 'prev',
|
|
||||||
'href' => common_local_url($action, $args, $pargs),
|
|
||||||
'title' => _('Previous')));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user