Merge branch '0.7.x' into 0.8.x

This commit is contained in:
Sarven Capadisli 2009-04-12 21:50:57 +00:00
commit 2341f99224
6 changed files with 85 additions and 32 deletions

View File

@ -51,7 +51,7 @@ class PublicxrdsAction extends Action
{ {
/** /**
* Is read only? * Is read only?
* *
* @return boolean true * @return boolean true
*/ */
function isReadOnly() function isReadOnly()
@ -61,7 +61,7 @@ class PublicxrdsAction extends Action
/** /**
* Class handler. * Class handler.
* *
* @param array $args array of arguments * @param array $args array of arguments
* *
* @return nothing * @return nothing
@ -70,24 +70,24 @@ class PublicxrdsAction extends Action
{ {
parent::handle($args); parent::handle($args);
header('Content-Type: application/xrds+xml'); header('Content-Type: application/xrds+xml');
common_start_xml(); $this->startXML();
$this->elementStart('XRDS', array('xmlns' => 'xri://$xrds')); $this->elementStart('XRDS', array('xmlns' => 'xri://$xrds'));
$this->elementStart('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)', $this->elementStart('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
'xmlns:simple' => 'http://xrds-simple.net/core/1.0', 'xmlns:simple' => 'http://xrds-simple.net/core/1.0',
'version' => '2.0')); 'version' => '2.0'));
$this->element('Type', null, 'xri://$xrds*simple'); $this->element('Type', null, 'xri://$xrds*simple');
foreach (array('finishopenidlogin', 'finishaddopenid', 'finishimmediate') as $finish) { foreach (array('finishopenidlogin', 'finishaddopenid') as $finish) {
$this->showService(Auth_OpenID_RP_RETURN_TO_URL_TYPE, $this->showService(Auth_OpenID_RP_RETURN_TO_URL_TYPE,
common_local_url($finish)); common_local_url($finish));
} }
$this->elementEnd('XRD'); $this->elementEnd('XRD');
$this->elementEnd('XRDS'); $this->elementEnd('XRDS');
common_end_xml(); $this->endXML();
} }
/** /**
* Show service. * Show service.
* *
* @param string $type XRDS type * @param string $type XRDS type
* @param string $uri URI * @param string $uri URI
* @param array $params type parameters, null by default * @param array $params type parameters, null by default

View File

@ -86,4 +86,9 @@ class TagAction extends Action
$this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE, $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
$this->page, 'tag', array('tag' => $this->tag)); $this->page, 'tag', array('tag' => $this->tag));
} }
function isReadOnly()
{
return true;
}
} }

View File

@ -97,47 +97,91 @@ class UserauthorizationAction extends Action
$location = $params['omb_listenee_location']; $location = $params['omb_listenee_location'];
$avatar = $params['omb_listenee_avatar']; $avatar = $params['omb_listenee_avatar'];
$this->elementStart('div', 'profile'); $this->elementStart('div', array('class' => 'profile'));
$this->elementStart('div', 'entity_profile vcard');
$this->elementStart('a', array('href' => $profile,
'class' => 'url'));
if ($avatar) { if ($avatar) {
$this->element('img', array('src' => $avatar, $this->element('img', array('src' => $avatar,
'class' => 'avatar', 'class' => 'photo avatar',
'width' => AVATAR_PROFILE_SIZE, 'width' => AVATAR_PROFILE_SIZE,
'height' => AVATAR_PROFILE_SIZE, 'height' => AVATAR_PROFILE_SIZE,
'alt' => $nickname)); 'alt' => $nickname));
} }
$this->element('a', array('href' => $profile, $hasFN = ($fullname !== '') ? 'nickname' : 'fn nickname';
'class' => 'external profile nickname'), $this->elementStart('span', $hasFN);
$nickname); $this->raw($nickname);
$this->elementEnd('span');
$this->elementEnd('a');
if (!is_null($fullname)) { if (!is_null($fullname)) {
$this->elementStart('div', 'fullname'); $this->elementStart('dl', 'entity_fn');
if (!is_null($homepage)) { $this->elementStart('dd');
$this->element('a', array('href' => $homepage), $this->elementStart('span', 'fn');
$fullname); $this->raw($fullname);
} else { $this->elementEnd('span');
$this->text($fullname); $this->elementEnd('dd');
} $this->elementEnd('dl');
$this->elementEnd('div');
} }
if (!is_null($location)) { if (!is_null($location)) {
$this->element('div', 'location', $location); $this->elementStart('dl', 'entity_location');
$this->element('dt', null, _('Location'));
$this->elementStart('dd', 'label');
$this->raw($location);
$this->elementEnd('dd');
$this->elementEnd('dl');
} }
if (!is_null($homepage)) {
$this->elementStart('dl', 'entity_url');
$this->element('dt', null, _('URL'));
$this->elementStart('dd');
$this->elementStart('a', array('href' => $homepage,
'class' => 'url'));
$this->raw($homepage);
$this->elementEnd('a');
$this->elementEnd('dd');
$this->elementEnd('dl');
}
if (!is_null($bio)) { if (!is_null($bio)) {
$this->element('div', 'bio', $bio); $this->elementStart('dl', 'entity_note');
$this->element('dt', null, _('Note'));
$this->elementStart('dd', 'note');
$this->raw($bio);
$this->elementEnd('dd');
$this->elementEnd('dl');
}
if (!is_null($license)) {
$this->elementStart('dl', 'entity_license');
$this->element('dt', null, _('License'));
$this->elementStart('dd', 'license');
$this->element('a', array('href' => $license,
'class' => 'license'),
$license);
$this->elementEnd('dd');
$this->elementEnd('dl');
} }
$this->elementStart('div', 'license');
$this->element('a', array('href' => $license,
'class' => 'license'),
$license);
$this->elementEnd('div');
$this->elementEnd('div'); $this->elementEnd('div');
$this->elementStart('div', 'entity_actions');
$this->elementStart('ul');
$this->elementStart('li', 'entity_subscribe');
$this->elementStart('form', array('method' => 'post', $this->elementStart('form', array('method' => 'post',
'id' => 'userauthorization', 'id' => 'userauthorization',
'class' => 'form_user_authorization',
'name' => 'userauthorization', 'name' => 'userauthorization',
'action' => common_local_url('userauthorization'))); 'action' => common_local_url('userauthorization')));
$this->hidden('token', common_session_token()); $this->hidden('token', common_session_token());
$this->submit('accept', _('Accept'));
$this->submit('reject', _('Reject')); $this->submit('accept', _('Accept'), 'submit accept', null, _('Subscribe to this user'));
$this->submit('reject', _('Reject'), 'submit reject', null, _('Reject this subscription'));
$this->elementEnd('form'); $this->elementEnd('form');
$this->elementEnd('li');
$this->elementEnd('ul');
$this->elementEnd('div');
$this->elementEnd('div');
} }
function sendAuthorization() function sendAuthorization()

View File

@ -607,7 +607,9 @@ border-radius:4px;
-moz-border-radius:4px; -moz-border-radius:4px;
-webkit-border-radius:4px; -webkit-border-radius:4px;
} }
.entity_actions .accept {
margin-bottom:18px;
}
.entity_tags ul { .entity_tags ul {
list-style-type:none; list-style-type:none;
@ -1158,4 +1160,4 @@ display:none;
} }
.guide { .guide {
clear:both; clear:both;
} }

View File

@ -164,7 +164,8 @@ background-color:#A9BF4F;
color:#fff; color:#fff;
} }
.form_user_unsubscribe input.submit, .form_user_unsubscribe input.submit,
.form_group_leave input.submit { .form_group_leave input.submit,
.form_user_authorization input.reject {
background-color:#97BFD1; background-color:#97BFD1;
} }

View File

@ -164,7 +164,8 @@ background-color:#9BB43E;
color:#fff; color:#fff;
} }
.form_user_unsubscribe input.submit, .form_user_unsubscribe input.submit,
.form_group_leave input.submit { .form_group_leave input.submit,
.form_user_authorization input.reject {
background-color:#87B4C8; background-color:#87B4C8;
} }