From d5466ac87ef38b6813555488bcaea0d96504e5bc Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 7 Dec 2010 15:26:43 -0500 Subject: fix whitespace in lib/xrdaction.php --- lib/xrdaction.php | 68 +++++++++++++++++++++++++++---------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) (limited to 'lib') diff --git a/lib/xrdaction.php b/lib/xrdaction.php index 43826b32b..177d1b471 100644 --- a/lib/xrdaction.php +++ b/lib/xrdaction.php @@ -53,53 +53,53 @@ class XrdAction extends Action $xrd->subject = self::normalize($this->uri); } - if (Event::handle('StartXrdActionAliases', array(&$xrd, $this->user))) { + if (Event::handle('StartXrdActionAliases', array(&$xrd, $this->user))) { - // Possible aliases for the user + // Possible aliases for the user - $uris = array($this->user->uri, $profile->profileurl); + $uris = array($this->user->uri, $profile->profileurl); - // FIXME: Webfinger generation code should live somewhere on its own + // FIXME: Webfinger generation code should live somewhere on its own - $path = common_config('site', 'path'); + $path = common_config('site', 'path'); - if (empty($path)) { - $uris[] = sprintf('acct:%s@%s', $nick, common_config('site', 'server')); - } + if (empty($path)) { + $uris[] = sprintf('acct:%s@%s', $nick, common_config('site', 'server')); + } - foreach ($uris as $uri) { - if ($uri != $xrd->subject) { - $xrd->alias[] = $uri; - } - } + foreach ($uris as $uri) { + if ($uri != $xrd->subject) { + $xrd->alias[] = $uri; + } + } - Event::handle('EndXrdActionAliases', array(&$xrd, $this->user)); - } + Event::handle('EndXrdActionAliases', array(&$xrd, $this->user)); + } - if (Event::handle('StartXrdActionLinks', array(&$xrd, $this->user))) { + if (Event::handle('StartXrdActionLinks', array(&$xrd, $this->user))) { - $xrd->links[] = array('rel' => self::PROFILEPAGE, - 'type' => 'text/html', - 'href' => $profile->profileurl); + $xrd->links[] = array('rel' => self::PROFILEPAGE, + 'type' => 'text/html', + 'href' => $profile->profileurl); - // hCard - $xrd->links[] = array('rel' => self::HCARD, - 'type' => 'text/html', - 'href' => common_local_url('hcard', array('nickname' => $nick))); + // hCard + $xrd->links[] = array('rel' => self::HCARD, + 'type' => 'text/html', + 'href' => common_local_url('hcard', array('nickname' => $nick))); - // XFN - $xrd->links[] = array('rel' => 'http://gmpg.org/xfn/11', - 'type' => 'text/html', - 'href' => $profile->profileurl); - // FOAF - $xrd->links[] = array('rel' => 'describedby', - 'type' => 'application/rdf+xml', - 'href' => common_local_url('foaf', - array('nickname' => $nick))); + // XFN + $xrd->links[] = array('rel' => 'http://gmpg.org/xfn/11', + 'type' => 'text/html', + 'href' => $profile->profileurl); + // FOAF + $xrd->links[] = array('rel' => 'describedby', + 'type' => 'application/rdf+xml', + 'href' => common_local_url('foaf', + array('nickname' => $nick))); - Event::handle('EndXrdActionLinks', array(&$xrd, $this->user)); - } + Event::handle('EndXrdActionLinks', array(&$xrd, $this->user)); + } header('Content-type: application/xrd+xml'); -- cgit v1.2.3-54-g00ecf