add SUP link to User RSS

darcs-hash:20081025022849-5ed1f-edd99a830ff285f4d0468e0e9ce3ceba4a885352.gz
This commit is contained in:
Evan Prodromou 2008-10-24 22:28:49 -04:00
parent b26477d787
commit 22057e01bd
3 changed files with 23 additions and 5 deletions

View File

@ -79,4 +79,14 @@ class UserrssAction extends Rss10Action {
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
return ($avatar) ? $avatar->url : NULL;
}
# override parent to add X-SUP-ID URL
function show_rss($limit=0) {
$url = common_local_url('sup', NULL, $this->user->id);
header('X-SUP-ID', $url);
parent::show_rss($limit);
}
}

View File

@ -38,6 +38,8 @@ RewriteRule ^main/invite$ index.php?action=invite [L,QSA]
RewriteRule ^main/favor$ index.php?action=favor [L,QSA]
RewriteRule ^main/disfavor$ index.php?action=disfavor [L,QSA]
RewriteRule ^main/sup$ index.php?action=sup [L,QSA]
RewriteRule ^settings/profile$ index.php?action=profilesettings [L,QSA]
RewriteRule ^settings/openid$ index.php?action=openidsettings [L,QSA]
RewriteRule ^settings/im$ index.php?action=imsettings [L,QSA]

View File

@ -809,13 +809,17 @@ function common_default_avatar($size) {
return theme_path('default-avatar-'.$sizenames[$size].'.png');
}
function common_local_url($action, $args=NULL) {
global $config;
if ($config['site']['fancy']) {
return common_fancy_url($action, $args);
function common_local_url($action, $args=NULL, $fragment=NULL) {
$url = NULL;
if (common_config('site','fancy')) {
$url = common_fancy_url($action, $args);
} else {
return common_simple_url($action, $args);
$url = common_simple_url($action, $args);
}
if (!is_null($fragment)) {
$url .= '#'.$fragment;
}
return $url;
}
function common_fancy_url($action, $args=NULL) {
@ -971,6 +975,8 @@ function common_fancy_url($action, $args=NULL) {
}
default: return common_simple_url($action, $args);
}
case 'sup':
return common_path('main/sup');
default:
return common_simple_url($action, $args);
}