Fixed tabbing

This commit is contained in:
Sarven Capadisli 2010-01-12 01:29:09 +00:00 committed by Zach Copley
parent ba0c82b391
commit d998c4b1b8
1 changed files with 38 additions and 49 deletions

View File

@ -69,7 +69,7 @@ class ApplicationList extends Widget
function show() function show()
{ {
$this->out->elementStart('ul', array('id' => 'applications')); $this->out->elementStart('ul', 'applications');
$cnt = 0; $cnt = 0;
@ -94,69 +94,58 @@ class ApplicationList extends Widget
$this->out->elementStart('li', array('class' => 'application', $this->out->elementStart('li', array('class' => 'application',
'id' => 'oauthclient-' . $this->application->id)); 'id' => 'oauthclient-' . $this->application->id));
if (!empty($this->application->icon)) { if (!empty($this->application->icon)) {
$this->out->element('img', array('src' => $this->application->icon)); $this->out->element('img', array('src' => $this->application->icon));
} }
if (!$this->connections) { if (!$this->connections) {
$this->out->elementStart('a',
array('href' => common_local_url('showapplication',
array('nickname' => $user->nickname,
'id' => $this->application->id)),
'class' => 'url'));
$this->out->elementStart('a', $this->out->raw($this->application->name);
array('href' => $this->out->elementEnd('a');
common_local_url('showapplication', } else {
array('nickname' => $user->nickname, $this->out->elementStart('a', array('href' => $this->application->source_url,
'id' => $this->application->id)), 'class' => 'url'));
'class' => 'url')
);
$this->out->raw($this->application->name); $this->out->raw($this->application->name);
$this->out->elementEnd('a'); $this->out->elementEnd('a');
} else { }
$this->out->elementStart('a',
array('href' => $this->application->source_url,
'class' => 'url'));
$this->out->raw($this->application->name); $this->out->raw(' by ');
$this->out->elementEnd('a');
}
$this->out->raw(' by '); $this->out->elementStart('a', array('href' => $this->application->homepage,
'class' => 'url'));
$this->out->raw($this->application->organization);
$this->out->elementEnd('a');
$this->out->elementStart('a', $this->out->elementStart('p', 'note');
array(
'href' => $this->application->homepage,
'class' => 'url'
)
);
$this->out->raw($this->application->organization);
$this->out->elementEnd('a');
$this->out->elementStart('p', 'note');
$this->out->raw($this->application->description); $this->out->raw($this->application->description);
$this->out->elementEnd('p'); $this->out->elementEnd('p');
$this->out->elementEnd('li'); if ($this->connections) {
$appUser = Oauth_application_user::getByKeys($this->owner, $this->application);
if ($this->connections) { if (empty($appUser)) {
common_debug("empty appUser!");
}
$appUser = Oauth_application_user::getByKeys($this->owner, $this->application); $this->out->elementStart('li');
if (empty($appUser)) { $access = ($this->application->access_type & Oauth_application::$writeAccess)
common_debug("empty appUser!"); ? 'read-write' : 'read-only';
}
$this->out->elementStart('li'); $txt = 'Approved ' . common_exact_date($appUser->modified) .
" $access for access.";
$access = ($this->application->access_type & Oauth_application::$writeAccess) $this->out->raw($txt);
? 'read-write' : 'read-only'; $this->out->elementEnd('li');
$txt = 'Approved ' . common_exact_date($appUser->modified) . // XXX: Add revoke access button
" $access for access."; }
$this->out->raw($txt);
$this->out->elementEnd('li');
// XXX: Add revoke access button
}
} }
/* Override this in subclasses. */ /* Override this in subclasses. */