summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-12-07 15:26:43 -0500
committerEvan Prodromou <evan@status.net>2010-12-07 15:26:43 -0500
commitd5466ac87ef38b6813555488bcaea0d96504e5bc (patch)
treedeb49218994d32a6cb94b62b0a8c29bdc33477af /lib
parent4b4b763255ad3b2bff8f18da2bd3927b52a54e55 (diff)
fix whitespace in lib/xrdaction.php
Diffstat (limited to 'lib')
-rw-r--r--lib/xrdaction.php68
1 files changed, 34 insertions, 34 deletions
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');