diff options
author | Evan Prodromou <evan@status.net> | 2009-12-14 16:10:16 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-12-14 16:10:16 -0500 |
commit | 6ff13d6828d01a142b60b4254c07f6f9ad3f16ba (patch) | |
tree | 01a47ba2fde842ab207b0267092ecbf85b4aabbf /actions | |
parent | 1ace5c400ebc30d2815182690e5433b918aeaf59 (diff) |
move full-featured timeline to apitimelinehome.php
Diffstat (limited to 'actions')
-rw-r--r-- | actions/apitimelinehome.php (renamed from actions/apitimelinefriends.php) | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/actions/apitimelinefriends.php b/actions/apitimelinehome.php index 09ba7a969..5f5ea37b1 100644 --- a/actions/apitimelinefriends.php +++ b/actions/apitimelinehome.php @@ -2,7 +2,7 @@ /** * StatusNet, the distributed open-source microblogging tool * - * Show the friends timeline + * Show the home timeline * * PHP version 5 * @@ -56,7 +56,7 @@ require_once INSTALLDIR . '/lib/apibareauth.php'; * @link http://status.net/ */ -class ApiTimelineFriendsAction extends ApiBareAuthAction +class ApiTimelineHomeAction extends ApiBareAuthAction { var $notices = null; @@ -72,7 +72,7 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction function prepare($args) { parent::prepare($args); - common_debug("api friends_timeline"); + common_debug("api home_timeline"); $this->user = $this->getTargetUser($this->arg('id')); if (empty($this->user)) { @@ -114,7 +114,7 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction $sitename = common_config('site', 'name'); $title = sprintf(_("%s and friends"), $this->user->nickname); $taguribase = common_config('integration', 'taguri'); - $id = "tag:$taguribase:FriendsTimeline:" . $this->user->id; + $id = "tag:$taguribase:HomeTimeline:" . $this->user->id; $link = common_local_url( 'all', array('nickname' => $this->user->nickname) ); @@ -137,11 +137,11 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction if (isset($target_id)) { $selfuri = common_root_url() . - 'api/statuses/friends_timeline/' . + 'api/statuses/home_timeline/' . $target_id . '.atom'; } else { $selfuri = common_root_url() . - 'api/statuses/friends_timeline.atom'; + 'api/statuses/home_timeline.atom'; } $this->showAtomTimeline( |