summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
Diffstat (limited to 'actions')
-rw-r--r--actions/accesstoken.php2
-rw-r--r--actions/all.php124
-rw-r--r--actions/allrss.php2
-rw-r--r--actions/api.php14
-rw-r--r--actions/avatarbynickname.php10
-rw-r--r--actions/block.php28
-rw-r--r--actions/confirmaddress.php16
-rw-r--r--actions/deletenotice.php18
-rw-r--r--actions/deleteprofile.php42
-rw-r--r--actions/disfavor.php20
-rw-r--r--actions/doc.php4
-rw-r--r--actions/emailsettings.php84
-rw-r--r--actions/facebookhome.php2
-rw-r--r--actions/facebookinvite.php38
-rw-r--r--actions/facebookremove.php2
-rw-r--r--actions/facebooksettings.php40
-rw-r--r--actions/favor.php20
-rw-r--r--actions/favorited.php10
-rw-r--r--actions/favoritesrss.php2
-rw-r--r--actions/featured.php6
-rw-r--r--actions/finishaddopenid.php4
-rw-r--r--actions/finishopenidlogin.php54
-rw-r--r--actions/finishremotesubscribe.php34
-rw-r--r--actions/foaf.php78
-rw-r--r--actions/imsettings.php56
-rw-r--r--actions/invite.php50
-rw-r--r--actions/login.php82
-rw-r--r--actions/logout.php4
-rw-r--r--actions/microsummary.php4
-rw-r--r--actions/newmessage.php12
-rw-r--r--actions/newnotice.php32
-rw-r--r--actions/noticesearch.php50
-rw-r--r--actions/nudge.php18
-rw-r--r--actions/openidlogin.php22
-rw-r--r--actions/openidsettings.php48
-rw-r--r--actions/opensearch.php24
-rw-r--r--actions/othersettings.php42
-rw-r--r--actions/peoplesearch.php2
-rw-r--r--actions/peopletag.php12
-rw-r--r--actions/postnotice.php14
-rw-r--r--actions/profilesettings.php102
-rw-r--r--actions/public.php203
-rw-r--r--actions/publicxrds.php26
-rw-r--r--actions/recoverpassword.php62
-rw-r--r--actions/register.php68
-rw-r--r--actions/remotesubscribe.php24
-rw-r--r--actions/replies.php6
-rw-r--r--actions/repliesrss.php2
-rw-r--r--actions/requesttoken.php4
-rw-r--r--actions/showfavorites.php8
-rw-r--r--actions/showmessage.php4
-rw-r--r--actions/shownotice.php14
-rw-r--r--actions/showstream.php160
-rw-r--r--actions/smssettings.php94
-rw-r--r--actions/subedit.php12
-rw-r--r--actions/subscribe.php20
-rw-r--r--actions/subscriptions.php14
-rw-r--r--actions/sup.php2
-rw-r--r--actions/tag.php16
-rw-r--r--actions/tagother.php66
-rw-r--r--actions/tagrss.php2
-rw-r--r--actions/twitapiaccount.php16
-rw-r--r--actions/twitapiblocks.php8
-rw-r--r--actions/twitapidirect_messages.php46
-rw-r--r--actions/twitapifavorites.php20
-rw-r--r--actions/twitapifriendships.php18
-rw-r--r--actions/twitapihelp.php6
-rw-r--r--actions/twitapilaconica.php18
-rw-r--r--actions/twitapinotifications.php4
-rw-r--r--actions/twitapistatuses.php48
-rw-r--r--actions/twitapiusers.php4
-rw-r--r--actions/twittersettings.php66
-rw-r--r--actions/unblock.php10
-rw-r--r--actions/unsubscribe.php22
-rw-r--r--actions/updateprofile.php36
-rw-r--r--actions/userauthorization.php56
-rw-r--r--actions/userbyid.php6
-rw-r--r--actions/userrss.php4
-rw-r--r--actions/xrds.php40
79 files changed, 1286 insertions, 1177 deletions
diff --git a/actions/accesstoken.php b/actions/accesstoken.php
index 072ce27eb..ad03b7019 100644
--- a/actions/accesstoken.php
+++ b/actions/accesstoken.php
@@ -38,7 +38,7 @@ class AccesstokenAction extends Action
common_debug('printing the access token', __FILE__);
print $token;
} catch (OAuthException $e) {
- common_server_error($e->getMessage());
+ $this->serverError($e->getMessage());
}
}
}
diff --git a/actions/all.php b/actions/all.php
index 526ac5f40..548d7a103 100644
--- a/actions/all.php
+++ b/actions/all.php
@@ -19,80 +19,86 @@
if (!defined('LACONICA')) { exit(1); }
-require_once(INSTALLDIR.'/actions/showstream.php');
+require_once INSTALLDIR.'/lib/personalgroupnav.php';
+require_once INSTALLDIR.'/lib/noticelist.php';
+require_once INSTALLDIR.'/lib/feedlist.php';
-class AllAction extends StreamAction
+class AllAction extends Action
{
-
- function handle($args)
+ var $user = null;
+ var $page = null;
+
+ function isReadOnly()
{
-
- parent::handle($args);
-
+ return true;
+ }
+
+ function prepare($args)
+ {
+ parent::prepare($args);
$nickname = common_canonical_nickname($this->arg('nickname'));
- $user = User::staticGet('nickname', $nickname);
-
- if (!$user) {
- $this->client_error(_('No such user.'));
- return;
+ $this->user = User::staticGet('nickname', $nickname);
+ $this->page = $this->trimmed('page');
+ if (!$this->page) {
+ $this->page = 1;
}
-
- $profile = $user->getProfile();
-
- if (!$profile) {
- common_server_error(_('User has no profile.'));
+ return true;
+ }
+
+ function handle($args)
+ {
+ parent::handle($args);
+
+ if (!$this->user) {
+ $this->clientError(_('No such user.'));
return;
}
-
- # Looks like we're good; show the header
-
- common_show_header(sprintf(_("%s and friends"), $profile->nickname),
- array($this, 'show_header'), $user,
- array($this, 'show_top'));
-
- $this->show_notices($user);
-
- common_show_footer();
+
+ $this->showPage();
}
-
- function show_header($user)
+
+ function title()
+ {
+ if ($this->page > 1) {
+ return sprintf(_("%s and friends, page %d"), $this->user->nickname, $this->page);
+ } else {
+ return sprintf(_("%s and friends"), $this->user->nickname);
+ }
+ }
+
+ function showFeeds()
{
- common_element('link', array('rel' => 'alternate',
+ $this->element('link', array('rel' => 'alternate',
'href' => common_local_url('allrss', array('nickname' =>
- $user->nickname)),
+ $this->user->nickname)),
'type' => 'application/rss+xml',
- 'title' => sprintf(_('Feed for friends of %s'), $user->nickname)));
+ 'title' => sprintf(_('Feed for friends of %s'), $this->user->nickname)));
}
-
- function show_top($user)
+
+ function showLocalNav()
{
- $cur = common_current_user();
-
- if ($cur && $cur->id == $user->id) {
- common_notice_form('all');
- }
-
- $this->views_menu();
-
- $this->show_feeds_list(array(0=>array('href'=>common_local_url('allrss', array('nickname' => $user->nickname)),
- 'type' => 'rss',
- 'version' => 'RSS 1.0',
- 'item' => 'allrss')));
+ $nav = new PersonalGroupNav($this);
+ $nav->show();
}
- function show_notices($user)
+ function showExportData()
{
-
- $page = $this->trimmed('page');
- if (!$page) {
- $page = 1;
- }
-
- $notice = $user->noticesWithFriends(($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
-
- $cnt = $this->show_notice_list($notice);
-
- common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
- $page, 'all', array('nickname' => $user->nickname));
+ $fl = new FeedList($this);
+ $fl->show(array(0=>array('href'=>common_local_url('allrss', array('nickname' => $this->user->nickname)),
+ 'type' => 'rss',
+ 'version' => 'RSS 1.0',
+ 'item' => 'allrss')));
+ }
+
+ function showContent()
+ {
+ $notice = $this->user->noticesWithFriends(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
+
+ $nl = new NoticeList($notice, $this);
+
+ $cnt = $nl->show();
+
+ $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
+ $this->page, 'all', array('nickname' => $this->user->nickname));
}
}
diff --git a/actions/allrss.php b/actions/allrss.php
index 660afb9e2..56818d605 100644
--- a/actions/allrss.php
+++ b/actions/allrss.php
@@ -34,7 +34,7 @@ class AllrssAction extends Rss10Action
$this->user = User::staticGet('nickname', $nickname);
if (!$this->user) {
- common_user_error(_('No such user.'));
+ $this->clientError(_('No such user.'));
return false;
} else {
return true;
diff --git a/actions/api.php b/actions/api.php
index 7a0759831..47c119605 100644
--- a/actions/api.php
+++ b/actions/api.php
@@ -103,10 +103,10 @@ class ApiAction extends Action
call_user_func(array($action_obj, $this->api_method), $_REQUEST, $apidata);
} else {
- common_user_error("API method not found!", $code=404);
+ $this->clientError("API method not found!", $code=404);
}
} else {
- common_user_error("API method not found!", $code=404);
+ $this->clientError("API method not found!", $code=404);
}
}
@@ -159,10 +159,10 @@ class ApiAction extends Action
if ($this->content_type == 'xml') {
header('Content-Type: application/xml; charset=utf-8');
common_start_xml();
- common_element_start('hash');
- common_element('error', null, $msg);
- common_element('request', null, $_SERVER['REQUEST_URI']);
- common_element_end('hash');
+ $this->elementStart('hash');
+ $this->element('error', null, $msg);
+ $this->element('request', null, $_SERVER['REQUEST_URI']);
+ $this->elementEnd('hash');
common_end_xml();
} else if ($this->content_type == 'json') {
header('Content-Type: application/json; charset=utf-8');
@@ -174,7 +174,7 @@ class ApiAction extends Action
}
}
- function is_readonly()
+ function isReadOnly()
{
# NOTE: before handle(), can't use $this->arg
$apiaction = $_REQUEST['apiaction'];
diff --git a/actions/avatarbynickname.php b/actions/avatarbynickname.php
index 666f386f6..d2d078b61 100644
--- a/actions/avatarbynickname.php
+++ b/actions/avatarbynickname.php
@@ -26,28 +26,28 @@ class AvatarbynicknameAction extends Action
parent::handle($args);
$nickname = $this->trimmed('nickname');
if (!$nickname) {
- $this->client_error(_('No nickname.'));
+ $this->clientError(_('No nickname.'));
return;
}
$size = $this->trimmed('size');
if (!$size) {
- $this->client_error(_('No size.'));
+ $this->clientError(_('No size.'));
return;
}
$size = strtolower($size);
if (!in_array($size, array('original', '96', '48', '24'))) {
- $this->client_error(_('Invalid size.'));
+ $this->clientError(_('Invalid size.'));
return;
}
$user = User::staticGet('nickname', $nickname);
if (!$user) {
- $this->client_error(_('No such user.'));
+ $this->clientError(_('No such user.'));
return;
}
$profile = $user->getProfile();
if (!$profile) {
- $this->client_error(_('User has no profile.'));
+ $this->clientError(_('User has no profile.'));
return;
}
if ($size == 'original') {
diff --git a/actions/block.php b/actions/block.php
index c1ff7c044..738cbfbf7 100644
--- a/actions/block.php
+++ b/actions/block.php
@@ -30,28 +30,28 @@ class BlockAction extends Action
parent::prepare($args);
if (!common_logged_in()) {
- $this->client_error(_('Not logged in.'));
+ $this->clientError(_('Not logged in.'));
return false;
}
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
- $this->client_error(_('There was a problem with your session token. Try again, please.'));
+ $this->clientError(_('There was a problem with your session token. Try again, please.'));
return;
}
$id = $this->trimmed('blockto');
if (!$id) {
- $this->client_error(_('No profile specified.'));
+ $this->clientError(_('No profile specified.'));
return false;
}
$this->profile = Profile::staticGet('id', $id);
if (!$this->profile) {
- $this->client_error(_('No profile with that ID.'));
+ $this->clientError(_('No profile with that ID.'));
return false;
}
@@ -81,34 +81,34 @@ class BlockAction extends Action
common_show_header(_('Block user'));
- common_element('p', null,
+ $this->element('p', null,
_('Are you sure you want to block this user? '.
'Afterwards, they will be unsubscribed from you, '.
'unable to subscribe to you in the future, and '.
'you will not be notified of any @-replies from them.'));
- common_element_start('form', array('id' => 'block-' . $id,
+ $this->elementStart('form', array('id' => 'block-' . $id,
'method' => 'post',
'class' => 'block',
'action' => common_local_url('block')));
- common_hidden('token', common_session_token());
+ $this->hidden('token', common_session_token());
- common_element('input', array('id' => 'blockto-' . $id,
+ $this->element('input', array('id' => 'blockto-' . $id,
'name' => 'blockto',
'type' => 'hidden',
'value' => $id));
foreach ($this->args as $k => $v) {
if (substr($k, 0, 9) == 'returnto-') {
- common_hidden($k, $v);
+ $this->hidden($k, $v);
}
}
- common_submit('no', _('No'));
- common_submit('yes', _('Yes'));
+ $this->submit('no', _('No'));
+ $this->submit('yes', _('Yes'));
- common_element_end('form');
+ $this->elementEnd('form');
common_show_footer();
}
@@ -119,14 +119,14 @@ class BlockAction extends Action
$cur = common_current_user();
if ($cur->hasBlocked($this->profile)) {
- $this->client_error(_('You have already blocked this user.'));
+ $this->clientError(_('You have already blocked this user.'));
return;
}
$result = $cur->block($this->profile);
if (!$result) {
- $this->server_error(_('Failed to save block information.'));
+ $this->serverError(_('Failed to save block information.'));
return;
}
diff --git a/actions/confirmaddress.php b/actions/confirmaddress.php
index 1d5c53ff2..53410fbe6 100644
--- a/actions/confirmaddress.php
+++ b/actions/confirmaddress.php
@@ -32,26 +32,26 @@ class ConfirmaddressAction extends Action
}
$code = $this->trimmed('code');
if (!$code) {
- $this->client_error(_('No confirmation code.'));
+ $this->clientError(_('No confirmation code.'));
return;
}
$confirm = Confirm_address::staticGet('code', $code);
if (!$confirm) {
- $this->client_error(_('Confirmation code not found.'));
+ $this->clientError(_('Confirmation code not found.'));
return;
}
$cur = common_current_user();
if ($cur->id != $confirm->user_id) {
- $this->client_error(_('That confirmation code is not for you!'));
+ $this->clientError(_('That confirmation code is not for you!'));
return;
}
$type = $confirm->address_type;
if (!in_array($type, array('email', 'jabber', 'sms'))) {
- $this->server_error(sprintf(_('Unrecognized address type %s'), $type));
+ $this->serverError(sprintf(_('Unrecognized address type %s'), $type));
return;
}
if ($cur->$type == $confirm->address) {
- $this->client_error(_('That address has already been confirmed.'));
+ $this->clientError(_('That address has already been confirmed.'));
return;
}
@@ -71,7 +71,7 @@ class ConfirmaddressAction extends Action
if (!$result) {
common_log_db_error($cur, 'UPDATE', __FILE__);
- $this->server_error(_('Couldn\'t update user.'));
+ $this->serverError(_('Couldn\'t update user.'));
return;
}
@@ -83,14 +83,14 @@ class ConfirmaddressAction extends Action
if (!$result) {
common_log_db_error($confirm, 'DELETE', __FILE__);
- $this->server_error(_('Couldn\'t delete email confirmation.'));
+ $this->serverError(_('Couldn\'t delete email confirmation.'));
return;
}
$cur->query('COMMIT');
common_show_header(_('Confirm Address'));
- common_element('p', null,
+ $this->element('p', null,
sprintf(_('The address "%s" has been confirmed for your account.'), $cur->$type));
common_show_footer();
}
diff --git a/actions/deletenotice.php b/actions/deletenotice.php
index e9b4b3254..bae0eac1b 100644
--- a/actions/deletenotice.php
+++ b/actions/deletenotice.php
@@ -51,24 +51,24 @@ class DeletenoticeAction extends DeleteAction
common_show_header($this->get_title(), array($this, 'show_header'), $error,
array($this, 'show_top'));
- common_element_start('form', array('id' => 'notice_delete_form',
+ $this->elementStart('form', array('id' => 'notice_delete_form',
'method' => 'post',
'action' => common_local_url('deletenotice')));
- common_hidden('token', common_session_token());
- common_hidden('notice', $this->trimmed('notice'));
- common_element_start('p');
- common_element('span', array('id' => 'confirmation_text'), _('Are you sure you want to delete this notice?'));
+ $this->hidden('token', common_session_token());
+ $this->hidden('notice', $this->trimmed('notice'));
+ $this->elementStart('p');
+ $this->element('span', array('id' => 'confirmation_text'), _('Are you sure you want to delete this notice?'));
- common_element('input', array('id' => 'submit_no',
+ $this->element('input', array('id' => 'submit_no',
'name' => 'submit',
'type' => 'submit',
'value' => _('No')));
- common_element('input', array('id' => 'submit_yes',
+ $this->element('input', array('id' => 'submit_yes',
'name' => 'submit',
'type' => 'submit',
'value' => _('Yes')));
- common_element_end('p');
- common_element_end('form');
+ $this->elementEnd('p');
+ $this->elementEnd('form');
common_show_footer();
}
diff --git a/actions/deleteprofile.php b/actions/deleteprofile.php
index e12fe131a..cc236f847 100644
--- a/actions/deleteprofile.php
+++ b/actions/deleteprofile.php
@@ -24,7 +24,7 @@ class DeleteprofileAction extends Action
function handle($args)
{
parent::handle($args);
- $this->server_error(_('Code not yet ready.'));
+ $this->serverError(_('Code not yet ready.'));
return;
if ('POST' === $_SERVER['REQUEST_METHOD']) {
$this->handle_post();
@@ -49,15 +49,15 @@ class DeleteprofileAction extends Action
function show_feeds_list($feeds)
{
- common_element_start('div', array('class' => 'feedsdel'));
- common_element('p', null, 'Feeds:');
- common_element_start('ul', array('class' => 'xoxo'));
+ $this->elementStart('div', array('class' => 'feedsdel'));
+ $this->element('p', null, 'Feeds:');
+ $this->elementStart('ul', array('class' => 'xoxo'));
foreach ($feeds as $key => $value) {
$this->common_feed_item($feeds[$key]);
}
- common_element_end('ul');
- common_element_end('div');
+ $this->elementEnd('ul');
+ $this->elementEnd('div');
}
//TODO move to common.php (and retrace its origin)
@@ -81,19 +81,19 @@ class DeleteprofileAction extends Action
$feed['textContent'] = "FOAF";
break;
}
- common_element_start('li');
- common_element('a', array('href' => $feed['href'],
+ $this->elementStart('li');
+ $this->element('a', array('href' => $feed['href'],
'class' => $feed_classname,
'type' => $feed_mimetype,
'title' => $feed_title),
$feed['textContent']);
- common_element_end('li');
+ $this->elementEnd('li');
}
function show_form($msg=null, $success=false)
{
$this->form_header(_('Delete my account'), $msg, $success);
- common_element('h2', null, _('Delete my account confirmation'));
+ $this->element('h2', null, _('Delete my account confirmation'));
$this->show_confirm_delete_form();
common_show_footer();
}
@@ -105,13 +105,13 @@ class DeleteprofileAction extends Action
$notices->profile_id = $user->id;
$notice_count = (int) $notices->count();
- common_element_start('form', array('method' => 'POST',
+ $this->elementStart('form', array('method' => 'POST',
'id' => 'delete',
'action' =>
common_local_url('deleteprofile')));
- common_hidden('token', common_session_token());
- common_element('p', null, "Last chance to copy your notices and contacts by saving the two links below before deleting your account. Be careful, this operation cannot be undone.");
+ $this->hidden('token', common_session_token());
+ $this->element('p', null, "Last chance to copy your notices and contacts by saving the two links below before deleting your account. Be careful, this operation cannot be undone.");
$this->show_feeds_list(array(0=>array('href'=>common_local_url('userrss', array('limit' => $notice_count, 'nickname' => $user->nickname)),
'type' => 'rss',
@@ -122,10 +122,10 @@ class DeleteprofileAction extends Action
'version' => 'FOAF',
'item' => 'foaf')));
- common_checkbox('confirmation', _('Check if you are sure you want to delete your account.'));
+ $this->checkbox('confirmation', _('Check if you are sure you want to delete your account.'));
- common_submit('deleteaccount', _('Delete my account'));
- common_element_end('form');
+ $this->submit('deleteaccount', _('Delete my account'));
+ $this->elementEnd('form');
}
function handle_post()
@@ -238,9 +238,9 @@ class DeleteprofileAction extends Action
} else {
$inst = $this->get_instructions();
$output = common_markup_to_html($inst);
- common_element_start('div', 'instructions');
- common_raw($output);
- common_element_end('div');
+ $this->elementStart('div', 'instructions');
+ $this->raw($output);
+ $this->elementEnd('div');
}
$this->settings_menu();
}
@@ -272,7 +272,7 @@ class DeleteprofileAction extends Action
_('Other options')));
$action = $this->trimmed('action');
- common_element_start('ul', array('id' => 'nav_views'));
+ $this->elementStart('ul', array('id' => 'nav_views'));
foreach ($menu as $menuaction => $menudesc) {
if ($menuaction == 'imsettings' &&
!common_config('xmpp', 'enabled')) {
@@ -283,7 +283,7 @@ class DeleteprofileAction extends Action
$menudesc[1],
$action == $menuaction);
}
- common_element_end('ul');
+ $this->elementEnd('ul');
}
}
diff --git a/actions/disfavor.php b/actions/disfavor.php
index 74aae86cc..fc36f7c75 100644
--- a/actions/disfavor.php
+++ b/actions/disfavor.php
@@ -28,7 +28,7 @@ class DisfavorAction extends Action
parent::handle($args);
if (!common_logged_in()) {
- common_user_error(_('Not logged in.'));
+ $this->clientError(_('Not logged in.'));
return;
}
@@ -46,7 +46,7 @@ class DisfavorAction extends Action
$token = $this->trimmed('token-'.$notice->id);
if (!$token || $token != common_session_token()) {
- $this->client_error(_("There was a problem with your session token. Try again, please."));
+ $this->clientError(_("There was a problem with your session token. Try again, please."));
return;
}
@@ -54,7 +54,7 @@ class DisfavorAction extends Action
$fave->user_id = $this->id;
$fave->notice_id = $notice->id;
if (!$fave->find(true)) {
- $this->client_error(_('This notice is not a favorite!'));
+ $this->clientError(_('This notice is not a favorite!'));
return;
}
@@ -62,7 +62,7 @@ class DisfavorAction extends Action
if (!$result) {
common_log_db_error($fave, 'DELETE', __FILE__);
- $this->server_error(_('Could not delete favorite.'));
+ $this->serverError(_('Could not delete favorite.'));
return;
}
@@ -70,13 +70,13 @@ class DisfavorAction extends Action
if ($this->boolean('ajax')) {
common_start_html('text/xml;charset=utf-8', true);
- common_element_start('head');
- common_element('title', null, _('Add to favorites'));
- common_element_end('head');
- common_element_start('body');
+ $this->elementStart('head');
+ $this->element('title', null, _('Add to favorites'));
+ $this->elementEnd('head');
+ $this->elementStart('body');
common_favor_form($notice);
- common_element_end('body');
- common_element_end('html');
+ $this->elementEnd('body');
+ $this->elementEnd('html');
} else {
common_redirect(common_local_url('showfavorites',
array('nickname' => $user->nickname)));
diff --git a/actions/doc.php b/actions/doc.php
index 856025e66..3d14b25b8 100644
--- a/actions/doc.php
+++ b/actions/doc.php
@@ -28,13 +28,13 @@ class DocAction extends Action
$title = $this->trimmed('title');
$filename = INSTALLDIR.'/doc/'.$title;
if (!file_exists($filename)) {
- common_user_error(_('No such document.'));
+ $this->clientError(_('No such document.'));
return;
}
$c = file_get_contents($filename);
$output = common_markup_to_html($c);
common_show_header(_(ucfirst($title)));
- common_raw($output);
+ $this->raw($output);
common_show_footer();
}
}
diff --git a/actions/emailsettings.php b/actions/emailsettings.php
index 3fa8ce296..6210c07b4 100644
--- a/actions/emailsettings.php
+++ b/actions/emailsettings.php
@@ -33,83 +33,83 @@ class EmailsettingsAction extends SettingsAction
{
$user = common_current_user();
$this->form_header(_('Email Settings'), $msg, $success);
- common_element_start('form', array('method' => 'post',
+ $this->elementStart('form', array('method' => 'post',
'id' => 'emailsettings',
'action' =>
common_local_url('emailsettings')));
- common_hidden('token', common_session_token());
+ $this->hidden('token', common_session_token());
- common_element('h2', null, _('Address'));
+ $this->element('h2', null, _('Address'));
if ($user->email) {
- common_element_start('p');
- common_element('span', 'address confirmed', $user->email);
- common_element('span', 'input_instructions',
+ $this->elementStart('p');
+ $this->element('span', 'address confirmed', $user->email);
+ $this->element('span', 'input_instructions',
_('Current confirmed email address.'));
- common_hidden('email', $user->email);
- common_element_end('p');
- common_submit('remove', _('Remove'));
+ $this->hidden('email', $user->email);
+ $this->elementEnd('p');
+ $this->submit('remove', _('Remove'));
} else {
$confirm = $this->get_confirmation();
if ($confirm) {
- common_element_start('p');
- common_element('span', 'address unconfirmed', $confirm->address);
- common_element('span', 'input_instructions',
+ $this->elementStart('p');
+ $this->element('span', 'address unconfirmed', $confirm->address);
+ $this->element('span', 'input_instructions',
_('Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions.'));
- common_hidden('email', $confirm->address);
- common_element_end('p');
- common_submit('cancel', _('Cancel'));
+ $this->hidden('email', $confirm->address);
+ $this->elementEnd('p');
+ $this->submit('cancel', _('Cancel'));
} else {
- common_input('email', _('Email Address'),
+ $this->input('email', _('Email Address'),
($this->arg('email')) ? $this->arg('email') : null,
_('Email address, like "UserName@example.org"'));
- common_submit('add', _('Add'));
+ $this->submit('add', _('Add'));
}
}
if ($user->email) {
- common_element('h2', null, _('Incoming email'));
+ $this->element('h2', null, _('Incoming email'));
if ($user->incomingemail) {
- common_element_start('p');
- common_element('span', 'address', $user->incomingemail);
- common_element('span', 'input_instructions',
+ $this->elementStart('p');
+ $this->element('span', 'address', $user->incomingemail);
+ $this->element('span', 'input_instructions',
_('Send email to this address to post new notices.'));
- common_element_end('p');
- common_submit('removeincoming', _('Remove'));
+ $this->elementEnd('p');
+ $this->submit('removeincoming', _('Remove'));
}
- common_element_start('p');
- common_element('span', 'input_instructions',
+ $this->elementStart('p');
+ $this->element('span', 'input_instructions',
_('Make a new email address for posting to; cancels the old one.'));
- common_element_end('p');
- common_submit('newincoming', _('New'));
+ $this->elementEnd('p');
+ $this->submit('newincoming', _('New'));
}
- common_element('h2', null, _('Preferences'));
+ $this->element('h2', null, _('Preferences'));
- common_checkbox('emailnotifysub',
+ $this->checkbox('emailnotifysub',
_('Send me notices of new subscriptions through email.'),
$user->emailnotifysub);
- common_checkbox('emailnotifyfav',
+ $this->checkbox('emailnotifyfav',
_('Send me email when someone adds my notice as a favorite.'),
$user->emailnotifyfav);
- common_checkbox('emailnotifymsg',
+ $this->checkbox('emailnotifymsg',
_('Send me email when someone sends me a private message.'),
$user->emailnotifymsg);
- common_checkbox('emailnotifynudge',
+ $this->checkbox('emailnotifynudge',
_('Allow friends to nudge me and send me an email.'),
$user->emailnotifynudge);
- common_checkbox('emailpost',
+ $this->checkbox('emailpost',
_('I want to post notices by email.'),
$user->emailpost);
- common_checkbox('emailmicroid',
+ $this->checkbox('emailmicroid',
_('Publish a MicroID for my email address.'),
$user->emailmicroid);
- common_submit('save', _('Save'));
+ $this->submit('save', _('Save'));
- common_element_end('form');
+ $this->elementEnd('form');
common_show_footer();
}
@@ -182,7 +182,7 @@ class EmailsettingsAction extends SettingsAction
if ($result === false) {
common_log_db_error($user, 'UPDATE', __FILE__);
- common_server_error(_('Couldn\'t update user.'));
+ $this->serverError(_('Couldn\'t update user.'));
return;
}
@@ -232,7 +232,7 @@ class EmailsettingsAction extends SettingsAction
if ($result === false) {
common_log_db_error($confirm, 'INSERT', __FILE__);
- common_server_error(_('Couldn\'t insert confirmation code.'));
+ $this->serverError(_('Couldn\'t insert confirmation code.'));
return;
}
@@ -260,7 +260,7 @@ class EmailsettingsAction extends SettingsAction
if (!$result) {
common_log_db_error($confirm, 'DELETE', __FILE__);
- $this->server_error(_('Couldn\'t delete email confirmation.'));
+ $this->serverError(_('Couldn\'t delete email confirmation.'));
return;
}
@@ -286,7 +286,7 @@ class EmailsettingsAction extends SettingsAction
$result = $user->updateKeys($original);
if (!$result) {
common_log_db_error($user, 'UPDATE', __FILE__);
- common_server_error(_('Couldn\'t update user.'));
+ $this->serverError(_('Couldn\'t update user.'));
return;
}
$user->query('COMMIT');
@@ -308,7 +308,7 @@ class EmailsettingsAction extends SettingsAction
if (!$user->updateKeys($orig)) {
common_log_db_error($user, 'UPDATE', __FILE__);
- $this->server_error(_("Couldn't update user record."));
+ $this->serverError(_("Couldn't update user record."));
}
$this->show_form(_('Incoming email address removed.'), true);
@@ -323,7 +323,7 @@ class EmailsettingsAction extends SettingsAction
if (!$user->updateKeys($orig)) {
common_log_db_error($user, 'UPDATE', __FILE__);
- $this->server_error(_("Couldn't update user record."));
+ $this->serverError(_("Couldn't update user record."));
}
$this->show_form(_('New incoming email address added.'), true);
diff --git a/actions/facebookhome.php b/actions/facebookhome.php
index f72f08a34..d2ac7617d 100644
--- a/actions/facebookhome.php
+++ b/actions/facebookhome.php
@@ -105,7 +105,7 @@ class FacebookhomeAction extends FacebookAction
$this->show_header('Home');
if ($msg) {
- common_element('fb:success', array('message' => $msg));
+ $this->element('fb:success', array('message' => $msg));
}
echo $this->show_notices($user);
diff --git a/actions/facebookinvite.php b/actions/facebookinvite.php
index fe0c5e493..103d5a568 100644
--- a/actions/facebookinvite.php
+++ b/actions/facebookinvite.php
@@ -43,22 +43,22 @@ class FacebookinviteAction extends FacebookAction
$this->show_header('Invite');
- common_element('h2', null, _('Thanks for inviting your friends to use Identi.ca!'));
- common_element('p', null, _('Invitations have been sent to the following users:'));
+ $this->element('h2', null, _('Thanks for inviting your friends to use Identi.ca!'));
+ $this->element('p', null, _('Invitations have been sent to the following users:'));
$friend_ids = $_POST['ids']; // Hmm... $this->arg('ids') doesn't seem to work
- common_element_start("ul");
+ $this->elementStart("ul");
foreach ($friend_ids as $friend) {
- common_element_start('li');
- common_element('fb:profile-pic', array('uid' => $friend));
- common_element('fb:name', array('uid' => $friend,
+ $this->elementStart('li');
+ $this->element('fb:profile-pic', array('uid' => $friend));
+ $this->element('fb:name', array('uid' => $friend,
'capitalize' => 'true'));
- common_element_end('li');
+ $this->elementEnd('li');
}
- common_element_end("ul");
+ $this->elementEnd("ul");
$this->show_footer();
}
@@ -77,32 +77,32 @@ class FacebookinviteAction extends FacebookAction
$content = _('You have been invited to Identi.ca!') .
htmlentities('<fb:req-choice url="http://apps.facebook.com/identica_app/" label="Add"/>');
- common_element_start('fb:request-form', array('action' => 'invite.php',
+ $this->elementStart('fb:request-form', array('action' => 'invite.php',
'method' => 'post',
'invite' => 'true',
'type' => 'Identi.ca',
'content' => $content));
- common_hidden('invite', 'true');
+ $this->hidden('invite', 'true');
$actiontext = 'Invite your friends to use Identi.ca.';
- common_element('fb:multi-friend-selector', array('showborder' => 'false',
+ $this->element('fb:multi-friend-selector', array('showborder' => 'false',
'actiontext' => $actiontext,
'exclude_ids' => implode(',', $exclude_ids),
'bypass' => 'cancel'));
- common_element_end('fb:request-form');
+ $this->elementEnd('fb:request-form');
- common_element('h2', null, _('Friends already using Identi.ca:'));
- common_element_start("ul");
+ $this->element('h2', null, _('Friends already using Identi.ca:'));
+ $this->elementStart("ul");
foreach ($exclude_ids as $friend) {
- common_element_start('li');
- common_element('fb:profile-pic', array('uid' => $friend));
- common_element('fb:name', array('uid' => $friend,
+ $this->elementStart('li');
+ $this->element('fb:profile-pic', array('uid' => $friend));
+ $this->element('fb:name', array('uid' => $friend,
'capitalize' => 'true'));
- common_element_end('li');
+ $this->elementEnd('li');
}
- common_element_end("ul");
+ $this->elementEnd("ul");
$this->show_footer();
diff --git a/actions/facebookremove.php b/actions/facebookremove.php
index a200fefbf..d0a0dd951 100644
--- a/actions/facebookremove.php
+++ b/actions/facebookremove.php
@@ -53,7 +53,7 @@ class FacebookremoveAction extends FacebookAction
if (!$result) {
common_log_db_error($flink, 'DELETE', __FILE__);
- common_server_error(_('Couldn\'t remove Facebook user.'));
+ $this->serverError(_('Couldn\'t remove Facebook user.'));
return;
}
diff --git a/actions/facebooksettings.php b/actions/facebooksettings.php
index ab04ad82b..8b071353a 100644
--- a/actions/facebooksettings.php
+++ b/actions/facebooksettings.php
@@ -68,43 +68,43 @@ class FacebooksettingsAction extends FacebookAction
$this->show_header('Settings', $msg, $success);
- common_element_start('fb:if-section-not-added', array('section' => 'profile'));
- common_element('h2', null, _('Add an Identi.ca box to my profile'));
- common_element_start('p');
- common_element('fb:add-section-button', array('section' => 'profile'));
- common_element_end('p');
-
- common_element_end('fb:if-section-not-added');
- common_element_start('p');
- common_element_start('fb:prompt-permission', array('perms' => 'status_update'));
- common_element('h2', null, _('Allow Identi.ca to update my Facebook status'));
- common_element_end('fb:prompt-permission');
- common_element_end('p');
+ $this->elementStart('fb:if-section-not-added', array('section' => 'profile'));
+ $this->element('h2', null, _('Add an Identi.ca box to my profile'));
+ $this->elementStart('p');
+ $this->element('fb:add-section-button', array('section' => 'profile'));
+ $this->elementEnd('p');
+
+ $this->elementEnd('fb:if-section-not-added');
+ $this->elementStart('p');
+ $this->elementStart('fb:prompt-permission', array('perms' => 'status_update'));
+ $this->element('h2', null, _('Allow Identi.ca to update my Facebook status'));
+ $this->elementEnd('fb:prompt-permission');
+ $this->elementEnd('p');
if ($facebook->api_client->users_hasAppPermission('status_update')) {
- common_element_start('form', array('method' => 'post',
+ $this->elementStart('form', array('method' => 'post',
'id' => 'facebook_settings'));
- common_element('h2', null, _('Sync preferences'));
+ $this->element('h2', null, _('Sync preferences'));
- common_checkbox('noticesync', _('Automatically update my Facebook status with my notices.'),
+ $this->checkbox('noticesync', _('Automatically update my Facebook status with my notices.'),
($flink) ? ($flink->noticesync & FOREIGN_NOTICE_SEND) : true);
- common_checkbox('replysync', _('Send local "@" replies to Facebook.'),
+ $this->checkbox('replysync', _('Send local "@" replies to Facebook.'),
($flink) ? ($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) : true);
- // function common_input($id, $label, $value=null,$instructions=null)
+ // function $this->input($id, $label, $value=null,$instructions=null)
$prefix = $facebook->api_client->data_getUserPreference(1);
- common_input('prefix', _('Prefix'),
+ $this->input('prefix', _('Prefix'),
($prefix) ? $prefix : null,
_('A string to prefix notices with.'));
- common_submit('save', _('Save'));
+ $this->submit('save', _('Save'));
- common_element_end('form');
+ $this->elementEnd('form');
}
diff --git a/actions/favor.php b/actions/favor.php
index 8103f8181..8d751a7a9 100644
--- a/actions/favor.php
+++ b/actions/favor.php
@@ -29,7 +29,7 @@ class FavorAction extends Action
parent::handle($args);
if (!common_logged_in()) {
- common_user_error(_('Not logged in.'));
+ $this->clientError(_('Not logged in.'));
return;
}
@@ -48,19 +48,19 @@ class FavorAction extends Action
$token = $this->trimmed('token-'.$notice->id);
if (!$token || $token != common_session_token()) {
- $this->client_error(_("There was a problem with your session token. Try again, please."));
+ $this->clientError(_("There was a problem with your session token. Try again, please."));
return;
}
if ($user->hasFave($notice)) {
- $this->client_error(_('This notice is already a favorite!'));
+ $this->clientError(_('This notice is already a favorite!'));
return;
}
$fave = Fave::addNew($user, $notice);
if (!$fave) {
- $this->server_error(_('Could not create favorite.'));
+ $this->serverError(_('Could not create favorite.'));
return;
}
@@ -69,13 +69,13 @@ class FavorAction extends Action
if ($this->boolean('ajax')) {
common_start_html('text/xml;charset=utf-8', true);
- common_element_start('head');
- common_element('title', null, _('Disfavor favorite'));
- common_element_end('head');
- common_element_start('body');
+ $this->elementStart('head');
+ $this->element('title', null, _('Disfavor favorite'));
+ $this->elementEnd('head');
+ $this->elementStart('body');
common_disfavor_form($notice);
- common_element_end('body');
- common_element_end('html');
+ $this->elementEnd('body');
+ $this->elementEnd('html');
} else {
common_redirect(common_local_url('showfavorites',
array('nickname' => $user->nickname)));
diff --git a/actions/favorited.php b/actions/favorited.php
index 71a9e026e..936905732 100644
--- a/actions/favorited.php
+++ b/actions/favorited.php
@@ -43,9 +43,9 @@ class FavoritedAction extends StreamAction
{
$instr = $this->get_instructions();
$output = common_markup_to_html($instr);
- common_element_start('div', 'instructions');
- common_raw($output);
- common_element_end('div');
+ $this->elementStart('div', 'instructions');
+ $this->raw($output);
+ $this->elementEnd('div');
$this->public_views_menu();
}
@@ -81,7 +81,7 @@ class FavoritedAction extends StreamAction
$notice = new Notice;
$notice->query(sprintf($qry, common_config('popular', 'dropoff')));
- common_element_start('ul', array('id' => 'notices'));
+ $this->elementStart('ul', array('id' => 'notices'));
$cnt = 0;
@@ -96,7 +96,7 @@ class FavoritedAction extends StreamAction
$item->show();
}
- common_element_end('ul');
+ $this->elementEnd('ul');
common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
$page, 'favorited');
diff --git a/actions/favoritesrss.php b/actions/favoritesrss.php
index 8c7ce52bf..3f4ffc63a 100644
--- a/actions/favoritesrss.php
+++ b/actions/favoritesrss.php
@@ -34,7 +34,7 @@ class FavoritesrssAction extends Rss10Action
$this->user = User::staticGet('nickname', $nickname);
if (!$this->user) {
- common_user_error(_('No such user.'));
+ $this->clientError(_('No such user.'));
return false;
} else {
return true;
diff --git a/actions/featured.php b/actions/featured.php
index 2bf8b0b81..035622691 100644
--- a/actions/featured.php
+++ b/actions/featured.php
@@ -44,9 +44,9 @@ class FeaturedAction extends StreamAction
{
$instr = $this->get_instructions();
$output = common_markup_to_html($instr);
- common_element_start('div', 'instructions');
- common_raw($output);
- common_element_end('div');
+ $this->elementStart('div', 'instructions');
+ $this->raw($output);
+ $this->elementEnd('div');
$this->public_views_menu();
}
diff --git a/actions/finishaddopenid.php b/actions/finishaddopenid.php
index 0ce1680aa..708e8d4bf 100644
--- a/actions/finishaddopenid.php
+++ b/actions/finishaddopenid.php
@@ -28,7 +28,7 @@ class FinishaddopenidAction extends Action
{
parent::handle($args);
if (!common_logged_in()) {
- common_user_error(_('Not logged in.'));
+ $this->clientError(_('Not logged in.'));
} else {
$this->try_login();
}
@@ -101,7 +101,7 @@ class FinishaddopenidAction extends Action
function message($msg)
{
common_show_header(_('OpenID Login'));
- common_element('p', null, $msg);
+ $this->element('p', null, $msg);
common_show_footer();
}
}
diff --git a/actions/finishopenidlogin.php b/actions/finishopenidlogin.php
index bdb8516a3..bc33ac330 100644
--- a/actions/finishopenidlogin.php
+++ b/actions/finishopenidlogin.php
@@ -28,7 +28,7 @@ class FinishopenidloginAction extends Action
{
parent::handle($args);
if (common_logged_in()) {
- common_user_error(_('Already logged in.'));
+ $this->clientError(_('Already logged in.'));
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
@@ -57,10 +57,10 @@ class FinishopenidloginAction extends Action
function show_top($error=null)
{
if ($error) {
- common_element('div', array('class' => 'error'), $error);
+ $this->element('div', array('class' => 'error'), $error);
} else {
global $config;
- common_element('div', 'instructions',
+ $this->element('div', 'instructions',
sprintf(_('This is the first time you\'ve logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one.'), $config['site']['name']));
}
}
@@ -70,36 +70,36 @@ class FinishopenidloginAction extends Action
common_show_header(_('OpenID Account Setup'), null, $error,
array($this, 'show_top'));
- common_element_start('form', array('method' => 'post',
+ $this->elementStart('form', array('method' => 'post',
'id' => 'account_connect',
'action' => common_local_url('finishopenidlogin')));
- common_hidden('token', common_session_token());
- common_element('h2', null,
+ $this->hidden('token', common_session_token());
+ $this->element('h2', null,
_('Create new account'));
- common_element('p', null,
+ $this->element('p', null,
_('Create a new user with this nickname.'));
- common_input('newname', _('New nickname'),
+ $this->input('newname', _('New nickname'),
($username) ? $username : '',
_('1-64 lowercase letters or numbers, no punctuation or spaces'));
- common_element_start('p');
- common_element('input', array('type' => 'checkbox',
+ $this->elementStart('p');
+ $this->element('input', array('type' => 'checkbox',
'id' => 'license',
'name' => 'license',
'value' => 'true'));
- common_text(_('My text and files are available under '));
- common_element('a', array(href => common_config('license', 'url')),
+ $this->text(_('My text and files are available under '));
+ $this->element('a', array(href => common_config('license', 'url')),
common_config('license', 'title'));
- common_text(_(' except this private data: password, email address, IM address, phone number.'));
- common_element_end('p');
- common_submit('create', _('Create'));
- common_element('h2', null,
+ $this->text(_(' except this private data: password, email address, IM address, phone number.'));
+ $this->elementEnd('p');
+ $this->submit('create', _('Create'));
+ $this->element('h2', null,
_('Connect existing account'));
- common_element('p', null,
+ $this->element('p', null,
_('If you already have an account, login with your username and password to connect it to your OpenID.'));
- common_input('nickname', _('Existing nickname'));
- common_password('password', _('Password'));
- common_submit('connect', _('Connect'));
- common_element_end('form');
+ $this->input('nickname', _('Existing nickname'));
+ $this->password('password', _('Password'));
+ $this->submit('connect', _('Connect'));
+ $this->elementEnd('form');
common_show_footer();
}
@@ -154,7 +154,7 @@ class FinishopenidloginAction extends Action
function message($msg)
{
common_show_header(_('OpenID Login'));
- common_element('p', null, $msg);
+ $this->element('p', null, $msg);
common_show_footer();
}
@@ -179,7 +179,7 @@ class FinishopenidloginAction extends Action
# FIXME: save invite code before redirect, and check here
if (common_config('site', 'closed') || common_config('site', 'inviteonly')) {
- common_user_error(_('Registration not allowed.'));
+ $this->clientError(_('Registration not allowed.'));
return;
}
@@ -205,7 +205,7 @@ class FinishopenidloginAction extends Action
list($display, $canonical, $sreg) = $this->get_saved_values();
if (!$display || !$canonical) {
- common_server_error(_('Stored OpenID not found.'));
+ $this->serverError(_('Stored OpenID not found.'));
return;
}
@@ -214,7 +214,7 @@ class FinishopenidloginAction extends Action
$other = oid_get_user($canonical);
if ($other) {
- common_server_error(_('Creating new account for OpenID that already has a user.'));
+ $this->serverError(_('Creating new account for OpenID that already has a user.'));
return;
}
@@ -274,14 +274,14 @@ class FinishopenidloginAction extends Action
list($display, $canonical, $sreg) = $this->get_saved_values();
if (!$display || !$canonical) {
- common_server_error(_('Stored OpenID not found.'));
+ $this->serverError(_('Stored OpenID not found.'));
return;
}
$result = oid_link_user($user->id, $canonical, $display);
if (!$result) {
- common_server_error(_('Error connecting user to OpenID.'));
+ $this->serverError(_('Error connecting user to OpenID.'));
return;
}
diff --git a/actions/finishremotesubscribe.php b/actions/finishremotesubscribe.php
index cee3a1818..f9094a50c 100644
--- a/actions/finishremotesubscribe.php
+++ b/actions/finishremotesubscribe.php
@@ -30,14 +30,14 @@ class FinishremotesubscribeAction extends Action
parent::handle($args);
if (common_logged_in()) {
- common_user_error(_('You can use the local subscription!'));
+ $this->clientError(_('You can use the local subscription!'));
return;
}
$omb = $_SESSION['oauth_authorization_request'];
if (!$omb) {
- common_user_error(_('Not expecting this response!'));
+ $this->clientError(_('Not expecting this response!'));
return;
}
@@ -51,38 +51,38 @@ class FinishremotesubscribeAction extends Action
# I think this is the success metric
if ($token != $omb['token']) {
- common_user_error(_('Not authorized.'));
+ $this->clientError(_('Not authorized.'));
return;
}
$version = $req->get_parameter('omb_version');
if ($version != OMB_VERSION_01) {
- common_user_error(_('Unknown version of OMB protocol.'));
+ $this->clientError(_('Unknown version of OMB protocol.'));
return;
}
$nickname = $req->get_parameter('omb_listener_nickname');
if (!$nickname) {
- common_user_error(_('No nickname provided by remote server.'));
+ $this->clientError(_('No nickname provided by remote server.'));
return;
}
$profile_url = $req->get_parameter('omb_listener_profile');
if (!$profile_url) {
- common_user_error(_('No profile URL returned by server.'));
+ $this->clientError(_('No profile URL returned by server.'));
return;
}
if (!Validate::uri($profile_url, array('allowed_schemes' => array('http', 'https')))) {
- common_user_error(_('Invalid profile URL returned by server.'));
+ $this->clientError(_('Invalid profile URL returned by server.'));
return;
}
if ($profile_url == common_local_url('showstream', array('nickname' => $nickname))) {
- common_user_error(_('You can use the local subscription!'));
+ $this->clientError(_('You can use the local subscription!'));
return;
}
@@ -91,14 +91,14 @@ class FinishremotesubscribeAction extends Action
$user = User::staticGet('nickname', $omb['listenee']);
if (!$user) {
- common_user_error(_('User being listened to doesn\'t exist.'));
+ $this->clientError(_('User being listened to doesn\'t exist.'));
return;
}
$other = User::staticGet('uri', $omb['listener']);
if ($other) {
- common_user_error(_('You can use the local subscription!'));
+ $this->clientError(_('You can use the local subscription!'));
return;
}
@@ -111,7 +111,7 @@ class FinishremotesubscribeAction extends Action
list($newtok, $newsecret) = $this->access_token($omb);
if (!$newtok || !$newsecret) {
- common_user_error(_('Couldn\'t convert request tokens to access tokens.'));
+ $this->clientError(_('Couldn\'t convert request tokens to access tokens.'));
return;
}
@@ -155,7 +155,7 @@ class FinishremotesubscribeAction extends Action
$profile->created = DB_DataObject_Cast::dateTime(); # current time
$id = $profile->insert();
if (!$id) {
- common_server_error(_('Error inserting new profile'));
+ $this->serverError(_('Error inserting new profile'));
return;
}
$remote->id = $id;
@@ -163,7 +163,7 @@ class FinishremotesubscribeAction extends Action
if ($avatar_url) {
if (!$this->add_avatar($profile, $avatar_url)) {
- common_server_error(_('Error inserting avatar'));
+ $this->serverError(_('Error inserting avatar'));
return;
}
}
@@ -173,19 +173,19 @@ class FinishremotesubscribeAction extends Action
if ($exists) {
if (!$remote->update($orig_remote)) {
- common_server_error(_('Error updating remote profile'));
+ $this->serverError(_('Error updating remote profile'));
return;
}
} else {
$remote->created = DB_DataObject_Cast::dateTime(); # current time
if (!$remote->insert()) {
- common_server_error(_('Error inserting remote profile'));
+ $this->serverError(_('Error inserting remote profile'));
return;
}
}
if ($user->hasBlocked($profile)) {
- $this->client_error(_('That user has blocked you from subscribing.'));
+ $this->clientError(_('That user has blocked you from subscribing.'));
return;
}
@@ -215,7 +215,7 @@ class FinishremotesubscribeAction extends Action
if (!$result) {
common_log_db_error($sub, ($sub_exists) ? 'UPDATE' : 'INSERT', __FILE__);
- common_user_error(_('Couldn\'t insert new subscription.'));
+ $this->clientError(_('Couldn\'t insert new subscription.'));
return;
}
diff --git a/actions/foaf.php b/actions/foaf.php
index 30e98960c..9fa321d4a 100644
--- a/actions/foaf.php
+++ b/actions/foaf.php
@@ -26,7 +26,7 @@ define('BOTH', 0);
class FoafAction extends Action
{
- function is_readonly()
+ function isReadOnly()
{
return true;
}
@@ -40,21 +40,21 @@ class FoafAction extends Action
$user = User::staticGet('nickname', $nickname);
if (!$user) {
- common_user_error(_('No such user.'), 404);
+ $this->clientError(_('No such user.'), 404);
return;
}
$profile = $user->getProfile();
if (!$profile) {
- common_server_error(_('User has no profile.'), 500);
+ $this->serverError(_('User has no profile.'), 500);
return;
}
header('Content-Type: application/rdf+xml');
common_start_xml();
- common_element_start('rdf:RDF', array('xmlns:rdf' =>
+ $this->elementStart('rdf:RDF', array('xmlns:rdf' =>
'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
'xmlns:rdfs' =>
'http://www.w3.org/2000/01/rdf-schema#',
@@ -67,25 +67,25 @@ class FoafAction extends Action
$this->show_ppd('', $user->uri);
# XXX: might not be a person
- common_element_start('Person', array('rdf:about' =>
+ $this->elementStart('Person', array('rdf:about' =>
$user->uri));
- common_element('mbox_sha1sum', null, sha1('mailto:' . $user->email));
+ $this->element('mbox_sha1sum', null, sha1('mailto:' . $user->email));
if ($profile->fullname) {
- common_element('name', null, $profile->fullname);
+ $this->element('name', null, $profile->fullname);
}
if ($profile->homepage) {
- common_element('homepage', array('rdf:resource' => $profile->homepage));
+ $this->element('homepage', array('rdf:resource' => $profile->homepage));
}
if ($profile->bio) {
- common_element('rdfs:comment', null, $profile->bio);
+ $this->element('rdfs:comment', null, $profile->bio);
}
# XXX: more structured location data
if ($profile->location) {
- common_element_start('based_near');
- common_element_start('geo:SpatialThing');
- common_element('name', null, $profile->location);
- common_element_end('geo:SpatialThing');
- common_element_end('based_near');
+ $this->elementStart('based_near');
+ $this->elementStart('geo:SpatialThing');
+ $this->element('name', null, $profile->location);
+ $this->elementEnd('geo:SpatialThing');
+ $this->elementEnd('based_near');
}
$this->show_microblogging_account($profile, common_root_url());
@@ -93,18 +93,18 @@ class FoafAction extends Action
$avatar = $profile->getOriginalAvatar();
if ($avatar) {
- common_element_start('img');
- common_element_start('Image', array('rdf:about' => $avatar->url));
+ $this->elementStart('img');
+ $this->elementStart('Image', array('rdf:about' => $avatar->url));
foreach (array(AVATAR_PROFILE_SIZE, AVATAR_STREAM_SIZE, AVATAR_MINI_SIZE) as $size) {
$scaled = $profile->getAvatar($size);
if (!$scaled->original) { # sometimes the original has one of our scaled sizes
- common_element_start('thumbnail');
- common_element('Image', array('rdf:about' => $scaled->url));
- common_element_end('thumbnail');
+ $this->elementStart('thumbnail');
+ $this->element('Image', array('rdf:about' => $scaled->url));
+ $this->elementEnd('thumbnail');
}
}
- common_element_end('Image');
- common_element_end('img');
+ $this->elementEnd('Image');
+ $this->elementEnd('img');
}
# Get people user is subscribed to
@@ -126,7 +126,7 @@ class FoafAction extends Action
common_debug('Got a bad subscription: '.print_r($sub,true));
continue;
}
- common_element('knows', array('rdf:resource' => $other->uri));
+ $this->element('knows', array('rdf:resource' => $other->uri));
$person[$other->uri] = array(LISTENEE, $other);
}
}
@@ -156,7 +156,7 @@ class FoafAction extends Action
}
}
- common_element_end('Person');
+ $this->elementEnd('Person');
foreach ($person as $uri => $p) {
$foaf_url = null;
@@ -164,44 +164,44 @@ class FoafAction extends Action
$foaf_url = common_local_url('foaf', array('nickname' => $p[1]->nickname));
}
$profile = Profile::staticGet($p[1]->id);
- common_element_start('Person', array('rdf:about' => $uri));
+ $this->elementStart('Person', array('rdf:about' => $uri));
if ($p[0] == LISTENER || $p[0] == BOTH) {
- common_element('knows', array('rdf:resource' => $user->uri));
+ $this->element('knows', array('rdf:resource' => $user->uri));
}
$this->show_microblogging_account($profile, ($p[1] instanceof User) ?
common_root_url() : null);
if ($foaf_url) {
- common_element('rdfs:seeAlso', array('rdf:resource' => $foaf_url));
+ $this->element('rdfs:seeAlso', array('rdf:resource' => $foaf_url));
}
- common_element_end('Person');
+ $this->elementEnd('Person');
if ($foaf_url) {
$this->show_ppd($foaf_url, $uri);
}
}
- common_element_end('rdf:RDF');
+ $this->elementEnd('rdf:RDF');
}
function show_ppd($foaf_url, $person_uri)
{
- common_element_start('PersonalProfileDocument', array('rdf:about' => $foaf_url));
- common_element('maker', array('rdf:resource' => $person_uri));
- common_element('primaryTopic', array('rdf:resource' => $person_uri));
- common_element_end('PersonalProfileDocument');
+ $this->elementStart('PersonalProfileDocument', array('rdf:about' => $foaf_url));
+ $this->element('maker', array('rdf:resource' => $person_uri));
+ $this->element('primaryTopic', array('rdf:resource' => $person_uri));
+ $this->elementEnd('PersonalProfileDocument');
}
function show_microblogging_account($profile, $service=null)
{
# Their account
- common_element_start('holdsAccount');
- common_element_start('OnlineAccount');
+ $this->elementStart('holdsAccount');
+ $this->elementStart('OnlineAccount');
if ($service) {
- common_element('accountServiceHomepage', array('rdf:resource' =>
+ $this->element('accountServiceHomepage', array('rdf:resource' =>
$service));
}
- common_element('accountName', null, $profile->nickname);
- common_element('homepage', array('rdf:resource' => $profile->profileurl));
- common_element_end('OnlineAccount');
- common_element_end('holdsAccount');
+ $this->element('accountName', null, $profile->nickname);
+ $this->element('homepage', array('rdf:resource' => $profile->profileurl));
+ $this->elementEnd('OnlineAccount');
+ $this->elementEnd('holdsAccount');
}
}
diff --git a/actions/imsettings.php b/actions/imsettings.php
index 8ecf200ec..14df3451a 100644
--- a/actions/imsettings.php
+++ b/actions/imsettings.php
@@ -34,57 +34,57 @@ class ImsettingsAction extends SettingsAction
{
$user = common_current_user();
$this->form_header(_('IM Settings'), $msg, $success);
- common_element_start('form', array('method' => 'post',
+ $this->elementStart('form', array('method' => 'post',
'id' => 'imsettings',
'action' =>
common_local_url('imsettings')));
- common_hidden('token', common_session_token());
+ $this->hidden('token', common_session_token());
- common_element('h2', null, _('Address'));
+ $this->element('h2', null, _('Address'));
if ($user->jabber) {
- common_element_start('p');
- common_element('span', 'address confirmed', $user->jabber);
- common_element('span', 'input_instructions',
+ $this->elementStart('p');
+ $this->element('span', 'address confirmed', $user->jabber);
+ $this->element('span', 'input_instructions',
_('Current confirmed Jabber/GTalk address.'));
- common_hidden('jabber', $user->jabber);
- common_element_end('p');
- common_submit('remove', _('Remove'));
+ $this->hidden('jabber', $user->jabber);
+ $this->elementEnd('p');
+ $this->submit('remove', _('Remove'));
} else {
$confirm = $this->get_confirmation();
if ($confirm) {
- common_element_start('p');
- common_element('span', 'address unconfirmed', $confirm->address);
- common_element('span', 'input_instructions',
+ $this->elementStart('p');
+ $this->element('span', 'address unconfirmed', $confirm->address);
+ $this->element('span', 'input_instructions',
sprintf(_('Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)'), jabber_daemon_address()));
- common_hidden('jabber', $confirm->address);
- common_element_end('p');
- common_submit('cancel', _('Cancel'));
+ $this->hidden('jabber', $confirm->address);
+ $this->elementEnd('p');
+ $this->submit('cancel', _('Cancel'));
} else {
- common_input('jabber', _('IM Address'),
+ $this->input('jabber', _('IM Address'),
($this->arg('jabber')) ? $this->arg('jabber') : null,
sprintf(_('Jabber or GTalk address, like "UserName@example.org". First, make sure to add %s to your buddy list in your IM client or on GTalk.'), jabber_daemon_address()));
- common_submit('add', _('Add'));
+ $this->submit('add', _('Add'));
}
}
- common_element('h2', null, _('Preferences'));
+ $this->element('h2', null, _('Preferences'));
- common_checkbox('jabbernotify',
+ $this->checkbox('jabbernotify',
_('Send me notices through Jabber/GTalk.'),
$user->jabbernotify);
- common_checkbox('updatefrompresence',
+ $this->checkbox('updatefrompresence',
_('Post a notice when my Jabber/GTalk status changes.'),
$user->updatefrompresence);
- common_checkbox('jabberreplies',
+ $this->checkbox('jabberreplies',
_('Send me replies through Jabber/GTalk from people I\'m not subscribed to.'),
$user->jabberreplies);
- common_checkbox('jabbermicroid',
+ $this->checkbox('jabbermicroid',
_('Publish a MicroID for my Jabber/GTalk address.'),
$user->jabbermicroid);
- common_submit('save', _('Save'));
+ $this->submit('save', _('Save'));
- common_element_end('form');
+ $this->elementEnd('form');
common_show_footer();
}
@@ -149,7 +149,7 @@ class ImsettingsAction extends SettingsAction
if ($result === false) {
common_log_db_error($user, 'UPDATE', __FILE__);
- common_server_error(_('Couldn\'t update user.'));
+ $this->serverError(_('Couldn\'t update user.'));
return;
}
@@ -199,7 +199,7 @@ class ImsettingsAction extends SettingsAction
if ($result === false) {
common_log_db_error($confirm, 'INSERT', __FILE__);
- common_server_error(_('Couldn\'t insert confirmation code.'));
+ $this->serverError(_('Couldn\'t insert confirmation code.'));
return;
}
@@ -231,7 +231,7 @@ class ImsettingsAction extends SettingsAction
if (!$result) {
common_log_db_error($confirm, 'DELETE', __FILE__);
- $this->server_error(_('Couldn\'t delete email confirmation.'));
+ $this->serverError(_('Couldn\'t delete email confirmation.'));
return;
}
@@ -257,7 +257,7 @@ class ImsettingsAction extends SettingsAction
$result = $user->updateKeys($original);
if (!$result) {
common_log_db_error($user, 'UPDATE', __FILE__);
- common_server_error(_('Couldn\'t update user.'));
+ $this->serverError(_('Couldn\'t update user.'));
return;
}
$user->query('COMMIT');
diff --git a/actions/invite.php b/actions/invite.php
index 80e022a3d..95d96bcde 100644
--- a/actions/invite.php
+++ b/actions/invite.php
@@ -22,7 +22,7 @@ if (!defined('LACONICA')) { exit(1); }
class InviteAction extends Action
{
- function is_readonly()
+ function isReadOnly()
{
return false;
}
@@ -31,7 +31,7 @@ class InviteAction extends Action
{
parent::handle($args);
if (!common_logged_in()) {
- $this->client_error(sprintf(_('You must be logged in to invite other users to use %s'),
+ $this->clientError(sprintf(_('You must be logged in to invite other users to use %s'),
common_config('site', 'name')));
return;
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
@@ -89,29 +89,29 @@ class InviteAction extends Action
common_show_header(_('Invitation(s) sent'));
if ($already) {
- common_element('p', null, _('You are already subscribed to these users:'));
- common_element_start('ul');
+ $this->element('p', null, _('You are already subscribed to these users:'));
+ $this->elementStart('ul');
foreach ($already as $other) {
- common_element('li', null, sprintf(_('%s (%s)'), $other->nickname, $other->email));
+ $this->element('li', null, sprintf(_('%s (%s)'), $other->nickname, $other->email));
}
- common_element_end('ul');
+ $this->elementEnd('ul');
}
if ($subbed) {
- common_element('p', null, _('These people are already users and you were automatically subscribed to them:'));
- common_element_start('ul');
+ $this->element('p', null, _('These people are already users and you were automatically subscribed to them:'));
+ $this->elementStart('ul');
foreach ($subbed as $other) {
- common_element('li', null, sprintf(_('%s (%s)'), $other->nickname, $other->email));
+ $this->element('li', null, sprintf(_('%s (%s)'), $other->nickname, $other->email));
}
- common_element_end('ul');
+ $this->elementEnd('ul');
}
if ($sent) {
- common_element('p', null, _('Invitation(s) sent to the following people:'));
- common_element_start('ul');
+ $this->element('p', null, _('Invitation(s) sent to the following people:'));
+ $this->elementStart('ul');
foreach ($sent as $other) {
- common_element('li', null, $other);
+ $this->element('li', null, $other);
}
- common_element_end('ul');
- common_element('p', null, _('You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!'));
+ $this->elementEnd('ul');
+ $this->element('p', null, _('You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!'));
}
common_show_footer();
}
@@ -119,12 +119,12 @@ class InviteAction extends Action
function show_top($error=null)
{
if ($error) {
- common_element('p', 'error', $error);
+ $this->element('p', 'error', $error);
} else {
- common_element_start('div', 'instructions');
- common_element('p', null,
+ $this->elementStart('div', 'instructions');
+ $this->element('p', null,
_('Use this form to invite your friends and colleagues to use this service.'));
- common_element_end('div');
+ $this->elementEnd('div');
}
}
@@ -135,22 +135,22 @@ class InviteAction extends Action
common_show_header(_('Invite new users'), null, $error, array($this, 'show_top'));
- common_element_start('form', array('method' => 'post',
+ $this->elementStart('form', array('method' => 'post',
'id' => 'invite',
'action' => common_local_url('invite')));
- common_hidden('token', common_session_token());
+ $this->hidden('token', common_session_token());
- common_textarea('addresses', _('Email addresses'),
+ $this->textarea('addresses', _('Email addresses'),
$this->trimmed('addresses'),
_('Addresses of friends to invite (one per line)'));
- common_textarea('personal', _('Personal message'),
+ $this->textarea('personal', _('Personal message'),
$this->trimmed('personal'),
_('Optionally add a personal message to the invitation.'));
- common_submit('send', _('Send'));
+ $this->submit('send', _('Send'));
- common_element_end('form');
+ $this->elementEnd('form');
common_show_footer();
}
diff --git a/actions/login.php b/actions/login.php
index 8600d44fd..23ab16676 100644
--- a/actions/login.php
+++ b/actions/login.php
@@ -21,8 +21,9 @@ if (!defined('LACONICA')) { exit(1); }
class LoginAction extends Action
{
-
- function is_readonly()
+ var $error = null;
+
+ function isReadOnly()
{
return true;
}
@@ -31,22 +32,22 @@ class LoginAction extends Action
{
parent::handle($args);
if (common_is_real_login()) {
- common_user_error(_('Already logged in.'));
+ $this->clientError(_('Already logged in.'));
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
- $this->check_login();
+ $this->checkLogin();
} else {
- $this->show_form();
+ $this->showForm();
}
}
- function check_login()
+ function checkLogin()
{
# XXX: login throttle
# CSRF protection - token set in common_notice_form()
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
- $this->client_error(_('There was a problem with your session token. Try again, please.'));
+ $this->clientError(_('There was a problem with your session token. Try again, please.'));
return;
}
@@ -55,7 +56,7 @@ class LoginAction extends Action
if (common_check_user($nickname, $password)) {
# success!
if (!common_set_user($nickname)) {
- common_server_error(_('Error setting user.'));
+ $this->serverError(_('Error setting user.'));
return;
}
common_real_login(true);
@@ -75,13 +76,13 @@ class LoginAction extends Action
}
common_redirect($url);
} else {
- $this->show_form(_('Incorrect username or password.'));
+ $this->showForm(_('Incorrect username or password.'));
return;
}
# success!
if (!common_set_user($user)) {
- common_server_error(_('Error setting user.'));
+ $this->serverError(_('Error setting user.'));
return;
}
@@ -104,28 +105,48 @@ class LoginAction extends Action
common_redirect($url);
}
- function show_form($error=null)
+ function showForm($error=null)
{
- common_show_header(_('Login'), null, $error, array($this, 'show_top'));
- common_element_start('form', array('method' => 'post',
+ $this->error = $error;
+ $this->showPage();
+ }
+
+ function title()
+ {
+ return _('Login');
+ }
+
+ function showPageNotice()
+ {
+ if ($this->error) {
+ $this->element('p', 'error', $this->error);
+ } else {
+ $instr = $this->getInstructions();
+ $output = common_markup_to_html($instr);
+ $this->raw($output);
+ }
+ }
+
+ function showContent()
+ {
+ $this->elementStart('form', array('method' => 'post',
'id' => 'login',
'action' => common_local_url('login')));
- common_input('nickname', _('Nickname'));
- common_password('password', _('Password'));
- common_checkbox('rememberme', _('Remember me'), false,
+ $this->input('nickname', _('Nickname'));
+ $this->password('password', _('Password'));
+ $this->checkbox('rememberme', _('Remember me'), false,
_('Automatically login in the future; ' .
'not for shared computers!'));
- common_submit('submit', _('Login'));
- common_hidden('token', common_session_token());
- common_element_end('form');
- common_element_start('p');
- common_element('a', array('href' => common_local_url('recoverpassword')),
+ $this->submit('submit', _('Login'));
+ $this->hidden('token', common_session_token());
+ $this->elementEnd('form');
+ $this->elementStart('p');
+ $this->element('a', array('href' => common_local_url('recoverpassword')),
_('Lost or forgotten password?'));
- common_element_end('p');
- common_show_footer();
+ $this->elementEnd('p');
}
- function get_instructions()
+ function getInstructions()
{
if (common_logged_in() &&
!common_is_real_login() &&
@@ -143,17 +164,4 @@ class LoginAction extends Action
'try [OpenID](%%action.openidlogin%%). ');
}
}
-
- function show_top($error=null)
- {
- if ($error) {
- common_element('p', 'error', $error);
- } else {
- $instr = $this->get_instructions();
- $output = common_markup_to_html($instr);
- common_element_start('div', 'instructions');
- common_raw($output);
- common_element_end('div');
- }
- }
}
diff --git a/actions/logout.php b/actions/logout.php
index 201378730..86d6270ab 100644
--- a/actions/logout.php
+++ b/actions/logout.php
@@ -24,7 +24,7 @@ require_once(INSTALLDIR.'/lib/openid.php');
class LogoutAction extends Action
{
- function is_readonly()
+ function isReadOnly()
{
return true;
}
@@ -33,7 +33,7 @@ class LogoutAction extends Action
{
parent::handle($args);
if (!common_logged_in()) {
- common_user_error(_('Not logged in.'));
+ $this->clientError(_('Not logged in.'));
} else {
common_set_user(null);
common_real_login(false); # not logged in
diff --git a/actions/microsummary.php b/actions/microsummary.php
index 13ddc4e3e..b46c5bee5 100644
--- a/actions/microsummary.php
+++ b/actions/microsummary.php
@@ -31,14 +31,14 @@ class MicrosummaryAction extends Action
$user = User::staticGet('nickname', $nickname);
if (!$user) {
- $this->client_error(_('No such user'), 404);
+ $this->clientError(_('No such user'), 404);
return;
}
$notice = $user->getCurrentNotice();
if (!$notice) {
- $this->client_error(_('No current status'), 404);
+ $this->clientError(_('No current status'), 404);
}
header('Content-Type: text/plain');
diff --git a/actions/newmessage.php b/actions/newmessage.php
index 27fa9d518..510a5f8f3 100644
--- a/actions/newmessage.php
+++ b/actions/newmessage.php
@@ -27,7 +27,7 @@ class NewmessageAction extends Action
parent::handle($args);
if (!common_logged_in()) {
- $this->client_error(_('Not logged in.'), 403);
+ $this->clientError(_('Not logged in.'), 403);
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$this->save_new_message();
} else {
@@ -71,10 +71,10 @@ class NewmessageAction extends Action
$this->show_form(_('No recipient specified.'));
return;
} else if (!$user->mutuallySubscribed($other)) {
- $this->client_error(_('You can\'t send a message to this user.'), 404);
+ $this->clientError(_('You can\'t send a message to this user.'), 404);
return;
} else if ($user->id == $other->id) {
- $this->client_error(_('Don\'t send a message to yourself; just say it to yourself quietly instead.'), 403);
+ $this->clientError(_('Don\'t send a message to yourself; just say it to yourself quietly instead.'), 403);
return;
}
@@ -113,12 +113,12 @@ class NewmessageAction extends Action
$other = User::staticGet('id', $to);
if (!$other) {
- $this->client_error(_('No such user'), 404);
+ $this->clientError(_('No such user'), 404);
return;
}
if (!$user->mutuallySubscribed($other)) {
- $this->client_error(_('You can\'t send a message to this user.'), 404);
+ $this->clientError(_('You can\'t send a message to this user.'), 404);
return;
}
@@ -127,7 +127,7 @@ class NewmessageAction extends Action
array($this, 'show_top'));
if ($msg) {
- common_element('p', array('id'=>'error'), $msg);
+ $this->element('p', array('id'=>'error'), $msg);
}
common_show_footer();
diff --git a/actions/newnotice.php b/actions/newnotice.php
index c412e893d..cb02854a1 100644
--- a/actions/newnotice.php
+++ b/actions/newnotice.php
@@ -29,13 +29,13 @@ class NewnoticeAction extends Action
parent::handle($args);
if (!common_logged_in()) {
- common_user_error(_('Not logged in.'));
+ $this->clientError(_('Not logged in.'));
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
# CSRF protection - token set in common_notice_form()
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
- $this->client_error(_('There was a problem with your session token. Try again, please.'));
+ $this->clientError(_('There was a problem with your session token. Try again, please.'));
return;
}
@@ -92,13 +92,13 @@ class NewnoticeAction extends Action
if ($this->boolean('ajax')) {
common_start_html('text/xml;charset=utf-8', true);
- common_element_start('head');
- common_element('title', null, _('Notice posted'));
- common_element_end('head');
- common_element_start('body');
+ $this->elementStart('head');
+ $this->element('title', null, _('Notice posted'));
+ $this->elementEnd('head');
+ $this->elementStart('body');
$this->show_notice($notice);
- common_element_end('body');
- common_element_end('html');
+ $this->elementEnd('body');
+ $this->elementEnd('html');
} else {
$returnto = $this->trimmed('returnto');
@@ -116,13 +116,13 @@ class NewnoticeAction extends Action
function ajax_error_msg($msg)
{
common_start_html('text/xml;charset=utf-8', true);
- common_element_start('head');
- common_element('title', null, _('Ajax Error'));
- common_element_end('head');
- common_element_start('body');
- common_element('p', array('id' => 'error'), $msg);
- common_element_end('body');
- common_element_end('html');
+ $this->elementStart('head');
+ $this->element('title', null, _('Ajax Error'));
+ $this->elementEnd('head');
+ $this->elementStart('body');
+ $this->element('p', array('id' => 'error'), $msg);
+ $this->elementEnd('body');
+ $this->elementEnd('html');
}
function show_top($content=null)
@@ -147,7 +147,7 @@ class NewnoticeAction extends Action
common_show_header(_('New notice'), null, $content,
array($this, 'show_top'));
if ($msg) {
- common_element('p', array('id' => 'error'), $msg);
+ $this->element('p', array('id' => 'error'), $msg);
}
common_show_footer();
}
diff --git a/actions/noticesearch.php b/actions/noticesearch.php
index b36fc8ad2..336e39bd3 100644
--- a/actions/noticesearch.php
+++ b/actions/noticesearch.php
@@ -58,7 +58,7 @@ class NoticesearchAction extends SearchAction
}
if ($cnt > 0) {
$terms = preg_split('/[\s,]+/', $q);
- common_element_start('ul', array('id' => 'notices'));
+ $this->elementStart('ul', array('id' => 'notices'));
for ($i = 0; $i < min($cnt, NOTICES_PER_PAGE); $i++) {
if ($notice->fetch()) {
$this->show_notice($notice, $terms);
@@ -67,9 +67,9 @@ class NoticesearchAction extends SearchAction
break;
}
}
- common_element_end('ul');
+ $this->elementEnd('ul');
} else {
- common_element('p', 'error', _('No results'));
+ $this->element('p', 'error', _('No results'));
}
common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
@@ -82,7 +82,7 @@ class NoticesearchAction extends SearchAction
$q = $arr[0];
}
if ($q) {
- common_element('link', array('rel' => 'alternate',
+ $this->element('link', array('rel' => 'alternate',
'href' => common_local_url('noticesearchrss',
array('q' => $q)),
'type' => 'application/rss+xml',
@@ -97,62 +97,62 @@ class NoticesearchAction extends SearchAction
$profile = $notice->getProfile();
if (!$profile) {
common_log_db_error($notice, 'SELECT', __FILE__);
- $this->server_error(_('Notice without matching profile'));
+ $this->serverError(_('Notice without matching profile'));
return;
}
# XXX: RDFa
- common_element_start('li', array('class' => 'notice_single',
+ $this->elementStart('li', array('class' => 'notice_single',
'id' => 'notice-' . $notice->id));
$avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
- common_element_start('a', array('href' => $profile->profileurl));
- common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_STREAM_SIZE),
+ $this->elementStart('a', array('href' => $profile->profileurl));
+ $this->element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_STREAM_SIZE),
'class' => 'avatar stream',
'width' => AVATAR_STREAM_SIZE,
'height' => AVATAR_STREAM_SIZE,
'alt' =>
($profile->fullname) ? $profile->fullname :
$profile->nickname));
- common_element_end('a');
- common_element('a', array('href' => $profile->profileurl,
+ $this->elementEnd('a');
+ $this->element('a', array('href' => $profile->profileurl,
'class' => 'nickname'),
$profile->nickname);
# FIXME: URL, image, video, audio
- common_element_start('p', array('class' => 'content'));
+ $this->elementStart('p', array('class' => 'content'));
if ($notice->rendered) {
- common_raw($this->highlight($notice->rendered, $terms));
+ $this->raw($this->highlight($notice->rendered, $terms));
} else {
# XXX: may be some uncooked notices in the DB,
# we cook them right now. This should probably disappear in future
# versions (>> 0.4.x)
- common_raw($this->highlight(common_render_content($notice->content, $notice), $terms));
+ $this->raw($this->highlight(common_render_content($notice->content, $notice), $terms));
}
- common_element_end('p');
+ $this->elementEnd('p');
$noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
- common_element_start('p', 'time');
- common_element('a', array('class' => 'permalink',
+ $this->elementStart('p', 'time');
+ $this->element('a', array('class' => 'permalink',
'href' => $noticeurl,
'title' => common_exact_date($notice->created)),
common_date_string($notice->created));
if ($notice->reply_to) {
$replyurl = common_local_url('shownotice', array('notice' => $notice->reply_to));
- common_text(' (');
- common_element('a', array('class' => 'inreplyto',
+ $this->text(' (');
+ $this->element('a', array('class' => 'inreplyto',
'href' => $replyurl),
_('in reply to...'));
- common_text(')');
+ $this->text(')');
}
- common_element_start('a',
+ $this->elementStart('a',
array('href' => common_local_url('newnotice',
array('replyto' => $profile->nickname)),
'onclick' => 'doreply("'.$profile->nickname.'"); return false',
'title' => _('reply'),
'class' => 'replybutton'));
- common_hidden('posttoken', common_session_token());
+ $this->hidden('posttoken', common_session_token());
- common_raw('&rarr;');
- common_element_end('a');
- common_element_end('p');
- common_element_end('li');
+ $this->raw('&rarr;');
+ $this->elementEnd('a');
+ $this->elementEnd('p');
+ $this->elementEnd('li');
}
function highlight($text, $terms)
diff --git a/actions/nudge.php b/actions/nudge.php
index a6480a582..49223d431 100644
--- a/actions/nudge.php
+++ b/actions/nudge.php
@@ -29,7 +29,7 @@ class NudgeAction extends Action
parent::handle($args);
if (!common_logged_in()) {
- $this->client_error(_('Not logged in.'));
+ $this->clientError(_('Not logged in.'));
return;
}
@@ -46,12 +46,12 @@ class NudgeAction extends Action
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
- $this->client_error(_('There was a problem with your session token. Try again, please.'));
+ $this->clientError(_('There was a problem with your session token. Try again, please.'));
return;
}
if (!$other->email || !$other->emailnotifynudge) {
- $this->client_error(_('This user doesn\'t allow nudges or hasn\'t confirmed or set his email yet.'));
+ $this->clientError(_('This user doesn\'t allow nudges or hasn\'t confirmed or set his email yet.'));
return;
}
@@ -59,13 +59,13 @@ class NudgeAction extends Action
if ($this->boolean('ajax')) {
common_start_html('text/xml;charset=utf-8', true);
- common_element_start('head');
- common_element('title', null, _('Nudge sent'));
- common_element_end('head');
- common_element_start('body');
+ $this->elementStart('head');
+ $this->element('title', null, _('Nudge sent'));
+ $this->elementEnd('head');
+ $this->elementStart('body');
common_nudge_response();
- common_element_end('body');
- common_element_end('html');
+ $this->elementEnd('body');
+ $this->elementEnd('html');
} else {
// display a confirmation to the user
common_redirect(common_local_url('showstream',
diff --git a/actions/openidlogin.php b/actions/openidlogin.php
index 09679e372..d1989e0de 100644
--- a/actions/openidlogin.php
+++ b/actions/openidlogin.php
@@ -28,7 +28,7 @@ class OpenidloginAction extends Action
{
parent::handle($args);
if (common_logged_in()) {
- common_user_error(_('Already logged in.'));
+ $this->clientError(_('Already logged in.'));
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$openid_url = $this->trimmed('openid_url');
@@ -66,13 +66,13 @@ class OpenidloginAction extends Action
function show_top($error=null)
{
if ($error) {
- common_element('div', array('class' => 'error'), $error);
+ $this->element('div', array('class' => 'error'), $error);
} else {
$instr = $this->get_instructions();
$output = common_markup_to_html($instr);
- common_element_start('div', 'instructions');
- common_raw($output);
- common_element_end('div');
+ $this->elementStart('div', 'instructions');
+ $this->raw($output);
+ $this->elementEnd('div');
}
}
@@ -80,18 +80,18 @@ class OpenidloginAction extends Action
{
common_show_header(_('OpenID Login'), null, $error, array($this, 'show_top'));
$formaction = common_local_url('openidlogin');
- common_element_start('form', array('method' => 'post',
+ $this->elementStart('form', array('method' => 'post',
'id' => 'openidlogin',
'action' => $formaction));
- common_hidden('token', common_session_token());
- common_input('openid_url', _('OpenID URL'),
+ $this->hidden('token', common_session_token());
+ $this->input('openid_url', _('OpenID URL'),
$openid_url,
_('Your OpenID URL'));
- common_checkbox('rememberme', _('Remember me'), false,
+ $this->checkbox('rememberme', _('Remember me'), false,
_('Automatically login in the future; ' .
'not for shared computers!'));
- common_submit('submit', _('Login'));
- common_element_end('form');
+ $this->submit('submit', _('Login'));
+ $this->elementEnd('form');
common_show_footer();
}
}
diff --git a/actions/openidsettings.php b/actions/openidsettings.php
index 039236048..9265b5ea6 100644
--- a/actions/openidsettings.php
+++ b/actions/openidsettings.php
@@ -39,28 +39,28 @@ class OpenidsettingsAction extends SettingsAction
$this->form_header(_('OpenID settings'), $msg, $success);
- common_element_start('form', array('method' => 'post',
+ $this->elementStart('form', array('method' => 'post',
'id' => 'openidadd',
'action' =>
common_local_url('openidsettings')));
- common_hidden('token', common_session_token());
- common_element('h2', null, _('Add OpenID'));
- common_element('p', null,
+ $this->hidden('token', common_session_token());
+ $this->element('h2', null, _('Add OpenID'));
+ $this->element('p', null,
_('If you want to add an OpenID to your account, ' .
'enter it in the box below and click "Add".'));
- common_element_start('p');
- common_element('label', array('for' => 'openid_url'),
+ $this->elementStart('p');
+ $this->element('label', array('for' => 'openid_url'),
_('OpenID URL'));
- common_element('input', array('name' => 'openid_url',
+ $this->element('input', array('name' => 'openid_url',
'type' => 'text',
'id' => 'openid_url'));
- common_element('input', array('type' => 'submit',
+ $this->element('input', array('type' => 'submit',
'id' => 'add',
'name' => 'add',
'class' => 'submit',
'value' => _('Add')));
- common_element_end('p');
- common_element_end('form');
+ $this->elementEnd('p');
+ $this->elementEnd('form');
$oid = new User_openid();
$oid->user_id = $user->id;
@@ -69,48 +69,48 @@ class OpenidsettingsAction extends SettingsAction
if ($cnt > 0) {
- common_element('h2', null, _('Remove OpenID'));
+ $this->element('h2', null, _('Remove OpenID'));
if ($cnt == 1 && !$user->password) {
- common_element('p', null,
+ $this->element('p', null,
_('Removing your only OpenID would make it impossible to log in! ' .
'If you need to remove it, add another OpenID first.'));
if ($oid->fetch()) {
- common_element_start('p');
- common_element('a', array('href' => $oid->canonical),
+ $this->elementStart('p');
+ $this->element('a', array('href' => $oid->canonical),
$oid->display);
- common_element_end('p');
+ $this->elementEnd('p');
}
} else {
- common_element('p', null,
+ $this->element('p', null,
_('You can remove an OpenID from your account '.
'by clicking the button marked "Remove".'));
$idx = 0;
while ($oid->fetch()) {
- common_element_start('form', array('method' => 'POST',
+ $this->elementStart('form', array('method' => 'POST',
'id' => 'openiddelete' . $idx,
'action' =>
common_local_url('openidsettings')));
- common_element_start('p');
- common_hidden('token', common_session_token());
- common_element('a', array('href' => $oid->canonical),
+ $this->elementStart('p');
+ $this->hidden('token', common_session_token());
+ $this->element('a', array('href' => $oid->canonical),
$oid->display);
- common_element('input', array('type' => 'hidden',
+ $this->element('input', array('type' => 'hidden',
'id' => 'openid_url'.$idx,
'name' => 'openid_url',
'value' => $oid->canonical));
- common_element('input', array('type' => 'submit',
+ $this->element('input', array('type' => 'submit',
'id' => 'remove'.$idx,
'name' => 'remove',
'class' => 'submit',
'value' => _('Remove')));
- common_element_end('p');
- common_element_end('form');
+ $this->elementEnd('p');
+ $this->elementEnd('form');
$idx++;
}
}
diff --git a/actions/opensearch.php b/actions/opensearch.php
index 96691fa6f..6e6e794e9 100644
--- a/actions/opensearch.php
+++ b/actions/opensearch.php
@@ -41,21 +41,21 @@ class OpensearchAction extends Action
header('Content-Type: text/html');
common_start_xml();
- common_element_start('OpenSearchDescription', array('xmlns' => 'http://a9.com/-/spec/opensearch/1.1/'));
+ $this->elementStart('OpenSearchDescription', array('xmlns' => 'http://a9.com/-/spec/opensearch/1.1/'));
$short_name = common_config('site', 'name').' '.$short_name;
- common_element('ShortName', null, $short_name);
- common_element('Contact', null, common_config('site', 'email'));
- common_element('Url', array('type' => 'text/html', 'method' => 'get',
+ $this->element('ShortName', null, $short_name);
+ $this->element('Contact', null, common_config('site', 'email'));
+ $this->element('Url', array('type' => 'text/html', 'method' => 'get',
'template' => str_replace('---', '{searchTerms}', common_local_url($type, array('q' => '---')))));
- common_element('Image', array('height' => 16, 'width' => 16, 'type' => 'image/vnd.microsoft.icon'), common_path('favicon.ico'));
- common_element('Image', array('height' => 50, 'width' => 50, 'type' => 'image/png'), theme_path('logo.png'));
- common_element('AdultContent', null, 'false');
- common_element('Language', null, common_language());
- common_element('OutputEncoding', null, 'UTF-8');
- common_element('InputEncoding', null, 'UTF-8');
-
- common_element_end('OpenSearchDescription');
+ $this->element('Image', array('height' => 16, 'width' => 16, 'type' => 'image/vnd.microsoft.icon'), common_path('favicon.ico'));
+ $this->element('Image', array('height' => 50, 'width' => 50, 'type' => 'image/png'), theme_path('logo.png'));
+ $this->element('AdultContent', null, 'false');
+ $this->element('Language', null, common_language());
+ $this->element('OutputEncoding', null, 'UTF-8');
+ $this->element('InputEncoding', null, 'UTF-8');
+
+ $this->elementEnd('OpenSearchDescription');
common_end_xml();
}
}
diff --git a/actions/othersettings.php b/actions/othersettings.php
index c2f08934c..51f6f8197 100644
--- a/actions/othersettings.php
+++ b/actions/othersettings.php
@@ -35,12 +35,12 @@ class OthersettingsAction extends SettingsAction
$this->form_header(_('Other Settings'), $msg, $success);
- common_element('h2', null, _('URL Auto-shortening'));
- common_element_start('form', array('method' => 'post',
+ $this->element('h2', null, _('URL Auto-shortening'));
+ $this->elementStart('form', array('method' => 'post',
'id' => 'othersettings',
'action' =>
common_local_url('othersettings')));
- common_hidden('token', common_session_token());
+ $this->hidden('token', common_session_token());
$services = array(
'' => 'None',
@@ -54,13 +54,13 @@ class OthersettingsAction extends SettingsAction
'metamark.net' => 'metamark.net'
);
- common_dropdown('urlshorteningservice', _('Service'), $services, _('Automatic shortening service to use.'), false, $user->urlshorteningservice);
+ $this->dropdown('urlshorteningservice', _('Service'), $services, _('Automatic shortening service to use.'), false, $user->urlshorteningservice);
- common_submit('save', _('Save'));
+ $this->submit('save', _('Save'));
- common_element_end('form');
+ $this->elementEnd('form');
-// common_element('h2', null, _('Delete my account'));
+// $this->element('h2', null, _('Delete my account'));
// $this->show_delete_form();
common_show_footer();
@@ -68,15 +68,15 @@ class OthersettingsAction extends SettingsAction
function show_feeds_list($feeds)
{
- common_element_start('div', array('class' => 'feedsdel'));
- common_element('p', null, 'Feeds:');
- common_element_start('ul', array('class' => 'xoxo'));
+ $this->elementStart('div', array('class' => 'feedsdel'));
+ $this->element('p', null, 'Feeds:');
+ $this->elementStart('ul', array('class' => 'xoxo'));
foreach ($feeds as $key => $value) {
$this->common_feed_item($feeds[$key]);
}
- common_element_end('ul');
- common_element_end('div');
+ $this->elementEnd('ul');
+ $this->elementEnd('div');
}
//TODO move to common.php (and retrace its origin)
@@ -100,13 +100,13 @@ class OthersettingsAction extends SettingsAction
$feed['textContent'] = "FOAF";
break;
}
- common_element_start('li');
- common_element('a', array('href' => $feed['href'],
+ $this->elementStart('li');
+ $this->element('a', array('href' => $feed['href'],
'class' => $feed_classname,
'type' => $feed_mimetype,
'title' => $feed_title),
$feed['textContent']);
- common_element_end('li');
+ $this->elementEnd('li');
}
// function show_delete_form() {
@@ -115,13 +115,13 @@ class OthersettingsAction extends SettingsAction
// $notices->profile_id = $user->id;
// $notice_count = (int) $notices->count();
//
-// common_element_start('form', array('method' => 'POST',
+// $this->elementStart('form', array('method' => 'POST',
// 'id' => 'delete',
// 'action' =>
// common_local_url('deleteprofile')));
//
-// common_hidden('token', common_session_token());
-// common_element('p', null, "You can copy your notices and contacts by saving the two links below before deleting your account. Be careful, this operation cannot be undone.");
+// $this->hidden('token', common_session_token());
+// $this->element('p', null, "You can copy your notices and contacts by saving the two links below before deleting your account. Be careful, this operation cannot be undone.");
//
// $this->show_feeds_list(array(0=>array('href'=>common_local_url('userrss', array('limit' => $notice_count, 'nickname' => $user->nickname)),
// 'type' => 'rss',
@@ -132,8 +132,8 @@ class OthersettingsAction extends SettingsAction
// 'version' => 'FOAF',
// 'item' => 'foaf')));
//
-// common_submit('deleteaccount', _('Delete my account'));
-// common_element_end('form');
+// $this->submit('deleteaccount', _('Delete my account'));
+// $this->elementEnd('form');
// }
function handle_post()
@@ -177,7 +177,7 @@ class OthersettingsAction extends SettingsAction
if ($result === false) {
common_log_db_error($user, 'UPDATE', __FILE__);
- common_server_error(_('Couldn\'t update user.'));
+ $this->serverError(_('Couldn\'t update user.'));
return;
}
diff --git a/actions/peoplesearch.php b/actions/peoplesearch.php
index 0d0fae4e5..2b13b0812 100644
--- a/actions/peoplesearch.php
+++ b/actions/peoplesearch.php
@@ -60,7 +60,7 @@ class PeoplesearchAction extends SearchAction
$results = new PeopleSearchResults($profile, $terms);
$results->show_list();
} else {
- common_element('p', 'error', _('No results'));
+ $this->element('p', 'error', _('No results'));
}
$profile->free();
diff --git a/actions/peopletag.php b/actions/peopletag.php
index 13a0b7a41..7bcfcb93e 100644
--- a/actions/peopletag.php
+++ b/actions/peopletag.php
@@ -32,7 +32,7 @@ class PeopletagAction extends Action
$tag = $this->trimmed('tag');
if (!common_valid_profile_tag($tag)) {
- $this->client_error(sprintf(_('Not a valid people tag: %s'), $tag));
+ $this->clientError(sprintf(_('Not a valid people tag: %s'), $tag));
return;
}
@@ -90,11 +90,11 @@ class PeopletagAction extends Action
{
$instr = sprintf(_('These are users who have tagged themselves "%s" ' .
'to show a common interest, characteristic, hobby or job.'), $tag);
- common_element_start('div', 'instructions');
- common_element_start('p');
- common_text($instr);
- common_element_end('p');
- common_element_end('div');
+ $this->elementStart('div', 'instructions');
+ $this->elementStart('p');
+ $this->text($instr);
+ $this->elementEnd('p');
+ $this->elementEnd('div');
}
function get_title()
diff --git a/actions/postnotice.php b/actions/postnotice.php
index dec62a678..0b4735296 100644
--- a/actions/postnotice.php
+++ b/actions/postnotice.php
@@ -36,7 +36,7 @@ class PostnoticeAction extends Action
print "omb_version=".OMB_VERSION_01;
}
} catch (OAuthException $e) {
- common_server_error($e->getMessage());
+ $this->serverError($e->getMessage());
return;
}
}
@@ -45,36 +45,36 @@ class PostnoticeAction extends Action
{
$version = $req->get_parameter('omb_version');
if ($version != OMB_VERSION_01) {
- common_user_error(_('Unsupported OMB version'), 400);
+ $this->clientError(_('Unsupported OMB version'), 400);
return false;
}
# First, check to see
$listenee = $req->get_parameter('omb_listenee');
$remote_profile = Remote_profile::staticGet('uri', $listenee);
if (!$remote_profile) {
- common_user_error(_('Profile unknown'), 403);
+ $this->clientError(_('Profile unknown'), 403);
return false;
}
$sub = Subscription::staticGet('token', $token->key);
if (!$sub) {
- common_user_error(_('No such subscription'), 403);
+ $this->clientError(_('No such subscription'), 403);
return false;
}
$content = $req->get_parameter('omb_notice_content');
$content_shortened = common_shorten_links($content);
if (mb_strlen($content_shortened) > 140) {
- common_user_error(_('Invalid notice content'), 400);
+ $this->clientError(_('Invalid notice content'), 400);
return false;
}
$notice_uri = $req->get_parameter('omb_notice');
if (!Validate::uri($notice_uri) &&
!common_valid_tag($notice_uri)) {
- common_user_error(_('Invalid notice uri'), 400);
+ $this->clientError(_('Invalid notice uri'), 400);
return false;
}
$notice_url = $req->get_parameter('omb_notice_url');
if ($notice_url && !common_valid_http_url($notice_url)) {
- common_user_error(_('Invalid notice url'), 400);
+ $this->clientError(_('Invalid notice url'), 400);
return false;
}
$notice = Notice::staticGet('uri', $notice_uri);
diff --git a/actions/profilesettings.php b/actions/profilesettings.php
index d861919b9..6ad3f2ef5 100644
--- a/actions/profilesettings.php
+++ b/actions/profilesettings.php
@@ -34,11 +34,11 @@ class ProfilesettingsAction extends SettingsAction
{
$this->form_header(_('Profile settings'), $msg, $success);
$this->show_settings_form();
- common_element('h2', null, _('Avatar'));
+ $this->element('h2', null, _('Avatar'));
$this->show_avatar_form();
- common_element('h2', null, _('Change password'));
+ $this->element('h2', null, _('Change password'));
$this->show_password_form();
-// common_element('h2', null, _('Delete my account'));
+// $this->element('h2', null, _('Delete my account'));
// $this->show_delete_form();
common_show_footer();
}
@@ -74,46 +74,46 @@ class ProfilesettingsAction extends SettingsAction
$user = common_current_user();
$profile = $user->getProfile();
- common_element_start('form', array('method' => 'POST',
+ $this->elementStart('form', array('method' => 'POST',
'id' => 'profilesettings',
'action' => common_local_url('profilesettings')));
- common_hidden('token', common_session_token());
+ $this->hidden('token', common_session_token());
# too much common patterns here... abstractable?
- common_input('nickname', _('Nickname'),
+ $this->input('nickname', _('Nickname'),
($this->arg('nickname')) ? $this->arg('nickname') : $profile->nickname,
_('1-64 lowercase letters or numbers, no punctuation or spaces'));
- common_input('fullname', _('Full name'),
+ $this->input('fullname', _('Full name'),
($this->arg('fullname')) ? $this->arg('fullname') : $profile->fullname);
- common_input('homepage', _('Homepage'),
+ $this->input('homepage', _('Homepage'),
($this->arg('homepage')) ? $this->arg('homepage') : $profile->homepage,
_('URL of your homepage, blog, or profile on another site'));
- common_textarea('bio', _('Bio'),
+ $this->textarea('bio', _('Bio'),
($this->arg('bio')) ? $this->arg('bio') : $profile->bio,
_('Describe yourself and your interests in 140 chars'));
- common_input('location', _('Location'),
+ $this->input('location', _('Location'),
($this->arg('location')) ? $this->arg('location') : $profile->location,
_('Where you are, like "City, State (or Region), Country"'));
- common_input('tags', _('Tags'),
+ $this->input('tags', _('Tags'),
($this->arg('tags')) ? $this->arg('tags') : implode(' ', $user->getSelfTags()),
_('Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated'));
$language = common_language();
- common_dropdown('language', _('Language'), get_nice_language_list(), _('Preferred language'), true, $language);
+ $this->dropdown('language', _('Language'), get_nice_language_list(), _('Preferred language'), true, $language);
$timezone = common_timezone();
$timezones = array();
foreach(DateTimeZone::listIdentifiers() as $k => $v) {
$timezones[$v] = $v;
}
- common_dropdown('timezone', _('Timezone'), $timezones, _('What timezone are you normally in?'), true, $timezone);
+ $this->dropdown('timezone', _('Timezone'), $timezones, _('What timezone are you normally in?'), true, $timezone);
- common_checkbox('autosubscribe', _('Automatically subscribe to whoever subscribes to me (best for non-humans)'),
+ $this->checkbox('autosubscribe', _('Automatically subscribe to whoever subscribes to me (best for non-humans)'),
($this->arg('autosubscribe')) ? $this->boolean('autosubscribe') : $user->autosubscribe);
- common_submit('save', _('Save'));
+ $this->submit('save', _('Save'));
- common_element_end('form');
+ $this->elementEnd('form');
}
@@ -125,69 +125,69 @@ class ProfilesettingsAction extends SettingsAction
if (!$profile) {
common_log_db_error($user, 'SELECT', __FILE__);
- $this->server_error(_('User without matching profile'));
+ $this->serverError(_('User without matching profile'));
return;
}
$original = $profile->getOriginalAvatar();
- common_element_start('form', array('enctype' => 'multipart/form-data',
+ $this->elementStart('form', array('enctype' => 'multipart/form-data',
'method' => 'POST',
'id' => 'avatar',
'action' =>
common_local_url('profilesettings')));
- common_hidden('token', common_session_token());
+ $this->hidden('token', common_session_token());
if ($original) {
- common_element_start('div', array('id'=>'avatar_original', 'class'=>'avatar_view'));
- common_element('h3', null, _("Original:"));
- common_element_start('div', array('id'=>'avatar_original_view'));
- common_element('img', array('src' => $original->url,
+ $this->elementStart('div', array('id'=>'avatar_original', 'class'=>'avatar_view'));
+ $this->element('h3', null, _("Original:"));
+ $this->elementStart('div', array('id'=>'avatar_original_view'));
+ $this->element('img', array('src' => $original->url,
'class' => 'avatar original',
'width' => $original->width,
'height' => $original->height,
'alt' => $user->nickname));
- common_element_end('div');
- common_element_end('div');
+ $this->elementEnd('div');
+ $this->elementEnd('div');
}
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
if ($avatar) {
- common_element_start('div', array('id'=>'avatar_preview', 'class'=>'avatar_view'));
- common_element('h3', null, _("Preview:"));
- common_element_start('div', array('id'=>'avatar_preview_view'));
- common_element('img', array('src' => $original->url,//$avatar->url,
+ $this->elementStart('div', array('id'=>'avatar_preview', 'class'=>'avatar_view'));
+ $this->element('h3', null, _("Preview:"));
+ $this->elementStart('div', array('id'=>'avatar_preview_view'));
+ $this->element('img', array('src' => $original->url,//$avatar->url,
'class' => 'avatar profile',
'width' => AVATAR_PROFILE_SIZE,
'height' => AVATAR_PROFILE_SIZE,
'alt' => $user->nickname));
- common_element_end('div');
- common_element_end('div');
+ $this->elementEnd('div');
+ $this->elementEnd('div');
foreach(array('avatar_crop_x', 'avatar_crop_y', 'avatar_crop_w', 'avatar_crop_h') as $crop_info) {
- common_element('input', array('name' => $crop_info,
+ $this->element('input', array('name' => $crop_info,
'type' => 'hidden',
'id' => $crop_info));
}
- common_submit('crop', _('Crop'));
+ $this->submit('crop', _('Crop'));
}
- common_element('input', array('name' => 'MAX_FILE_SIZE',
+ $this->element('input', array('name' => 'MAX_FILE_SIZE',
'type' => 'hidden',
'id' => 'MAX_FILE_SIZE',
'value' => MAX_AVATAR_SIZE));
- common_element_start('p');
+ $this->elementStart('p');
- common_element('input', array('name' => 'avatarfile',
+ $this->element('input', array('name' => 'avatarfile',
'type' => 'file',
'id' => 'avatarfile'));
- common_element_end('p');
+ $this->elementEnd('p');
- common_submit('upload', _('Upload'));
- common_element_end('form');
+ $this->submit('upload', _('Upload'));
+ $this->elementEnd('form');
}
@@ -195,23 +195,23 @@ class ProfilesettingsAction extends SettingsAction
{
$user = common_current_user();
- common_element_start('form', array('method' => 'POST',
+ $this->elementStart('form', array('method' => 'POST',
'id' => 'password',
'action' =>
common_local_url('profilesettings')));
- common_hidden('token', common_session_token());
+ $this->hidden('token', common_session_token());
# Users who logged in with OpenID won't have a pwd
if ($user->password) {
- common_password('oldpassword', _('Old password'));
+ $this->password('oldpassword', _('Old password'));
}
- common_password('newpassword', _('New password'),
+ $this->password('newpassword', _('New password'),
_('6 or more characters'));
- common_password('confirm', _('Confirm'),
+ $this->password('confirm', _('Confirm'),
_('same as password above'));
- common_submit('changepass', _('Change'));
- common_element_end('form');
+ $this->submit('changepass', _('Change'));
+ $this->elementEnd('form');
}
function save_profile()
@@ -298,7 +298,7 @@ class ProfilesettingsAction extends SettingsAction
if ($result === false) {
common_log_db_error($user, 'UPDATE', __FILE__);
- common_server_error(_('Couldn\'t update user.'));
+ $this->serverError(_('Couldn\'t update user.'));
return;
} else {
# Re-initialize language environment if it changed
@@ -318,7 +318,7 @@ class ProfilesettingsAction extends SettingsAction
if ($result === false) {
common_log_db_error($user, 'UPDATE', __FILE__);
- common_server_error(_('Couldn\'t update user for autosubscribe.'));
+ $this->serverError(_('Couldn\'t update user for autosubscribe.'));
return;
}
}
@@ -341,7 +341,7 @@ class ProfilesettingsAction extends SettingsAction
if (!$result) {
common_log_db_error($profile, 'UPDATE', __FILE__);
- common_server_error(_('Couldn\'t save profile.'));
+ $this->serverError(_('Couldn\'t save profile.'));
return;
}
@@ -350,7 +350,7 @@ class ProfilesettingsAction extends SettingsAction
$result = $user->setSelfTags($tags);
if (!$result) {
- common_server_error(_('Couldn\'t save tags.'));
+ $this->serverError(_('Couldn\'t save tags.'));
return;
}
@@ -475,7 +475,7 @@ class ProfilesettingsAction extends SettingsAction
}
if (!$user->update($original)) {
- common_server_error(_('Can\'t save new password.'));
+ $this->serverError(_('Can\'t save new password.'));
return;
}
diff --git a/actions/public.php b/actions/public.php
index 039e885e6..0ceeef98e 100644
--- a/actions/public.php
+++ b/actions/public.php
@@ -1,9 +1,12 @@
<?php
-/*
- * Laconica - a distributed open-source microblogging tool
- * Copyright (C) 2008, Controlez-Vous, Inc.
+/**
+ * Laconica, the distributed open-source microblogging tool
*
- * This program is free software: you can redistribute it and/or modify
+ * Action for displaying the public stream
+ *
+ * PHP version 5
+ *
+ * LICENCE: This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
@@ -15,91 +18,183 @@
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * @category Public
+ * @package Laconica
+ * @author Evan Prodromou <evan@controlyourself.ca>
+ * @copyright 2008-2009 Control Yourself, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link http://laconi.ca/
*/
-if (!defined('LACONICA')) { exit(1); }
+if (!defined('LACONICA')) {
+ exit(1);
+}
-require_once(INSTALLDIR.'/lib/stream.php');
+require_once INSTALLDIR.'/lib/publicgroupnav.php';
+require_once INSTALLDIR.'/lib/noticelist.php';
+require_once INSTALLDIR.'/lib/feedlist.php';
-class PublicAction extends StreamAction
+/**
+ * Action for displaying the public stream
+ *
+ * @category Public
+ * @package Laconica
+ * @author Evan Prodromou <evan@controlyourself.ca>
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link http://laconi.ca/
+ *
+ * @see PublicrssAction
+ * @see PublicxrdsAction
+ */
+
+class PublicAction extends Action
{
+ /**
+ * page of the stream we're on; default = 1
+ */
- function handle($args)
- {
- parent::handle($args);
+ var $page = null;
- $page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
+ /**
+ * Read and validate arguments
+ *
+ * @param array $args URL parameters
+ *
+ * @return boolean success value
+ */
- header('X-XRDS-Location: '. common_local_url('publicxrds'));
+ function prepare($args)
+ {
+ parent::prepare($args);
+ $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
+ return true;
+ }
- common_show_header(_('Public timeline'),
- array($this, 'show_header'), null,
- array($this, 'show_top'));
+ /**
+ * handle request
+ *
+ * Show the public stream, using recipe method showPage()
+ *
+ * @param array $args arguments, mostly unused
+ *
+ * @return void
+ */
- # XXX: Public sidebar here?
+ function handle($args)
+ {
+ parent::handle($args);
- $this->show_notices($page);
+ header('X-XRDS-Location: '. common_local_url('publicxrds'));
- common_show_footer();
+ $this->showPage();
}
- function show_top()
+ /**
+ * Title of the page
+ *
+ * @return page title, including page number if over 1
+ */
+
+ function title()
{
- if (common_logged_in()) {
- common_notice_form('public');
+ if ($this->page > 1) {
+ return sprintf(_('Public timeline, page %d'), $this->page);
} else {
- $instr = $this->get_instructions();
- $output = common_markup_to_html($instr);
- common_element_start('div', 'instructions');
- common_raw($output);
- common_element_end('div');
+ return _('Public timeline');
}
-
- $this->public_views_menu();
-
- $this->show_feeds_list(array(0=>array('href'=>common_local_url('publicrss'),
- 'type' => 'rss',
- 'version' => 'RSS 1.0',
- 'item' => 'publicrss'),
- 1=>array('href'=>common_local_url('publicatom'),
- 'type' => 'atom',
- 'version' => 'Atom 1.0',
- 'item' => 'publicatom')));
}
- function get_instructions()
- {
- return _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
- 'based on the Free Software [Laconica](http://laconi.ca/) tool. ' .
- '[Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ([Read more](%%doc.help%%))');
- }
+ /**
+ * Output <head> elements for RSS and Atom feeds
+ *
+ * @return void
+ */
- function show_header()
+ function showFeeds()
{
- common_element('link', array('rel' => 'alternate',
+ $this->element('link', array('rel' => 'alternate',
'href' => common_local_url('publicrss'),
'type' => 'application/rss+xml',
'title' => _('Public Stream Feed')));
- # for client side of OpenID authentication
- common_element('meta', array('http-equiv' => 'X-XRDS-Location',
+ }
+
+ /**
+ * Extra head elements
+ *
+ * We include a <meta> element linking to the publicxrds page, for OpenID
+ * client-side authentication.
+ *
+ * @return void
+ */
+
+ function extraHead()
+ {
+ // for client side of OpenID authentication
+ $this->element('meta', array('http-equiv' => 'X-XRDS-Location',
'content' => common_local_url('publicxrds')));
}
- function show_notices($page)
+ /**
+ * Show tabset for this page
+ *
+ * Uses the PublicGroupNav widget
+ *
+ * @return void
+ * @see PublicGroupNav
+ */
+
+ function showLocalNav()
{
+ $nav = new PublicGroupNav($this);
+ $nav->show();
+ }
+
+ /**
+ * Fill the content area
+ *
+ * Shows a list of the notices in the public stream, with some pagination
+ * controls.
+ *
+ * @return void
+ */
- $cnt = 0;
- $notice = Notice::publicStream(($page-1)*NOTICES_PER_PAGE,
+ function showContent()
+ {
+ $notice = Notice::publicStream(($this->page-1)*NOTICES_PER_PAGE,
NOTICES_PER_PAGE + 1);
if (!$notice) {
- $this->server_error(_('Could not retrieve public stream.'));
+ $this->serverError(_('Could not retrieve public stream.'));
return;
}
- $cnt = $this->show_notice_list($notice);
+ $nl = new NoticeList($notice, $this);
+
+ $cnt = $nl->show();
- common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
- $page, 'public');
+ $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
+ $this->page, 'public');
+ }
+
+ /**
+ * Makes a list of exported feeds for this page
+ *
+ * @return void
+ *
+ * @todo I18N
+ */
+
+ function showExportData()
+ {
+ $fl = new FeedList($this);
+ $fl->show(array(0 => array('href' => common_local_url('publicrss'),
+ 'type' => 'rss',
+ 'version' => 'RSS 1.0',
+ 'item' => 'publicrss'),
+ 1 => array('href' => common_local_url('publicatom'),
+ 'type' => 'atom',
+ 'version' => 'Atom 1.0',
+ 'item' => 'publicatom')));
}
}
diff --git a/actions/publicxrds.php b/actions/publicxrds.php
index 3d731d79f..e765fb1c9 100644
--- a/actions/publicxrds.php
+++ b/actions/publicxrds.php
@@ -26,7 +26,7 @@ require_once(INSTALLDIR.'/lib/openid.php');
class PublicxrdsAction extends Action
{
- function is_readonly()
+ function isReadOnly()
{
return true;
}
@@ -39,45 +39,45 @@ class PublicxrdsAction extends Action
header('Content-Type: application/xrds+xml');
common_start_xml();
- common_element_start('XRDS', array('xmlns' => 'xri://$xrds'));
+ $this->elementStart('XRDS', array('xmlns' => 'xri://$xrds'));
- common_element_start('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',
'version' => '2.0'));
- common_element('Type', null, 'xri://$xrds*simple');
+ $this->element('Type', null, 'xri://$xrds*simple');
foreach (array('finishopenidlogin', 'finishaddopenid', 'finishimmediate') as $finish) {
$this->show_service(Auth_OpenID_RP_RETURN_TO_URL_TYPE,
common_local_url($finish));
}
- common_element_end('XRD');
+ $this->elementEnd('XRD');
- common_element_end('XRDS');
+ $this->elementEnd('XRDS');
common_end_xml();
}
function show_service($type, $uri, $params=null, $sigs=null, $localId=null)
{
- common_element_start('Service');
+ $this->elementStart('Service');
if ($uri) {
- common_element('URI', null, $uri);
+ $this->element('URI', null, $uri);
}
- common_element('Type', null, $type);
+ $this->element('Type', null, $type);
if ($params) {
foreach ($params as $param) {
- common_element('Type', null, $param);
+ $this->element('Type', null, $param);
}
}
if ($sigs) {
foreach ($sigs as $sig) {
- common_element('Type', null, $sig);
+ $this->element('Type', null, $sig);
}
}
if ($localId) {
- common_element('LocalID', null, $localId);
+ $this->element('LocalID', null, $localId);
}
- common_element_end('Service');
+ $this->elementEnd('Service');
}
} \ No newline at end of file
diff --git a/actions/recoverpassword.php b/actions/recoverpassword.php
index bb6ef81d6..3d839e751 100644
--- a/actions/recoverpassword.php
+++ b/actions/recoverpassword.php
@@ -30,7 +30,7 @@ class RecoverpasswordAction extends Action
{
parent::handle($args);
if (common_logged_in()) {
- $this->client_error(_('You are already logged in!'));
+ $this->clientError(_('You are already logged in!'));
return;
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
if ($this->arg('recover')) {
@@ -38,7 +38,7 @@ class RecoverpasswordAction extends Action
} else if ($this->arg('reset')) {
$this->reset_password();
} else {
- $this->client_error(_('Unexpected form submission.'));
+ $this->clientError(_('Unexpected form submission.'));
}
} else {
if ($this->trimmed('code')) {
@@ -56,18 +56,18 @@ class RecoverpasswordAction extends Action
$confirm = Confirm_address::staticGet('code', $code);
if (!$confirm) {
- $this->client_error(_('No such recovery code.'));
+ $this->clientError(_('No such recovery code.'));
return;
}
if ($confirm->address_type != 'recover') {
- $this->client_error(_('Not a recovery code.'));
+ $this->clientError(_('Not a recovery code.'));
return;
}
$user = User::staticGet($confirm->user_id);
if (!$user) {
- $this->server_error(_('Recovery code for unknown user.'));
+ $this->serverError(_('Recovery code for unknown user.'));
return;
}
@@ -80,7 +80,7 @@ class RecoverpasswordAction extends Action
if (!$result) {
common_log_db_error($confirm, 'DELETE', __FILE__);
- common_server_error(_('Error with confirmation code.'));
+ $this->serverError(_('Error with confirmation code.'));
return;
}
@@ -91,7 +91,7 @@ class RecoverpasswordAction extends Action
common_log(LOG_WARNING,
'Attempted redemption on recovery code ' .
'that is ' . $touched . ' seconds old. ');
- $this->client_error(_('This confirmation code is too old. ' .
+ $this->clientError(_('This confirmation code is too old. ' .
'Please start again.'));
return;
}
@@ -105,7 +105,7 @@ class RecoverpasswordAction extends Action
$result = $user->updateKeys($orig);
if (!$result) {
common_log_db_error($user, 'UPDATE', __FILE__);
- $this->server_error(_('Could not update user with confirmed email address.'));
+ $this->serverError(_('Could not update user with confirmed email address.'));
return;
}
}
@@ -141,24 +141,24 @@ class RecoverpasswordAction extends Action
function show_top($msg=null)
{
if ($msg) {
- common_element('div', 'error', $msg);
+ $this->element('div', 'error', $msg);
} else {
- common_element_start('div', 'instructions');
- common_element('p', null,
+ $this->elementStart('div', 'instructions');
+ $this->element('p', null,
_('If you\'ve forgotten or lost your' .
' password, you can get a new one sent to' .
' the email address you have stored ' .
' in your account.'));
- common_element_end('div');
+ $this->elementEnd('div');
}
}
function show_password_top($msg=null)
{
if ($msg) {
- common_element('div', 'error', $msg);
+ $this->element('div', 'error', $msg);
} else {
- common_element('div', 'instructions',
+ $this->element('div', 'instructions',
_('You\'ve been identified. Enter a ' .
' new password below. '));
}
@@ -170,15 +170,15 @@ class RecoverpasswordAction extends Action
common_show_header(_('Recover password'), null,
$msg, array($this, 'show_top'));
- common_element_start('form', array('method' => 'post',
+ $this->elementStart('form', array('method' => 'post',
'id' => 'recoverpassword',
'action' => common_local_url('recoverpassword')));
- common_input('nicknameoremail', _('Nickname or email'),
+ $this->input('nicknameoremail', _('Nickname or email'),
$this->trimmed('nicknameoremail'),
_('Your nickname on this server, ' .
'or your registered email address.'));
- common_submit('recover', _('Recover'));
- common_element_end('form');
+ $this->submit('recover', _('Recover'));
+ $this->elementEnd('form');
common_show_footer();
}
@@ -188,16 +188,16 @@ class RecoverpasswordAction extends Action
common_show_header(_('Reset password'), null,
$msg, array($this, 'show_password_top'));
- common_element_start('form', array('method' => 'post',
+ $this->elementStart('form', array('method' => 'post',
'id' => 'recoverpassword',
'action' => common_local_url('recoverpassword')));
- common_hidden('token', common_session_token());
- common_password('newpassword', _('New password'),
+ $this->hidden('token', common_session_token());
+ $this->password('newpassword', _('New password'),
_('6 or more characters, and don\'t forget it!'));
- common_password('confirm', _('Confirm'),
+ $this->password('confirm', _('Confirm'),
_('Same as password above'));
- common_submit('reset', _('Reset'));
- common_element_end('form');
+ $this->submit('reset', _('Reset'));
+ $this->elementEnd('form');
common_show_footer();
}
@@ -240,7 +240,7 @@ class RecoverpasswordAction extends Action
}
if (!$user->email && !$confirm_email) {
- $this->client_error(_('No registered email address for that user.'));
+ $this->clientError(_('No registered email address for that user.'));
return;
}
@@ -254,7 +254,7 @@ class RecoverpasswordAction extends Action
if (!$confirm->insert()) {
common_log_db_error($confirm, 'INSERT', __FILE__);
- $this->server_error(_('Error saving address confirmation.'));
+ $this->serverError(_('Error saving address confirmation.'));
return;
}
@@ -278,7 +278,7 @@ class RecoverpasswordAction extends Action
mail_to_user($user, _('Password recovery requested'), $body, $confirm->address);
common_show_header(_('Password recovery requested'));
- common_element('p', null,
+ $this->element('p', null,
_('Instructions for recovering your password ' .
'have been sent to the email address registered to your ' .
'account.'));
@@ -298,7 +298,7 @@ class RecoverpasswordAction extends Action
$user = $this->get_temp_user();
if (!$user) {
- $this->client_error(_('Unexpected password reset.'));
+ $this->clientError(_('Unexpected password reset.'));
return;
}
@@ -322,21 +322,21 @@ class RecoverpasswordAction extends Action
if (!$user->update($original)) {
common_log_db_error($user, 'UPDATE', __FILE__);
- common_server_error(_('Can\'t save new password.'));
+ $this->serverError(_('Can\'t save new password.'));
return;
}
$this->clear_temp_user();
if (!common_set_user($user->nickname)) {
- common_server_error(_('Error setting user.'));
+ $this->serverError(_('Error setting user.'));
return;
}
common_real_login(true);
common_show_header(_('Password saved.'));
- common_element('p', null, _('New password successfully saved. ' .
+ $this->element('p', null, _('New password successfully saved. ' .
'You are now logged in.'));
common_show_footer();
}
diff --git a/actions/register.php b/actions/register.php
index c479816ef..b4d0d43fb 100644
--- a/actions/register.php
+++ b/actions/register.php
@@ -26,9 +26,9 @@ class RegisterAction extends Action
parent::handle($args);
if (common_config('site', 'closed')) {
- common_user_error(_('Registration not allowed.'));
+ $this->clientError(_('Registration not allowed.'));
} else if (common_logged_in()) {
- common_user_error(_('Already logged in.'));
+ $this->clientError(_('Already logged in.'));
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$this->try_register();
} else {
@@ -65,7 +65,7 @@ class RegisterAction extends Action
}
if (common_config('site', 'inviteonly') && !($code && $invite)) {
- $this->client_error(_('Sorry, only invited people can register.'));
+ $this->clientError(_('Sorry, only invited people can register.'));
return;
}
@@ -115,7 +115,7 @@ class RegisterAction extends Action
}
# success!
if (!common_set_user($user)) {
- common_server_error(_('Error setting user.'));
+ $this->serverError(_('Error setting user.'));
return;
}
# this is a real login
@@ -155,16 +155,16 @@ class RegisterAction extends Action
function show_top($error=null)
{
if ($error) {
- common_element('p', 'error', $error);
+ $this->element('p', 'error', $error);
} else {
$instr = common_markup_to_html(_('With this form you can create a new account. ' .
'You can then post notices and link up to friends and colleagues. '.
'(Have an [OpenID](http://openid.net/)? ' .
'Try our [OpenID registration](%%action.openidlogin%%)!)'));
- common_element_start('div', 'instructions');
- common_raw($instr);
- common_element_end('div');
+ $this->elementStart('div', 'instructions');
+ $this->raw($instr);
+ $this->elementEnd('div');
}
}
@@ -179,50 +179,50 @@ class RegisterAction extends Action
}
if (common_config('site', 'inviteonly') && !($code && $invite)) {
- $this->client_error(_('Sorry, only invited people can register.'));
+ $this->clientError(_('Sorry, only invited people can register.'));
return;
}
common_show_header(_('Register'), null, $error, array($this, 'show_top'));
- common_element_start('form', array('method' => 'post',
+ $this->elementStart('form', array('method' => 'post',
'id' => 'login',
'action' => common_local_url('register')));
- common_hidden('token', common_session_token());
+ $this->hidden('token', common_session_token());
if ($code) {
- common_hidden('code', $code);
+ $this->hidden('code', $code);
}
- common_input('nickname', _('Nickname'), $this->trimmed('nickname'),
+ $this->input('nickname', _('Nickname'), $this->trimmed('nickname'),
_('1-64 lowercase letters or numbers, no punctuation or spaces. Required.'));
- common_password('password', _('Password'),
+ $this->password('password', _('Password'),
_('6 or more characters. Required.'));
- common_password('confirm', _('Confirm'),
+ $this->password('confirm', _('Confirm'),
_('Same as password above. Required.'));
if ($invite && $invite->address_type == 'email') {
- common_input('email', _('Email'), $invite->address,
+ $this->input('email', _('Email'), $invite->address,
_('Used only for updates, announcements, and password recovery'));
} else {
- common_input('email', _('Email'), $this->trimmed('email'),
+ $this->input('email', _('Email'), $this->trimmed('email'),
_('Used only for updates, announcements, and password recovery'));
}
- common_input('fullname', _('Full name'),
+ $this->input('fullname', _('Full name'),
$this->trimmed('fullname'),
_('Longer name, preferably your "real" name'));
- common_input('homepage', _('Homepage'),
+ $this->input('homepage', _('Homepage'),
$this->trimmed('homepage'),
_('URL of your homepage, blog, or profile on another site'));
- common_textarea('bio', _('Bio'),
+ $this->textarea('bio', _('Bio'),
$this->trimmed('bio'),
_('Describe yourself and your interests in 140 chars'));
- common_input('location', _('Location'),
+ $this->input('location', _('Location'),
$this->trimmed('location'),
_('Where you are, like "City, State (or Region), Country"'));
- common_checkbox('rememberme', _('Remember me'),
+ $this->checkbox('rememberme', _('Remember me'),
$this->boolean('rememberme'),
_('Automatically login in the future; not for shared computers!'));
- common_element_start('p');
+ $this->elementStart('p');
$attrs = array('type' => 'checkbox',
'id' => 'license',
'name' => 'license',
@@ -230,14 +230,14 @@ class RegisterAction extends Action
if ($this->boolean('license')) {
$attrs['checked'] = 'checked';
}
- common_element('input', $attrs);
- common_text(_('My text and files are available under '));
- common_element('a', array('href' => $config['license']['url']),
+ $this->element('input', $attrs);
+ $this->text(_('My text and files are available under '));
+ $this->element('a', array('href' => $config['license']['url']),
$config['license']['title']);
- common_text(_(' except this private data: password, email address, IM address, phone number.'));
- common_element_end('p');
- common_submit('submit', _('Register'));
- common_element_end('form');
+ $this->text(_(' except this private data: password, email address, IM address, phone number.'));
+ $this->elementEnd('p');
+ $this->submit('submit', _('Register'));
+ $this->elementEnd('form');
common_show_footer();
}
@@ -245,7 +245,7 @@ class RegisterAction extends Action
{
$nickname = $this->arg('nickname');
common_show_header(_('Registration successful'));
- common_element_start('div', 'success');
+ $this->elementStart('div', 'success');
$instr = sprintf(_('Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...'. "\n\n" .
'* Go to [your profile](%s) and post your first message.' . "\n" .
'* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.' . "\n" .
@@ -254,14 +254,14 @@ class RegisterAction extends Action
'* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. ' . "\n\n" .
'Thanks for signing up and we hope you enjoy using this service.'),
$nickname, common_local_url('showstream', array('nickname' => $nickname)));
- common_raw(common_markup_to_html($instr));
+ $this->raw(common_markup_to_html($instr));
$have_email = $this->trimmed('email');
if ($have_email) {
$emailinstr = _('(You should receive a message by email momentarily, with ' .
'instructions on how to confirm your email address.)');
- common_raw(common_markup_to_html($emailinstr));
+ $this->raw(common_markup_to_html($emailinstr));
}
- common_element_end('div');
+ $this->elementEnd('div');
common_show_footer();
}
diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php
index a9494772e..32e9bf3d3 100644
--- a/actions/remotesubscribe.php
+++ b/actions/remotesubscribe.php
@@ -30,7 +30,7 @@ class RemotesubscribeAction extends Action
parent::handle($args);
if (common_logged_in()) {
- common_user_error(_('You can use the local subscription!'));
+ $this->clientError(_('You can use the local subscription!'));
return;
}
@@ -61,13 +61,13 @@ class RemotesubscribeAction extends Action
function show_top($err=null)
{
if ($err) {
- common_element('div', 'error', $err);
+ $this->element('div', 'error', $err);
} else {
$instructions = $this->get_instructions();
$output = common_markup_to_html($instructions);
- common_element_start('div', 'instructions');
- common_raw($output);
- common_element_end('p');
+ $this->elementStart('div', 'instructions');
+ $this->raw($output);
+ $this->elementEnd('p');
}
}
@@ -79,15 +79,15 @@ class RemotesubscribeAction extends Action
array($this, 'show_top'));
# id = remotesubscribe conflicts with the
# button on profile page
- common_element_start('form', array('id' => 'remsub', 'method' => 'post',
+ $this->elementStart('form', array('id' => 'remsub', 'method' => 'post',
'action' => common_local_url('remotesubscribe')));
- common_hidden('token', common_session_token());
- common_input('nickname', _('User nickname'), $nickname,
+ $this->hidden('token', common_session_token());
+ $this->input('nickname', _('User nickname'), $nickname,
_('Nickname of the user you want to follow'));
- common_input('profile_url', _('Profile URL'), $profile,
+ $this->input('profile_url', _('Profile URL'), $profile,
_('URL of your profile on another compatible microblogging service'));
- common_submit('submit', _('Subscribe'));
- common_element_end('form');
+ $this->submit('submit', _('Subscribe'));
+ $this->elementEnd('form');
common_show_footer();
}
@@ -342,7 +342,7 @@ class RemotesubscribeAction extends Action
$profile = $user->getProfile();
if (!$profile) {
common_log_db_error($user, 'SELECT', __FILE__);
- $this->server_error(_('User without matching profile'));
+ $this->serverError(_('User without matching profile'));
return;
}
diff --git a/actions/replies.php b/actions/replies.php
index eceeb4d65..84fd894ff 100644
--- a/actions/replies.php
+++ b/actions/replies.php
@@ -40,7 +40,7 @@ class RepliesAction extends StreamAction
$profile = $user->getProfile();
if (!$profile) {
- common_server_error(_('User has no profile.'));
+ $this->serverError(_('User has no profile.'));
return;
}
@@ -57,12 +57,12 @@ class RepliesAction extends StreamAction
function no_such_user()
{
- common_user_error(_('No such user.'));
+ $this->clientError(_('No such user.'));
}
function show_header($user)
{
- common_element('link', array('rel' => 'alternate',
+ $this->element('link', array('rel' => 'alternate',
'href' => common_local_url('repliesrss', array('nickname' =>
$user->nickname)),
'type' => 'application/rss+xml',
diff --git a/actions/repliesrss.php b/actions/repliesrss.php
index 5f85f8d2e..43be133a4 100644
--- a/actions/repliesrss.php
+++ b/actions/repliesrss.php
@@ -34,7 +34,7 @@ class RepliesrssAction extends Rss10Action
$this->user = User::staticGet('nickname', $nickname);
if (!$this->user) {
- common_user_error(_('No such user.'));
+ $this->clientError(_('No such user.'));
return false;
} else {
return true;
diff --git a/actions/requesttoken.php b/actions/requesttoken.php
index a74548739..5058deedb 100644
--- a/actions/requesttoken.php
+++ b/actions/requesttoken.php
@@ -24,7 +24,7 @@ require_once(INSTALLDIR.'/lib/omb.php');
class RequesttokenAction extends Action
{
- function is_readonly()
+ function isReadOnly()
{
return false;
}
@@ -39,7 +39,7 @@ class RequesttokenAction extends Action
$token = $server->fetch_request_token($req);
print $token;
} catch (OAuthException $e) {
- common_server_error($e->getMessage());
+ $this->serverError($e->getMessage());
}
}
}
diff --git a/actions/showfavorites.php b/actions/showfavorites.php
index f4344833d..caa823893 100644
--- a/actions/showfavorites.php
+++ b/actions/showfavorites.php
@@ -33,14 +33,14 @@ class ShowfavoritesAction extends StreamAction
$user = User::staticGet('nickname', $nickname);
if (!$user) {
- $this->client_error(_('No such user.'));
+ $this->clientError(_('No such user.'));
return;
}
$profile = $user->getProfile();
if (!$profile) {
- common_server_error(_('User has no profile.'));
+ $this->serverError(_('User has no profile.'));
return;
}
@@ -57,7 +57,7 @@ class ShowfavoritesAction extends StreamAction
function show_header($user)
{
- common_element('link', array('rel' => 'alternate',
+ $this->element('link', array('rel' => 'alternate',
'href' => common_local_url('favoritesrss', array('nickname' =>
$user->nickname)),
'type' => 'application/rss+xml',
@@ -90,7 +90,7 @@ class ShowfavoritesAction extends StreamAction
$notice = $user->favoriteNotices(($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
if (!$notice) {
- $this->server_error(_('Could not retrieve favorite notices.'));
+ $this->serverError(_('Could not retrieve favorite notices.'));
return;
}
diff --git a/actions/showmessage.php b/actions/showmessage.php
index 25330a568..d13e9f671 100644
--- a/actions/showmessage.php
+++ b/actions/showmessage.php
@@ -32,7 +32,7 @@ class ShowmessageAction extends MailboxAction
$message = $this->get_message();
if (!$message) {
- $this->client_error(_('No such message.'), 404);
+ $this->clientError(_('No such message.'), 404);
return;
}
@@ -41,7 +41,7 @@ class ShowmessageAction extends MailboxAction
if ($cur && ($cur->id == $message->from_profile || $cur->id == $message->to_profile)) {
$this->show_page($cur, 1);
} else {
- $this->client_error(_('Only the sender and recipient may read this message.'), 403);
+ $this->clientError(_('Only the sender and recipient may read this message.'), 403);
return;
}
}
diff --git a/actions/shownotice.php b/actions/shownotice.php
index 2df09cb3f..82d4bd270 100644
--- a/actions/shownotice.php
+++ b/actions/shownotice.php
@@ -37,14 +37,14 @@ class ShownoticeAction extends StreamAction
$this->notice = Notice::staticGet($id);
if (!$this->notice) {
- $this->client_error(_('No such notice.'), 404);
+ $this->clientError(_('No such notice.'), 404);
return false;
}
$this->profile = $this->notice->getProfile();
if (!$this->profile) {
- $this->server_error(_('Notice has no profile'), 500);
+ $this->serverError(_('Notice has no profile'), 500);
return false;
}
@@ -81,10 +81,10 @@ class ShownoticeAction extends StreamAction
array($this, 'show_header'), null,
array($this, 'show_top'));
- common_element_start('ul', array('id' => 'notices'));
+ $this->elementStart('ul', array('id' => 'notices'));
$nli = new NoticeListItem($this->notice);
$nli->show();
- common_element_end('ul');
+ $this->elementEnd('ul');
common_show_footer();
}
@@ -99,12 +99,12 @@ class ShownoticeAction extends StreamAction
}
if ($user->emailmicroid && $user->email && $this->notice->uri) {
- common_element('meta', array('name' => 'microid',
+ $this->element('meta', array('name' => 'microid',
'content' => "mailto+http:sha1:" . sha1(sha1('mailto:' . $user->email) . sha1($this->notice->uri))));
}
if ($user->jabbermicroid && $user->jabber && $this->notice->uri) {
- common_element('meta', array('name' => 'microid',
+ $this->element('meta', array('name' => 'microid',
'content' => "xmpp+http:sha1:" . sha1(sha1('xmpp:' . $user->jabber) . sha1($this->notice->uri))));
}
}
@@ -119,6 +119,6 @@ class ShownoticeAction extends StreamAction
function no_such_notice()
{
- common_user_error(_('No such notice.'));
+ $this->clientError(_('No such notice.'));
}
}
diff --git a/actions/showstream.php b/actions/showstream.php
index e4e5d96d1..ed38c67f9 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -56,7 +56,7 @@ class ShowstreamAction extends StreamAction
$profile = $user->getProfile();
if (!$profile) {
- common_server_error(_('User has no profile.'));
+ $this->serverError(_('User has no profile.'));
return;
}
@@ -106,66 +106,66 @@ class ShowstreamAction extends StreamAction
function show_header($user)
{
# Feeds
- common_element('link', array('rel' => 'alternate',
+ $this->element('link', array('rel' => 'alternate',
'href' => common_local_url('api',
array('apiaction' => 'statuses',
'method' => 'user_timeline.rss',
'argument' => $user->nickname)),
'type' => 'application/rss+xml',
'title' => sprintf(_('Notice feed for %s'), $user->nickname)));
- common_element('link', array('rel' => 'alternate feed',
+ $this->element('link', array('rel' => 'alternate feed',
'href' => common_local_url('api',
array('apiaction' => 'statuses',
'method' => 'user_timeline.atom',
'argument' => $user->nickname)),
'type' => 'application/atom+xml',
'title' => sprintf(_('Notice feed for %s'), $user->nickname)));
- common_element('link', array('rel' => 'alternate',
+ $this->element('link', array('rel' => 'alternate',
'href' => common_local_url('userrss', array('nickname' =>
$user->nickname)),
'type' => 'application/rdf+xml',
'title' => sprintf(_('Notice feed for %s'), $user->nickname)));
# FOAF
- common_element('link', array('rel' => 'meta',
+ $this->element('link', array('rel' => 'meta',
'href' => common_local_url('foaf', array('nickname' =>
$user->nickname)),
'type' => 'application/rdf+xml',
'title' => 'FOAF'));
# for remote subscriptions etc.
- common_element('meta', array('http-equiv' => 'X-XRDS-Location',
+ $this->element('meta', array('http-equiv' => 'X-XRDS-Location',
'content' => common_local_url('xrds', array('nickname' =>
$user->nickname))));
$profile = $user->getProfile();
if ($profile->bio) {
- common_element('meta', array('name' => 'description',
+ $this->element('meta', array('name' => 'description',
'content' => $profile->bio));
}
if ($user->emailmicroid && $user->email && $profile->profileurl) {
- common_element('meta', array('name' => 'microid',
+ $this->element('meta', array('name' => 'microid',
'content' => "mailto+http:sha1:" . sha1(sha1('mailto:' . $user->email) . sha1($profile->profileurl))));
}
if ($user->jabbermicroid && $user->jabber && $profile->profileurl) {
- common_element('meta', array('name' => 'microid',
+ $this->element('meta', array('name' => 'microid',
'content' => "xmpp+http:sha1:" . sha1(sha1('xmpp:' . $user->jabber) . sha1($profile->profileurl))));
}
# See https://wiki.mozilla.org/Microsummaries
- common_element('link', array('rel' => 'microsummary',
+ $this->element('link', array('rel' => 'microsummary',
'href' => common_local_url('microsummary',
array('nickname' => $profile->nickname))));
}
function no_such_user()
{
- $this->client_error(_('No such user.'), 404);
+ $this->clientError(_('No such user.'), 404);
}
function show_profile($profile)
{
- common_element_start('div', array('id' => 'profile', 'class' => 'vcard'));
+ $this->elementStart('div', array('id' => 'profile', 'class' => 'vcard'));
$this->show_personal($profile);
@@ -175,23 +175,23 @@ class ShowstreamAction extends StreamAction
$this->show_subscriptions($profile);
- common_element_end('div');
+ $this->elementEnd('div');
}
function show_personal($profile)
{
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
- common_element_start('div', array('id' => 'profile_avatar'));
- common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_PROFILE_SIZE),
+ $this->elementStart('div', array('id' => 'profile_avatar'));
+ $this->element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_PROFILE_SIZE),
'class' => 'avatar profile photo',
'width' => AVATAR_PROFILE_SIZE,
'height' => AVATAR_PROFILE_SIZE,
'alt' => $profile->nickname));
- common_element_start('ul', array('id' => 'profile_actions'));
+ $this->elementStart('ul', array('id' => 'profile_actions'));
- common_element_start('li', array('id' => 'profile_subscribe'));
+ $this->elementStart('li', array('id' => 'profile_subscribe'));
$cur = common_current_user();
if ($cur) {
if ($cur->id != $profile->id) {
@@ -204,14 +204,14 @@ class ShowstreamAction extends StreamAction
} else {
$this->show_remote_subscribe_link($profile);
}
- common_element_end('li');
+ $this->elementEnd('li');
$user = User::staticGet('id', $profile->id);
common_profile_new_message_nudge($cur, $user, $profile);
if ($cur && $cur->id != $profile->id) {
$blocked = $cur->hasBlocked($profile);
- common_element_start('li', array('id' => 'profile_block'));
+ $this->elementStart('li', array('id' => 'profile_block'));
if ($blocked) {
common_unblock_form($profile, array('action' => 'showstream',
'nickname' => $profile->nickname));
@@ -219,62 +219,62 @@ class ShowstreamAction extends StreamAction
common_block_form($profile, array('action' => 'showstream',
'nickname' => $profile->nickname));
}
- common_element_end('li');
+ $this->elementEnd('li');
}
- common_element_end('ul');
+ $this->elementEnd('ul');
- common_element_end('div');
+ $this->elementEnd('div');
- common_element_start('div', array('id' => 'profile_information'));
+ $this->elementStart('div', array('id' => 'profile_information'));
if ($profile->fullname) {
- common_element('h1', array('class' => 'fn'), $profile->fullname . ' (' . $profile->nickname . ')');
+ $this->element('h1', array('class' => 'fn'), $profile->fullname . ' (' . $profile->nickname . ')');
} else {
- common_element('h1', array('class' => 'fn nickname'), $profile->nickname);
+ $this->element('h1', array('class' => 'fn nickname'), $profile->nickname);
}
if ($profile->location) {
- common_element('p', 'location', $profile->location);
+ $this->element('p', 'location', $profile->location);
}
if ($profile->bio) {
- common_element('p', 'description note', $profile->bio);
+ $this->element('p', 'description note', $profile->bio);
}
if ($profile->homepage) {
- common_element_start('p', 'website');
- common_element('a', array('href' => $profile->homepage,
+ $this->elementStart('p', 'website');
+ $this->element('a', array('href' => $profile->homepage,
'rel' => 'me', 'class' => 'url'),
$profile->homepage);
- common_element_end('p');
+ $this->elementEnd('p');
}
$this->show_statistics($profile);
- common_element_end('div');
+ $this->elementEnd('div');
}
function show_remote_subscribe_link($profile)
{
$url = common_local_url('remotesubscribe',
array('nickname' => $profile->nickname));
- common_element('a', array('href' => $url,
+ $this->element('a', array('href' => $url,
'id' => 'remotesubscribe'),
_('Subscribe'));
}
function show_unsubscribe_form($profile)
{
- common_element_start('form', array('id' => 'unsubscribe', 'method' => 'post',
+ $this->elementStart('form', array('id' => 'unsubscribe', 'method' => 'post',
'action' => common_local_url('unsubscribe')));
- common_hidden('token', common_session_token());
- common_element('input', array('id' => 'unsubscribeto',
+ $this->hidden('token', common_session_token());
+ $this->element('input', array('id' => 'unsubscribeto',
'name' => 'unsubscribeto',
'type' => 'hidden',
'value' => $profile->nickname));
- common_element('input', array('type' => 'submit',
+ $this->element('input', array('type' => 'submit',
'class' => 'submit',
'value' => _('Unsubscribe')));
- common_element_end('form');
+ $this->elementEnd('form');
}
function show_subscriptions($profile)
@@ -293,13 +293,13 @@ class ShowstreamAction extends StreamAction
$subs_count = $subs->find();
- common_element_start('div', array('id' => 'subscriptions'));
+ $this->elementStart('div', array('id' => 'subscriptions'));
- common_element('h2', null, _('Subscriptions'));
+ $this->element('h2', null, _('Subscriptions'));
if ($subs_count > 0) {
- common_element_start('ul', array('id' => 'subscriptions_avatars'));
+ $this->elementStart('ul', array('id' => 'subscriptions_avatars'));
for ($i = 0; $i < min($subs_count, SUBSCRIPTIONS); $i++) {
@@ -315,39 +315,39 @@ class ShowstreamAction extends StreamAction
continue;
}
- common_element_start('li', 'vcard');
- common_element_start('a', array('title' => ($other->fullname) ?
+ $this->elementStart('li', 'vcard');
+ $this->elementStart('a', array('title' => ($other->fullname) ?
$other->fullname :
$other->nickname,
'href' => $other->profileurl,
'rel' => 'contact',
'class' => 'subscription fn url'));
$avatar = $other->getAvatar(AVATAR_MINI_SIZE);
- common_element('img', array('src' => (($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_MINI_SIZE)),
+ $this->element('img', array('src' => (($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_MINI_SIZE)),
'width' => AVATAR_MINI_SIZE,
'height' => AVATAR_MINI_SIZE,
'class' => 'avatar mini photo',
'alt' => ($other->fullname) ?
$other->fullname :
$other->nickname));
- common_element_end('a');
- common_element_end('li');
+ $this->elementEnd('a');
+ $this->elementEnd('li');
}
- common_element_end('ul');
+ $this->elementEnd('ul');
}
if ($subs_count > SUBSCRIPTIONS) {
- common_element_start('p', array('id' => 'subscriptions_viewall'));
+ $this->elementStart('p', array('id' => 'subscriptions_viewall'));
- common_element('a', array('href' => common_local_url('subscriptions',
+ $this->element('a', array('href' => common_local_url('subscriptions',
array('nickname' => $profile->nickname)),
'class' => 'moresubscriptions'),
_('All subscriptions'));
- common_element_end('p');
+ $this->elementEnd('p');
}
- common_element_end('div');
+ $this->elementEnd('div');
}
function show_statistics($profile)
@@ -366,49 +366,49 @@ class ShowstreamAction extends StreamAction
$notices->profile_id = $profile->id;
$notice_count = (int) $notices->count();
- common_element_start('div', 'statistics');
- common_element('h2', 'statistics', _('Statistics'));
+ $this->elementStart('div', 'statistics');
+ $this->element('h2', 'statistics', _('Statistics'));
# Other stats...?
- common_element_start('dl', 'statistics');
- common_element('dt', 'membersince', _('Member since'));
- common_element('dd', 'membersince', date('j M Y',
+ $this->elementStart('dl', 'statistics');
+ $this->element('dt', 'membersince', _('Member since'));
+ $this->element('dd', 'membersince', date('j M Y',
strtotime($profile->created)));
- common_element_start('dt', 'subscriptions');
- common_element('a', array('href' => common_local_url('subscriptions',
+ $this->elementStart('dt', 'subscriptions');
+ $this->element('a', array('href' => common_local_url('subscriptions',
array('nickname' => $profile->nickname))),
_('Subscriptions'));
- common_element_end('dt');
- common_element('dd', 'subscriptions', (is_int($subs_count)) ? $subs_count : '0');
- common_element_start('dt', 'subscribers');
- common_element('a', array('href' => common_local_url('subscribers',
+ $this->elementEnd('dt');
+ $this->element('dd', 'subscriptions', (is_int($subs_count)) ? $subs_count : '0');
+ $this->elementStart('dt', 'subscribers');
+ $this->element('a', array('href' => common_local_url('subscribers',
array('nickname' => $profile->nickname))),
_('Subscribers'));
- common_element_end('dt');
- common_element('dd', 'subscribers', (is_int($subbed_count)) ? $subbed_count : '0');
- common_element('dt', 'notices', _('Notices'));
- common_element('dd', 'notices', (is_int($notice_count)) ? $notice_count : '0');
+ $this->elementEnd('dt');
+ $this->element('dd', 'subscribers', (is_int($subbed_count)) ? $subbed_count : '0');
+ $this->element('dt', 'notices', _('Notices'));
+ $this->element('dd', 'notices', (is_int($notice_count)) ? $notice_count : '0');
# XXX: link these to something
- common_element('dt', 'tags', _('Tags'));
- common_element_start('dd', 'tags');
+ $this->element('dt', 'tags', _('Tags'));
+ $this->elementStart('dd', 'tags');
$tags = Profile_tag::getTags($profile->id, $profile->id);
- common_element_start('ul', 'tags xoxo');
+ $this->elementStart('ul', 'tags xoxo');
foreach ($tags as $tag) {
- common_element_start('li');
- common_element('a', array('rel' => 'bookmark tag',
+ $this->elementStart('li');
+ $this->element('a', array('rel' => 'bookmark tag',
'href' => common_local_url('peopletag',
array('tag' => $tag))),
$tag);
- common_element_end('li');
+ $this->elementEnd('li');
}
- common_element_end('ul');
- common_element_end('dd');
+ $this->elementEnd('ul');
+ $this->elementEnd('dd');
- common_element_end('dl');
+ $this->elementEnd('dl');
- common_element_end('div');
+ $this->elementEnd('div');
}
function show_notices($user)
@@ -428,22 +428,22 @@ class ShowstreamAction extends StreamAction
function show_last_notice($profile)
{
- common_element('h2', null, _('Currently'));
+ $this->element('h2', null, _('Currently'));
$notice = $profile->getCurrentNotice();
if ($notice) {
# FIXME: URL, image, video, audio
- common_element_start('p', array('class' => 'notice_current'));
+ $this->elementStart('p', array('class' => 'notice_current'));
if ($notice->rendered) {
- common_raw($notice->rendered);
+ $this->raw($notice->rendered);
} else {
# XXX: may be some uncooked notices in the DB,
# we cook them right now. This can probably disappear in future
# versions (>> 0.4.x)
- common_raw(common_render_content($notice->content, $notice));
+ $this->raw(common_render_content($notice->content, $notice));
}
- common_element_end('p');
+ $this->elementEnd('p');
}
}
}
diff --git a/actions/smssettings.php b/actions/smssettings.php
index fad71135c..c5879e4d9 100644
--- a/actions/smssettings.php
+++ b/actions/smssettings.php
@@ -34,75 +34,75 @@ class SmssettingsAction extends EmailsettingsAction
{
$user = common_current_user();
$this->form_header(_('SMS Settings'), $msg, $success);
- common_element_start('form', array('method' => 'post',
+ $this->elementStart('form', array('method' => 'post',
'id' => 'smssettings',
'action' =>
common_local_url('smssettings')));
- common_hidden('token', common_session_token());
- common_element('h2', null, _('Address'));
+ $this->hidden('token', common_session_token());
+ $this->element('h2', null, _('Address'));
if ($user->sms) {
- common_element_start('p');
+ $this->elementStart('p');
$carrier = $user->getCarrier();
- common_element('span', 'address confirmed', $user->sms . ' (' . $carrier->name . ')');
- common_element('span', 'input_instructions',
+ $this->element('span', 'address confirmed', $user->sms . ' (' . $carrier->name . ')');
+ $this->element('span', 'input_instructions',
_('Current confirmed SMS-enabled phone number.'));
- common_hidden('sms', $user->sms);
- common_hidden('carrier', $user->carrier);
- common_element_end('p');
- common_submit('remove', _('Remove'));
+ $this->hidden('sms', $user->sms);
+ $this->hidden('carrier', $user->carrier);
+ $this->elementEnd('p');
+ $this->submit('remove', _('Remove'));
} else {
$confirm = $this->get_confirmation();
if ($confirm) {
$carrier = Sms_carrier::staticGet($confirm->address_extra);
- common_element_start('p');
- common_element('span', 'address unconfirmed', $confirm->address . ' (' . $carrier->name . ')');
- common_element('span', 'input_instructions',
+ $this->elementStart('p');
+ $this->element('span', 'address unconfirmed', $confirm->address . ' (' . $carrier->name . ')');
+ $this->element('span', 'input_instructions',
_('Awaiting confirmation on this phone number.'));
- common_hidden('sms', $confirm->address);
- common_hidden('carrier', $confirm->address_extra);
- common_element_end('p');
- common_submit('cancel', _('Cancel'));
- common_input('code', _('Confirmation code'), null,
+ $this->hidden('sms', $confirm->address);
+ $this->hidden('carrier', $confirm->address_extra);
+ $this->elementEnd('p');
+ $this->submit('cancel', _('Cancel'));
+ $this->input('code', _('Confirmation code'), null,
_('Enter the code you received on your phone.'));
- common_submit('confirm', _('Confirm'));
+ $this->submit('confirm', _('Confirm'));
} else {
- common_input('sms', _('SMS Phone number'),
+ $this->input('sms', _('SMS Phone number'),
($this->arg('sms')) ? $this->arg('sms') : null,
_('Phone number, no punctuation or spaces, with area code'));
$this->carrier_select();
- common_submit('add', _('Add'));
+ $this->submit('add', _('Add'));
}
}
if ($user->sms) {
- common_element('h2', null, _('Incoming email'));
+ $this->element('h2', null, _('Incoming email'));
if ($user->incomingemail) {
- common_element_start('p');
- common_element('span', 'address', $user->incomingemail);
- common_element('span', 'input_instructions',
+ $this->elementStart('p');
+ $this->element('span', 'address', $user->incomingemail);
+ $this->element('span', 'input_instructions',
_('Send email to this address to post new notices.'));
- common_element_end('p');
- common_submit('removeincoming', _('Remove'));
+ $this->elementEnd('p');
+ $this->submit('removeincoming', _('Remove'));
}
- common_element_start('p');
- common_element('span', 'input_instructions',
+ $this->elementStart('p');
+ $this->element('span', 'input_instructions',
_('Make a new email address for posting to; cancels the old one.'));
- common_element_end('p');
- common_submit('newincoming', _('New'));
+ $this->elementEnd('p');
+ $this->submit('newincoming', _('New'));
}
- common_element('h2', null, _('Preferences'));
+ $this->element('h2', null, _('Preferences'));
- common_checkbox('smsnotify',
+ $this->checkbox('smsnotify',
_('Send me notices through SMS; I understand I may incur exorbitant charges from my carrier.'),
$user->smsnotify);
- common_submit('save', _('Save'));
+ $this->submit('save', _('Save'));
- common_element_end('form');
+ $this->elementEnd('form');
common_show_footer();
}
@@ -168,7 +168,7 @@ class SmssettingsAction extends EmailsettingsAction
if ($result === false) {
common_log_db_error($user, 'UPDATE', __FILE__);
- common_server_error(_('Couldn\'t update user.'));
+ $this->serverError(_('Couldn\'t update user.'));
return;
}
@@ -218,7 +218,7 @@ class SmssettingsAction extends EmailsettingsAction
if ($result === false) {
common_log_db_error($confirm, 'INSERT', __FILE__);
- common_server_error(_('Couldn\'t insert confirmation code.'));
+ $this->serverError(_('Couldn\'t insert confirmation code.'));
return;
}
@@ -254,7 +254,7 @@ class SmssettingsAction extends EmailsettingsAction
if (!$result) {
common_log_db_error($confirm, 'DELETE', __FILE__);
- $this->server_error(_('Couldn\'t delete email confirmation.'));
+ $this->serverError(_('Couldn\'t delete email confirmation.'));
return;
}
@@ -283,7 +283,7 @@ class SmssettingsAction extends EmailsettingsAction
$result = $user->updateKeys($original);
if (!$result) {
common_log_db_error($user, 'UPDATE', __FILE__);
- common_server_error(_('Couldn\'t update user.'));
+ $this->serverError(_('Couldn\'t update user.'));
return;
}
$user->query('COMMIT');
@@ -307,19 +307,19 @@ class SmssettingsAction extends EmailsettingsAction
$carrier = new Sms_carrier();
$cnt = $carrier->find();
- common_element_start('p');
- common_element('label', array('for' => 'carrier'));
- common_element_start('select', array('name' => 'carrier',
+ $this->elementStart('p');
+ $this->element('label', array('for' => 'carrier'));
+ $this->elementStart('select', array('name' => 'carrier',
'id' => 'carrier'));
- common_element('option', array('value' => 0),
+ $this->element('option', array('value' => 0),
_('Select a carrier'));
while ($carrier->fetch()) {
- common_element('option', array('value' => $carrier->id),
+ $this->element('option', array('value' => $carrier->id),
$carrier->name);
}
- common_element_end('select');
- common_element_end('p');
- common_element('span', 'input_instructions',
+ $this->elementEnd('select');
+ $this->elementEnd('p');
+ $this->element('span', 'input_instructions',
sprintf(_('Mobile carrier for your phone. '.
'If you know a carrier that accepts ' .
'SMS over email but isn\'t listed here, ' .
diff --git a/actions/subedit.php b/actions/subedit.php
index 1142b7a03..e22384869 100644
--- a/actions/subedit.php
+++ b/actions/subedit.php
@@ -30,28 +30,28 @@ class SubeditAction extends Action
parent::prepare($args);
if (!common_logged_in()) {
- $this->client_error(_('Not logged in.'));
+ $this->clientError(_('Not logged in.'));
return false;
}
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
- $this->client_error(_('There was a problem with your session token. Try again, please.'));
+ $this->clientError(_('There was a problem with your session token. Try again, please.'));
return;
}
$id = $this->trimmed('profile');
if (!$id) {
- $this->client_error(_('No profile specified.'));
+ $this->clientError(_('No profile specified.'));
return false;
}
$this->profile = Profile::staticGet('id', $id);
if (!$this->profile) {
- $this->client_error(_('No profile with that ID.'));
+ $this->clientError(_('No profile with that ID.'));
return false;
}
@@ -68,7 +68,7 @@ class SubeditAction extends Action
'subscribed' => $this->profile->id));
if (!$sub) {
- $this->client_error(_('You are not subscribed to that profile.'));
+ $this->clientError(_('You are not subscribed to that profile.'));
return false;
}
@@ -81,7 +81,7 @@ class SubeditAction extends Action
if (!$result) {
common_log_db_error($sub, 'UPDATE', __FILE__);
- $this->server_error(_('Could not save subscription.'));
+ $this->serverError(_('Could not save subscription.'));
return false;
}
diff --git a/actions/subscribe.php b/actions/subscribe.php
index f33d1d207..b6f03f0f1 100644
--- a/actions/subscribe.php
+++ b/actions/subscribe.php
@@ -27,7 +27,7 @@ class SubscribeAction extends Action
parent::handle($args);
if (!common_logged_in()) {
- common_user_error(_('Not logged in.'));
+ $this->clientError(_('Not logged in.'));
return;
}
@@ -43,7 +43,7 @@ class SubscribeAction extends Action
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
- $this->client_error(_('There was a problem with your session token. Try again, please.'));
+ $this->clientError(_('There was a problem with your session token. Try again, please.'));
return;
}
@@ -52,26 +52,26 @@ class SubscribeAction extends Action
$other = User::staticGet('id', $other_id);
if (!$other) {
- $this->client_error(_('Not a local user.'));
+ $this->clientError(_('Not a local user.'));
return;
}
$result = subs_subscribe_to($user, $other);
if($result != true) {
- common_user_error($result);
+ $this->clientError($result);
return;
}
if ($this->boolean('ajax')) {
common_start_html('text/xml;charset=utf-8', true);
- common_element_start('head');
- common_element('title', null, _('Subscribed'));
- common_element_end('head');
- common_element_start('body');
+ $this->elementStart('head');
+ $this->element('title', null, _('Subscribed'));
+ $this->elementEnd('head');
+ $this->elementStart('body');
common_unsubscribe_form($other->getProfile());
- common_element_end('body');
- common_element_end('html');
+ $this->elementEnd('body');
+ $this->elementEnd('html');
} else {
common_redirect(common_local_url('subscriptions', array('nickname' =>
$user->nickname)));
diff --git a/actions/subscriptions.php b/actions/subscriptions.php
index afe8fb260..7a87a144f 100644
--- a/actions/subscriptions.php
+++ b/actions/subscriptions.php
@@ -72,16 +72,16 @@ class SubscriptionsList extends ProfileList
return;
}
- common_element_start('form', array('id' => 'subedit-' . $profile->id,
+ $this->elementStart('form', array('id' => 'subedit-' . $profile->id,
'method' => 'post',
'class' => 'subedit',
'action' => common_local_url('subedit')));
- common_hidden('token', common_session_token());
- common_hidden('profile', $profile->id);
- common_checkbox('jabber', _('Jabber'), $sub->jabber);
- common_checkbox('sms', _('SMS'), $sub->sms);
- common_submit('save', _('Save'));
- common_element_end('form');
+ $this->hidden('token', common_session_token());
+ $this->hidden('profile', $profile->id);
+ $this->checkbox('jabber', _('Jabber'), $sub->jabber);
+ $this->checkbox('sms', _('SMS'), $sub->sms);
+ $this->submit('save', _('Save'));
+ $this->elementEnd('form');
return;
}
}
diff --git a/actions/sup.php b/actions/sup.php
index 6a1897585..38e2e2e59 100644
--- a/actions/sup.php
+++ b/actions/sup.php
@@ -79,7 +79,7 @@ class SupAction extends Action
return $updates;
}
- function is_readonly()
+ function isReadOnly()
{
return true;
}
diff --git a/actions/tag.php b/actions/tag.php
index 8a3f90c16..3096b75b3 100644
--- a/actions/tag.php
+++ b/actions/tag.php
@@ -51,7 +51,7 @@ class TagAction extends StreamAction
function show_header($tag = false)
{
if ($tag) {
- common_element('link', array('rel' => 'alternate',
+ $this->element('link', array('rel' => 'alternate',
'href' => common_local_url('tagrss', array('tag' => $tag)),
'type' => 'application/rss+xml',
'title' => sprintf(_('Feed for tag %s'), $tag)));
@@ -68,9 +68,9 @@ class TagAction extends StreamAction
if (!$tag) {
$instr = $this->get_instructions();
$output = common_markup_to_html($instr);
- common_element_start('div', 'instructions');
- common_raw($output);
- common_element_end('div');
+ $this->elementStart('div', 'instructions');
+ $this->raw($output);
+ $this->elementEnd('div');
$this->public_views_menu();
}
else {
@@ -110,7 +110,7 @@ class TagAction extends StreamAction
$cnt = $tags->find();
if ($cnt > 0) {
- common_element_start('p', 'tagcloud');
+ $this->elementStart('p', 'tagcloud');
$tw = array();
$sum = 0;
@@ -125,7 +125,7 @@ class TagAction extends StreamAction
$this->show_tag($tag, $weight, $weight/$sum);
}
- common_element_end('p');
+ $this->elementEnd('p');
}
}
@@ -149,10 +149,10 @@ class TagAction extends StreamAction
$cls = 'smallest';
}
- common_element('a', array('class' => "$cls weight-$weight relative-$relative",
+ $this->element('a', array('class' => "$cls weight-$weight relative-$relative",
'href' => common_local_url('tag', array('tag' => $tag))),
$tag);
- common_text(' ');
+ $this->text(' ');
}
function show_notices($tag)
diff --git a/actions/tagother.php b/actions/tagother.php
index ff6788cc6..e11e3a00d 100644
--- a/actions/tagother.php
+++ b/actions/tagother.php
@@ -30,7 +30,7 @@ class TagotherAction extends Action
parent::handle($args);
if (!common_logged_in()) {
- $this->client_error(_('Not logged in'), 403);
+ $this->clientError(_('Not logged in'), 403);
return;
}
@@ -39,12 +39,12 @@ class TagotherAction extends Action
} else {
$id = $this->trimmed('id');
if (!$id) {
- $this->client_error(_('No id argument.'));
+ $this->clientError(_('No id argument.'));
return;
}
$profile = Profile::staticGet('id', $id);
if (!$profile) {
- $this->client_error(_('No profile with that ID.'));
+ $this->clientError(_('No profile with that ID.'));
return;
}
$this->show_form($profile);
@@ -61,7 +61,7 @@ class TagotherAction extends Action
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
- common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_PROFILE_SIZE),
+ $this->element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_PROFILE_SIZE),
'class' => 'avatar stream',
'width' => AVATAR_PROFILE_SIZE,
'height' => AVATAR_PROFILE_SIZE,
@@ -69,39 +69,39 @@ class TagotherAction extends Action
($profile->fullname) ? $profile->fullname :
$profile->nickname));
- common_element('a', array('href' => $profile->profileurl,
+ $this->element('a', array('href' => $profile->profileurl,
'class' => 'external profile nickname'),
$profile->nickname);
if ($profile->fullname) {
- common_element_start('div', 'fullname');
+ $this->elementStart('div', 'fullname');
if ($profile->homepage) {
- common_element('a', array('href' => $profile->homepage),
+ $this->element('a', array('href' => $profile->homepage),
$profile->fullname);
} else {
- common_text($profile->fullname);
+ $this->text($profile->fullname);
}
- common_element_end('div');
+ $this->elementEnd('div');
}
if ($profile->location) {
- common_element('div', 'location', $profile->location);
+ $this->element('div', 'location', $profile->location);
}
if ($profile->bio) {
- common_element('div', 'bio', $profile->bio);
+ $this->element('div', 'bio', $profile->bio);
}
- common_element_start('form', array('method' => 'post',
+ $this->elementStart('form', array('method' => 'post',
'id' => 'tag_user',
'name' => 'tagother',
'action' => $this->self_url()));
- common_hidden('token', common_session_token());
- common_hidden('id', $profile->id);
- common_input('tags', _('Tags'),
+ $this->hidden('token', common_session_token());
+ $this->hidden('id', $profile->id);
+ $this->input('tags', _('Tags'),
($this->arg('tags')) ? $this->arg('tags') : implode(' ', Profile_tag::getTags($user->id, $profile->id)),
_('Tags for this user (letters, numbers, -, ., and _), comma- or space- separated'));
- common_submit('save', _('Save'));
- common_element_end('form');
+ $this->submit('save', _('Save'));
+ $this->elementEnd('form');
common_show_footer();
}
@@ -121,7 +121,7 @@ class TagotherAction extends Action
$profile = Profile::staticGet('id', $id);
if (!$profile) {
- $this->client_error(_('No such profile.'));
+ $this->clientError(_('No such profile.'));
return;
}
@@ -147,14 +147,14 @@ class TagotherAction extends Action
!Subscription::pkeyGet(array('subscriber' => $profile->id,
'subscribed' => $user->id)))
{
- $this->client_error(_('You can only tag people you are subscribed to or who are subscribed to you.'));
+ $this->clientError(_('You can only tag people you are subscribed to or who are subscribed to you.'));
return;
}
$result = Profile_tag::setTags($user->id, $profile->id, $tags);
if (!$result) {
- $this->client_error(_('Could not save tags.'));
+ $this->clientError(_('Could not save tags.'));
return;
}
@@ -162,20 +162,20 @@ class TagotherAction extends Action
if ($this->boolean('ajax')) {
common_start_html('text/xml');
- common_element_start('head');
- common_element('title', null, _('Tags'));
- common_element_end('head');
- common_element_start('body');
- common_element_start('p', 'subtags');
+ $this->elementStart('head');
+ $this->element('title', null, _('Tags'));
+ $this->elementEnd('head');
+ $this->elementStart('body');
+ $this->elementStart('p', 'subtags');
foreach ($tags as $tag) {
- common_element('a', array('href' => common_local_url($action,
+ $this->element('a', array('href' => common_local_url($action,
array('nickname' => $user->nickname,
'tag' => $tag))),
$tag);
}
- common_element_end('p');
- common_element_end('body');
- common_element_end('html');
+ $this->elementEnd('p');
+ $this->elementEnd('body');
+ $this->elementEnd('html');
} else {
common_redirect(common_local_url($action, array('nickname' =>
$user->nickname)));
@@ -186,12 +186,12 @@ class TagotherAction extends Action
{
list($profile, $error) = $arr;
if ($error) {
- common_element('p', 'error', $error);
+ $this->element('p', 'error', $error);
} else {
- common_element_start('div', 'instructions');
- common_element('p', null,
+ $this->elementStart('div', 'instructions');
+ $this->element('p', null,
_('Use this form to add tags to your subscribers or subscriptions.'));
- common_element_end('div');
+ $this->elementEnd('div');
}
}
}
diff --git a/actions/tagrss.php b/actions/tagrss.php
index 912d71413..b0227ab39 100644
--- a/actions/tagrss.php
+++ b/actions/tagrss.php
@@ -32,7 +32,7 @@ class TagrssAction extends Rss10Action
$this->tag = Notice_tag::staticGet('tag', $tag);
if (!$this->tag) {
- common_user_error(_('No such tag.'));
+ $this->clientError(_('No such tag.'));
return false;
} else {
return true;
diff --git a/actions/twitapiaccount.php b/actions/twitapiaccount.php
index 79e1ed990..e51a29a2d 100644
--- a/actions/twitapiaccount.php
+++ b/actions/twitapiaccount.php
@@ -29,7 +29,7 @@ class TwitapiaccountAction extends TwitterapiAction
parent::handle($args);
if (!in_array($apidata['content-type'], array('xml', 'json'))) {
- common_user_error(_('API method not found!'), $code = 404);
+ $this->clientError(_('API method not found!'), $code = 404);
return;
}
@@ -39,7 +39,7 @@ class TwitapiaccountAction extends TwitterapiAction
function end_session($args, $apidata)
{
parent::handle($args);
- common_server_error(_('API method under construction.'), $code=501);
+ $this->serverError(_('API method under construction.'), $code=501);
}
function update_location($args, $apidata)
@@ -47,7 +47,7 @@ class TwitapiaccountAction extends TwitterapiAction
parent::handle($args);
if ($_SERVER['REQUEST_METHOD'] != 'POST') {
- $this->client_error(_('This method requires a POST.'), 400, $apidata['content-type']);
+ $this->clientError(_('This method requires a POST.'), 400, $apidata['content-type']);
return;
}
@@ -56,7 +56,7 @@ class TwitapiaccountAction extends TwitterapiAction
if (!is_null($location) && strlen($location) > 255) {
// XXX: But Twitter just truncates and runs with it. -- Zach
- $this->client_error(_('That\'s too long. Max notice size is 255 chars.'), 406, $apidate['content-type']);
+ $this->clientError(_('That\'s too long. Max notice size is 255 chars.'), 406, $apidate['content-type']);
return;
}
@@ -64,7 +64,7 @@ class TwitapiaccountAction extends TwitterapiAction
$profile = $user->getProfile();
if (!$profile) {
- common_server_error(_('User has no profile.'));
+ $this->serverError(_('User has no profile.'));
return;
}
@@ -75,7 +75,7 @@ class TwitapiaccountAction extends TwitterapiAction
if (!$result) {
common_log_db_error($profile, 'UPDATE', __FILE__);
- common_server_error(_('Couldn\'t save profile.'));
+ $this->serverError(_('Couldn\'t save profile.'));
return;
}
@@ -91,12 +91,12 @@ class TwitapiaccountAction extends TwitterapiAction
function update_delivery_device($args, $apidata)
{
parent::handle($args);
- common_server_error(_('API method under construction.'), $code=501);
+ $this->serverError(_('API method under construction.'), $code=501);
}
function rate_limit_status($args, $apidata)
{
parent::handle($args);
- common_server_error(_('API method under construction.'), $code=501);
+ $this->serverError(_('API method under construction.'), $code=501);
}
} \ No newline at end of file
diff --git a/actions/twitapiblocks.php b/actions/twitapiblocks.php
index 5d64f2f7d..8135adef3 100644
--- a/actions/twitapiblocks.php
+++ b/actions/twitapiblocks.php
@@ -32,7 +32,7 @@ class TwitapiblocksAction extends TwitterapiAction
$blockee = $this->get_user($apidata['api_arg'], $apidata);
if (!$blockee) {
- $this->client_error('Not Found', 404, $apidata['content-type']);
+ $this->clientError('Not Found', 404, $apidata['content-type']);
return;
}
@@ -44,7 +44,7 @@ class TwitapiblocksAction extends TwitterapiAction
$this->show_profile($blockee, $type);
$this->end_document($type);
} else {
- common_server_error(_('Block user failed.'));
+ $this->serverError(_('Block user failed.'));
}
}
@@ -54,7 +54,7 @@ class TwitapiblocksAction extends TwitterapiAction
$blockee = $this->get_user($apidata['api_arg'], $apidata);
if (!$blockee) {
- $this->client_error('Not Found', 404, $apidata['content-type']);
+ $this->clientError('Not Found', 404, $apidata['content-type']);
return;
}
@@ -66,7 +66,7 @@ class TwitapiblocksAction extends TwitterapiAction
$this->show_profile($blockee, $type);
$this->end_document($type);
} else {
- common_server_error(_('Unblock user failed.'));
+ $this->serverError(_('Unblock user failed.'));
}
}
} \ No newline at end of file
diff --git a/actions/twitapidirect_messages.php b/actions/twitapidirect_messages.php
index e0731f66f..db55e8cd0 100644
--- a/actions/twitapidirect_messages.php
+++ b/actions/twitapidirect_messages.php
@@ -108,7 +108,7 @@ class Twitapidirect_messagesAction extends TwitterapiAction
$this->show_json_dmsgs($message);
break;
default:
- common_user_error(_('API method not found!'), $code = 404);
+ $this->clientError(_('API method not found!'), $code = 404);
}
}
@@ -119,7 +119,7 @@ class Twitapidirect_messagesAction extends TwitterapiAction
parent::handle($args);
if ($_SERVER['REQUEST_METHOD'] != 'POST') {
- $this->client_error(_('This method requires a POST.'), 400, $apidata['content-type']);
+ $this->clientError(_('This method requires a POST.'), 400, $apidata['content-type']);
return;
}
@@ -134,11 +134,11 @@ class Twitapidirect_messagesAction extends TwitterapiAction
$content = $this->trimmed('text');
if (!$content) {
- $this->client_error(_('No message text!'), $code = 406, $apidata['content-type']);
+ $this->clientError(_('No message text!'), $code = 406, $apidata['content-type']);
} else {
$content_shortened = common_shorten_links($content);
if (mb_strlen($content_shortened) > 140) {
- $this->client_error(_('That\'s too long. Max message size is 140 chars.'),
+ $this->clientError(_('That\'s too long. Max message size is 140 chars.'),
$code = 406, $apidata['content-type']);
return;
}
@@ -147,15 +147,15 @@ class Twitapidirect_messagesAction extends TwitterapiAction
$other = $this->get_user($this->trimmed('user'));
if (!$other) {
- $this->client_error(_('Recipient user not found.'), $code = 403, $apidata['content-type']);
+ $this->clientError(_('Recipient user not found.'), $code = 403, $apidata['content-type']);
return;
} else if (!$user->mutuallySubscribed($other)) {
- $this->client_error(_('Can\'t send direct messages to users who aren\'t your friend.'),
+ $this->clientError(_('Can\'t send direct messages to users who aren\'t your friend.'),
$code = 403, $apidata['content-type']);
return;
} else if ($user->id == $other->id) {
// Sending msgs to yourself is allowed by Twitter
- $this->client_error(_('Don\'t send a message to yourself; just say it to yourself quietly instead.'),
+ $this->clientError(_('Don\'t send a message to yourself; just say it to yourself quietly instead.'),
$code = 403, $apidata['content-type']);
return;
}
@@ -164,7 +164,7 @@ class Twitapidirect_messagesAction extends TwitterapiAction
html_entity_decode($content, ENT_NOQUOTES, 'UTF-8'), $source);
if (is_string($message)) {
- $this->server_error($message);
+ $this->serverError($message);
return;
}
@@ -181,14 +181,14 @@ class Twitapidirect_messagesAction extends TwitterapiAction
function destroy($args, $apidata)
{
parent::handle($args);
- common_server_error(_('API method under construction.'), $code=501);
+ $this->serverError(_('API method under construction.'), $code=501);
}
function show_xml_dmsgs($message)
{
$this->init_document('xml');
- common_element_start('direct-messages', array('type' => 'array'));
+ $this->elementStart('direct-messages', array('type' => 'array'));
if (is_array($messages)) {
foreach ($message as $m) {
@@ -202,7 +202,7 @@ class Twitapidirect_messagesAction extends TwitterapiAction
}
}
- common_element_end('direct-messages');
+ $this->elementEnd('direct-messages');
$this->end_document('xml');
}
@@ -236,13 +236,13 @@ class Twitapidirect_messagesAction extends TwitterapiAction
$this->init_document('rss');
- common_element_start('channel');
- common_element('title', null, $title);
+ $this->elementStart('channel');
+ $this->element('title', null, $title);
- common_element('link', null, $link);
- common_element('description', null, $subtitle);
- common_element('language', null, 'en-us');
- common_element('ttl', null, '40');
+ $this->element('link', null, $link);
+ $this->element('description', null, $subtitle);
+ $this->element('language', null, 'en-us');
+ $this->element('ttl', null, '40');
if (is_array($message)) {
foreach ($message as $m) {
@@ -256,7 +256,7 @@ class Twitapidirect_messagesAction extends TwitterapiAction
}
}
- common_element_end('channel');
+ $this->elementEnd('channel');
$this->end_twitter_rss();
}
@@ -266,12 +266,12 @@ class Twitapidirect_messagesAction extends TwitterapiAction
$this->init_document('atom');
- common_element('title', null, $title);
+ $this->element('title', null, $title);
$siteserver = common_config('site', 'server');
- common_element('id', null, "tag:$siteserver,2008:DirectMessage");
- common_element('link', array('href' => $link, 'rel' => 'alternate', 'type' => 'text/html'), null);
- common_element('updated', null, common_date_iso8601(strftime('%c')));
- common_element('subtitle', null, $subtitle);
+ $this->element('id', null, "tag:$siteserver,2008:DirectMessage");
+ $this->element('link', array('href' => $link, 'rel' => 'alternate', 'type' => 'text/html'), null);
+ $this->element('updated', null, common_date_iso8601(strftime('%c')));
+ $this->element('subtitle', null, $subtitle);
if (is_array($message)) {
foreach ($message as $m) {
diff --git a/actions/twitapifavorites.php b/actions/twitapifavorites.php
index 55e04732f..737b7229f 100644
--- a/actions/twitapifavorites.php
+++ b/actions/twitapifavorites.php
@@ -32,14 +32,14 @@ class TwitapifavoritesAction extends TwitterapiAction
$user = $this->get_user($apidata['api_arg'], $apidata);
if (!$user) {
- $this->client_error('Not Found', 404, $apidata['content-type']);
+ $this->clientError('Not Found', 404, $apidata['content-type']);
return;
}
$profile = $user->getProfile();
if (!$profile) {
- common_server_error(_('User has no profile.'));
+ $this->serverError(_('User has no profile.'));
return;
}
@@ -56,7 +56,7 @@ class TwitapifavoritesAction extends TwitterapiAction
$notice = $user->favoriteNotices((($page-1)*20), $count);
if (!$notice) {
- common_server_error(_('Could not retrieve favorite notices.'));
+ $this->serverError(_('Could not retrieve favorite notices.'));
return;
}
@@ -82,7 +82,7 @@ class TwitapifavoritesAction extends TwitterapiAction
$this->show_json_timeline($notice);
break;
default:
- common_user_error(_('API method not found!'), $code = 404);
+ $this->clientError(_('API method not found!'), $code = 404);
}
}
@@ -94,12 +94,12 @@ class TwitapifavoritesAction extends TwitterapiAction
// Check for RESTfulness
if (!in_array($_SERVER['REQUEST_METHOD'], array('POST', 'DELETE'))) {
// XXX: Twitter just prints the err msg, no XML / JSON.
- $this->client_error(_('This method requires a POST or DELETE.'), 400, $apidata['content-type']);
+ $this->clientError(_('This method requires a POST or DELETE.'), 400, $apidata['content-type']);
return;
}
if (!in_array($apidata['content-type'], array('xml', 'json'))) {
- common_user_error(_('API method not found!'), $code = 404);
+ $this->clientError(_('API method not found!'), $code = 404);
return;
}
@@ -109,20 +109,20 @@ class TwitapifavoritesAction extends TwitterapiAction
$notice = Notice::staticGet($notice_id);
if (!$notice) {
- $this->client_error(_('No status found with that ID.'), 404, $apidata['content-type']);
+ $this->clientError(_('No status found with that ID.'), 404, $apidata['content-type']);
return;
}
// XXX: Twitter lets you fave things repeatedly via api.
if ($user->hasFave($notice)) {
- $this->client_error(_('This notice is already a favorite!'), 403, $apidata['content-type']);
+ $this->clientError(_('This notice is already a favorite!'), 403, $apidata['content-type']);
return;
}
$fave = Fave::addNew($user, $notice);
if (!$fave) {
- common_server_error(_('Could not create favorite.'));
+ $this->serverError(_('Could not create favorite.'));
return;
}
@@ -140,7 +140,7 @@ class TwitapifavoritesAction extends TwitterapiAction
function destroy($args, $apidata)
{
parent::handle($args);
- common_server_error(_('API method under construction.'), $code=501);
+ $this->serverError(_('API method under construction.'), $code=501);
}
// XXX: these two funcs swiped from faves. Maybe put in util.php, or some common base class?
diff --git a/actions/twitapifriendships.php b/actions/twitapifriendships.php
index ba4afe441..c50c5e84a 100644
--- a/actions/twitapifriendships.php
+++ b/actions/twitapifriendships.php
@@ -29,7 +29,7 @@ class TwitapifriendshipsAction extends TwitterapiAction
parent::handle($args);
if ($_SERVER['REQUEST_METHOD'] != 'POST') {
- $this->client_error(_('This method requires a POST.'), 400, $apidata['content-type']);
+ $this->clientError(_('This method requires a POST.'), 400, $apidata['content-type']);
return;
}
@@ -38,7 +38,7 @@ class TwitapifriendshipsAction extends TwitterapiAction
$other = $this->get_user($id);
if (!$other) {
- $this->client_error(_('Could not follow user: User not found.'), 403, $apidata['content-type']);
+ $this->clientError(_('Could not follow user: User not found.'), 403, $apidata['content-type']);
return;
}
@@ -46,7 +46,7 @@ class TwitapifriendshipsAction extends TwitterapiAction
if ($user->isSubscribed($other)) {
$errmsg = sprintf(_('Could not follow user: %s is already on your list.'), $other->nickname);
- $this->client_error($errmsg, 403, $apidata['content-type']);
+ $this->clientError($errmsg, 403, $apidata['content-type']);
return;
}
@@ -62,7 +62,7 @@ class TwitapifriendshipsAction extends TwitterapiAction
if (!$result) {
$errmsg = sprintf(_('Could not follow user: %s is already on your list.'), $other->nickname);
- $this->client_error($errmsg, 400, $apidata['content-type']);
+ $this->clientError($errmsg, 400, $apidata['content-type']);
return;
}
@@ -82,7 +82,7 @@ class TwitapifriendshipsAction extends TwitterapiAction
parent::handle($args);
if (!in_array($_SERVER['REQUEST_METHOD'], array('POST', 'DELETE'))) {
- $this->client_error(_('This method requires a POST or DELETE.'), 400, $apidata['content-type']);
+ $this->clientError(_('This method requires a POST or DELETE.'), 400, $apidata['content-type']);
return;
}
@@ -102,7 +102,7 @@ class TwitapifriendshipsAction extends TwitterapiAction
$sub->delete();
$sub->query('COMMIT');
} else {
- $this->client_error(_('You are not friends with the specified user.'), 403, $apidata['content-type']);
+ $this->clientError(_('You are not friends with the specified user.'), 403, $apidata['content-type']);
return;
}
@@ -118,7 +118,7 @@ class TwitapifriendshipsAction extends TwitterapiAction
parent::handle($args);
if (!in_array($apidata['content-type'], array('xml', 'json'))) {
- common_user_error(_('API method not found!'), $code = 404);
+ $this->clientError(_('API method not found!'), $code = 404);
return;
}
@@ -129,7 +129,7 @@ class TwitapifriendshipsAction extends TwitterapiAction
$user_b = $this->get_user($user_b_id);
if (!$user_a || !$user_b) {
- $this->client_error(_('Two user ids or screen_names must be supplied.'), 400, $apidata['content-type']);
+ $this->clientError(_('Two user ids or screen_names must be supplied.'), 400, $apidata['content-type']);
return;
}
@@ -142,7 +142,7 @@ class TwitapifriendshipsAction extends TwitterapiAction
switch ($apidata['content-type']) {
case 'xml':
$this->init_document('xml');
- common_element('friends', null, $result);
+ $this->element('friends', null, $result);
$this->end_document('xml');
break;
case 'json':
diff --git a/actions/twitapihelp.php b/actions/twitapihelp.php
index 1b84cb11b..db5892baf 100644
--- a/actions/twitapihelp.php
+++ b/actions/twitapihelp.php
@@ -34,14 +34,14 @@ class TwitapihelpAction extends TwitterapiAction
if ($apidata['content-type'] == 'xml') {
$this->init_document('xml');
- common_element('ok', null, 'true');
+ $this->element('ok', null, 'true');
$this->end_document('xml');
} elseif ($apidata['content-type'] == 'json') {
$this->init_document('json');
print '"ok"';
$this->end_document('json');
} else {
- common_user_error(_('API method not found!'), $code=404);
+ $this->clientError(_('API method not found!'), $code=404);
}
}
@@ -49,7 +49,7 @@ class TwitapihelpAction extends TwitterapiAction
function downtime_schedule($args, $apidata)
{
parent::handle($args);
- common_server_error(_('API method under construction.'), $code=501);
+ $this->serverError(_('API method under construction.'), $code=501);
}
} \ No newline at end of file
diff --git a/actions/twitapilaconica.php b/actions/twitapilaconica.php
index 722423fae..8cd7a64b9 100644
--- a/actions/twitapilaconica.php
+++ b/actions/twitapilaconica.php
@@ -70,7 +70,7 @@ class TwitapilaconicaAction extends TwitterapiAction
switch ($apidata['content-type']) {
case 'xml':
$this->init_document('xml');
- common_element('version', null, LACONICA_VERSION);
+ $this->element('version', null, LACONICA_VERSION);
$this->end_document('xml');
break;
case 'json':
@@ -79,7 +79,7 @@ class TwitapilaconicaAction extends TwitterapiAction
$this->end_document('json');
break;
default:
- $this->client_error(_('API method not found!'), $code=404);
+ $this->clientError(_('API method not found!'), $code=404);
}
}
@@ -115,10 +115,10 @@ class TwitapilaconicaAction extends TwitterapiAction
switch ($apidata['content-type']) {
case 'xml':
$this->init_document('xml');
- common_element_start('config');
+ $this->elementStart('config');
// XXX: check that all sections and settings are legal XML elements
foreach ($keys as $section => $settings) {
- common_element_start($section);
+ $this->elementStart($section);
foreach ($settings as $setting) {
$value = common_config($section, $setting);
if (is_array($value)) {
@@ -128,11 +128,11 @@ class TwitapilaconicaAction extends TwitterapiAction
} else if ($value === true) {
$value = 'true';
}
- common_element($setting, null, $value);
+ $this->element($setting, null, $value);
}
- common_element_end($section);
+ $this->elementEnd($section);
}
- common_element_end('config');
+ $this->elementEnd('config');
$this->end_document('xml');
break;
case 'json':
@@ -148,7 +148,7 @@ class TwitapilaconicaAction extends TwitterapiAction
$this->end_document('json');
break;
default:
- $this->client_error(_('API method not found!'), $code=404);
+ $this->clientError(_('API method not found!'), $code=404);
}
}
@@ -169,6 +169,6 @@ class TwitapilaconicaAction extends TwitterapiAction
function wadl($args, $apidata)
{
parent::handle($args);
- common_server_error(_('API method under construction.'), 501);
+ $this->serverError(_('API method under construction.'), 501);
}
}
diff --git a/actions/twitapinotifications.php b/actions/twitapinotifications.php
index a19d652c3..411971af1 100644
--- a/actions/twitapinotifications.php
+++ b/actions/twitapinotifications.php
@@ -28,13 +28,13 @@ class TwitapinotificationsAction extends TwitterapiAction
function follow($args, $apidata)
{
parent::handle($args);
- common_server_error(_('API method under construction.'), $code=501);
+ $this->serverError(_('API method under construction.'), $code=501);
}
function leave($args, $apidata)
{
parent::handle($args);
- common_server_error(_('API method under construction.'), $code=501);
+ $this->serverError(_('API method under construction.'), $code=501);
}
} \ No newline at end of file
diff --git a/actions/twitapistatuses.php b/actions/twitapistatuses.php
index e629d5cc4..a35f4b12e 100644
--- a/actions/twitapistatuses.php
+++ b/actions/twitapistatuses.php
@@ -76,12 +76,12 @@ class TwitapistatusesAction extends TwitterapiAction
$this->show_json_timeline($notice);
break;
default:
- common_user_error(_('API method not found!'), $code = 404);
+ $this->clientError(_('API method not found!'), $code = 404);
break;
}
} else {
- common_server_error(_('Couldn\'t find any statuses.'), $code = 503);
+ $this->serverError(_('Couldn\'t find any statuses.'), $code = 503);
}
}
@@ -144,7 +144,7 @@ class TwitapistatusesAction extends TwitterapiAction
$this->show_json_timeline($notice);
break;
default:
- common_user_error(_('API method not found!'), $code = 404);
+ $this->clientError(_('API method not found!'), $code = 404);
}
}
@@ -157,14 +157,14 @@ class TwitapistatusesAction extends TwitterapiAction
$user = $this->get_user($apidata['api_arg'], $apidata);
if (!$user) {
- $this->client_error('Not Found', 404, $apidata['content-type']);
+ $this->clientError('Not Found', 404, $apidata['content-type']);
return;
}
$profile = $user->getProfile();
if (!$profile) {
- common_server_error(_('User has no profile.'));
+ $this->serverError(_('User has no profile.'));
return;
}
@@ -225,7 +225,7 @@ class TwitapistatusesAction extends TwitterapiAction
$this->show_json_timeline($notice);
break;
default:
- common_user_error(_('API method not found!'), $code = 404);
+ $this->clientError(_('API method not found!'), $code = 404);
}
}
@@ -236,12 +236,12 @@ class TwitapistatusesAction extends TwitterapiAction
parent::handle($args);
if (!in_array($apidata['content-type'], array('xml', 'json'))) {
- common_user_error(_('API method not found!'), $code = 404);
+ $this->clientError(_('API method not found!'), $code = 404);
return;
}
if ($_SERVER['REQUEST_METHOD'] != 'POST') {
- $this->client_error(_('This method requires a POST.'), 400, $apidata['content-type']);
+ $this->clientError(_('This method requires a POST.'), 400, $apidata['content-type']);
return;
}
@@ -273,7 +273,7 @@ class TwitapistatusesAction extends TwitterapiAction
// as "truncated." Sending this error may screw up some clients
// that assume Twitter will truncate for them. Should we just
// truncate too? -- Zach
- $this->client_error(_('That\'s too long. Max notice size is 140 chars.'), $code = 406, $apidata['content-type']);
+ $this->clientError(_('That\'s too long. Max notice size is 140 chars.'), $code = 406, $apidata['content-type']);
return;
}
@@ -306,7 +306,7 @@ class TwitapistatusesAction extends TwitterapiAction
if ($reply) {
$reply_to = $in_reply_to_status_id;
} else {
- $this->client_error(_('Not found'), $code = 404, $apidata['content-type']);
+ $this->clientError(_('Not found'), $code = 404, $apidata['content-type']);
return;
}
}
@@ -315,7 +315,7 @@ class TwitapistatusesAction extends TwitterapiAction
$source, 1, $reply_to);
if (is_string($notice)) {
- $this->server_error($notice);
+ $this->serverError($notice);
return;
}
@@ -389,7 +389,7 @@ class TwitapistatusesAction extends TwitterapiAction
$this->show_json_timeline($notices);
break;
default:
- common_user_error(_('API method not found!'), $code = 404);
+ $this->clientError(_('API method not found!'), $code = 404);
}
}
@@ -399,7 +399,7 @@ class TwitapistatusesAction extends TwitterapiAction
parent::handle($args);
if (!in_array($apidata['content-type'], array('xml', 'json'))) {
- common_user_error(_('API method not found!'), $code = 404);
+ $this->clientError(_('API method not found!'), $code = 404);
return;
}
@@ -415,7 +415,7 @@ class TwitapistatusesAction extends TwitterapiAction
}
} else {
// XXX: Twitter just sets a 404 header and doens't bother to return an err msg
- $this->client_error(_('No status with that ID found.'), 404, $apidata['content-type']);
+ $this->clientError(_('No status with that ID found.'), 404, $apidata['content-type']);
}
}
@@ -426,14 +426,14 @@ class TwitapistatusesAction extends TwitterapiAction
parent::handle($args);
if (!in_array($apidata['content-type'], array('xml', 'json'))) {
- common_user_error(_('API method not found!'), $code = 404);
+ $this->clientError(_('API method not found!'), $code = 404);
return;
}
// Check for RESTfulness
if (!in_array($_SERVER['REQUEST_METHOD'], array('POST', 'DELETE'))) {
// XXX: Twitter just prints the err msg, no XML / JSON.
- $this->client_error(_('This method requires a POST or DELETE.'), 400, $apidata['content-type']);
+ $this->clientError(_('This method requires a POST or DELETE.'), 400, $apidata['content-type']);
return;
}
@@ -443,7 +443,7 @@ class TwitapistatusesAction extends TwitterapiAction
$notice = Notice::staticGet($notice_id);
if (!$notice) {
- $this->client_error(_('No status found with that ID.'), 404, $apidata['content-type']);
+ $this->clientError(_('No status found with that ID.'), 404, $apidata['content-type']);
return;
}
@@ -460,7 +460,7 @@ class TwitapistatusesAction extends TwitterapiAction
$this->show_single_json_status($notice);
}
} else {
- $this->client_error(_('You may not delete another user\'s status.'), 403, $apidata['content-type']);
+ $this->clientError(_('You may not delete another user\'s status.'), 403, $apidata['content-type']);
}
}
@@ -487,7 +487,7 @@ class TwitapistatusesAction extends TwitterapiAction
$user = $this->get_user($apidata['api_arg'], $apidata);
if (!$user) {
- $this->client_error('Not Found', 404, $apidata['content-type']);
+ $this->clientError('Not Found', 404, $apidata['content-type']);
return;
}
@@ -500,7 +500,7 @@ class TwitapistatusesAction extends TwitterapiAction
$profile = $user->getProfile();
if (!$profile) {
- common_server_error(_('User has no profile.'));
+ $this->serverError(_('User has no profile.'));
return;
}
@@ -538,11 +538,11 @@ class TwitapistatusesAction extends TwitterapiAction
{
switch ($type) {
case 'xml':
- common_element_start('users', array('type' => 'array'));
+ $this->elementStart('users', array('type' => 'array'));
foreach ($profiles as $profile) {
$this->show_profile($profile);
}
- common_element_end('users');
+ $this->elementEnd('users');
break;
case 'json':
$arrays = array();
@@ -552,14 +552,14 @@ class TwitapistatusesAction extends TwitterapiAction
print json_encode($arrays);
break;
default:
- $this->client_error(_('unsupported file type'));
+ $this->clientError(_('unsupported file type'));
}
}
function featured($args, $apidata)
{
parent::handle($args);
- common_server_error(_('API method under construction.'), $code=501);
+ $this->serverError(_('API method under construction.'), $code=501);
}
function supported($cmd)
diff --git a/actions/twitapiusers.php b/actions/twitapiusers.php
index 409986985..ed2417561 100644
--- a/actions/twitapiusers.php
+++ b/actions/twitapiusers.php
@@ -29,7 +29,7 @@ class TwitapiusersAction extends TwitterapiAction
parent::handle($args);
if (!in_array($apidata['content-type'], array('xml', 'json'))) {
- common_user_error(_('API method not found!'), $code = 404);
+ $this->clientError(_('API method not found!'), $code = 404);
return;
}
@@ -44,7 +44,7 @@ class TwitapiusersAction extends TwitterapiAction
if (!$user) {
// XXX: Twitter returns a random(?) user instead of throwing and err! -- Zach
- $this->client_error(_('Not found.'), 404, $apidata['content-type']);
+ $this->clientError(_('Not found.'), 404, $apidata['content-type']);
return;
}
diff --git a/actions/twittersettings.php b/actions/twittersettings.php
index 62262e021..d6d31c483 100644
--- a/actions/twittersettings.php
+++ b/actions/twittersettings.php
@@ -44,52 +44,52 @@ class TwittersettingsAction extends SettingsAction
}
$this->form_header(_('Twitter settings'), $msg, $success);
- common_element_start('form', array('method' => 'post',
+ $this->elementStart('form', array('method' => 'post',
'id' => 'twittersettings',
'action' =>
common_local_url('twittersettings')));
- common_hidden('token', common_session_token());
+ $this->hidden('token', common_session_token());
- common_element('h2', null, _('Twitter Account'));
+ $this->element('h2', null, _('Twitter Account'));
if ($fuser) {
- common_element_start('p');
+ $this->elementStart('p');
- common_element('span', 'twitter_user', $fuser->nickname);
- common_element('a', array('href' => $fuser->uri), $fuser->uri);
- common_element('span', 'input_instructions',
+ $this->element('span', 'twitter_user', $fuser->nickname);
+ $this->element('a', array('href' => $fuser->uri), $fuser->uri);
+ $this->element('span', 'input_instructions',
_('Current verified Twitter account.'));
- common_hidden('flink_foreign_id', $flink->foreign_id);
- common_element_end('p');
- common_submit('remove', _('Remove'));
+ $this->hidden('flink_foreign_id', $flink->foreign_id);
+ $this->elementEnd('p');
+ $this->submit('remove', _('Remove'));
} else {
- common_input('twitter_username', _('Twitter user name'),
+ $this->input('twitter_username', _('Twitter user name'),
($this->arg('twitter_username')) ? $this->arg('twitter_username') : $profile->nickname,
_('No spaces, please.')); // hey, it's what Twitter says
- common_password('twitter_password', _('Twitter password'));
+ $this->password('twitter_password', _('Twitter password'));
}
- common_element('h2', null, _('Preferences'));
+ $this->element('h2', null, _('Preferences'));
- common_checkbox('noticesync', _('Automatically send my notices to Twitter.'),
+ $this->checkbox('noticesync', _('Automatically send my notices to Twitter.'),
($flink) ? ($flink->noticesync & FOREIGN_NOTICE_SEND) : true);
- common_checkbox('replysync', _('Send local "@" replies to Twitter.'),
+ $this->checkbox('replysync', _('Send local "@" replies to Twitter.'),
($flink) ? ($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) : true);
- common_checkbox('friendsync', _('Subscribe to my Twitter friends here.'),
+ $this->checkbox('friendsync', _('Subscribe to my Twitter friends here.'),
($flink) ? ($flink->friendsync & FOREIGN_FRIEND_RECV) : false);
if ($flink) {
- common_submit('save', _('Save'));
+ $this->submit('save', _('Save'));
} else {
- common_submit('add', _('Add'));
+ $this->submit('add', _('Add'));
}
$this->show_twitter_subscriptions();
- common_element_end('form');
+ $this->elementEnd('form');
common_show_footer();
}
@@ -131,9 +131,9 @@ class TwittersettingsAction extends SettingsAction
if ($friends_count > 0) {
- common_element('h3', null, _('Twitter Friends'));
- common_element_start('div', array('id' => 'subscriptions'));
- common_element_start('ul', array('id' => 'subscriptions_avatars'));
+ $this->element('h3', null, _('Twitter Friends'));
+ $this->elementStart('div', array('id' => 'subscriptions'));
+ $this->elementStart('ul', array('id' => 'subscriptions_avatars'));
for ($i = 0; $i < min($friends_count, SUBSCRIPTIONS); $i++) {
@@ -144,28 +144,28 @@ class TwittersettingsAction extends SettingsAction
continue;
}
- common_element_start('li');
- common_element_start('a', array('title' => ($other->fullname) ?
+ $this->elementStart('li');
+ $this->elementStart('a', array('title' => ($other->fullname) ?
$other->fullname :
$other->nickname,
'href' => $other->profileurl,
'rel' => 'contact',
'class' => 'subscription'));
$avatar = $other->getAvatar(AVATAR_MINI_SIZE);
- common_element('img', array('src' => (($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_MINI_SIZE)),
+ $this->element('img', array('src' => (($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_MINI_SIZE)),
'width' => AVATAR_MINI_SIZE,
'height' => AVATAR_MINI_SIZE,
'class' => 'avatar mini',
'alt' => ($other->fullname) ?
$other->fullname :
$other->nickname));
- common_element_end('a');
- common_element_end('li');
+ $this->elementEnd('a');
+ $this->elementEnd('li');
}
- common_element_end('ul');
- common_element_end('div');
+ $this->elementEnd('ul');
+ $this->elementEnd('div');
}
@@ -173,13 +173,13 @@ class TwittersettingsAction extends SettingsAction
/*
if ($subs_count > SUBSCRIPTIONS) {
- common_element_start('p', array('id' => 'subscriptions_viewall'));
+ $this->elementStart('p', array('id' => 'subscriptions_viewall'));
- common_element('a', array('href' => common_local_url('subscriptions',
+ $this->element('a', array('href' => common_local_url('subscriptions',
array('nickname' => $profile->nickname)),
'class' => 'moresubscriptions'),
_('All subscriptions'));
- common_element_end('p');
+ $this->elementEnd('p');
}
*/
@@ -285,7 +285,7 @@ class TwittersettingsAction extends SettingsAction
if (!$result) {
common_log_db_error($flink, 'DELETE', __FILE__);
- common_server_error(_('Couldn\'t remove Twitter user.'));
+ $this->serverError(_('Couldn\'t remove Twitter user.'));
return;
}
diff --git a/actions/unblock.php b/actions/unblock.php
index 112304f71..59270f882 100644
--- a/actions/unblock.php
+++ b/actions/unblock.php
@@ -30,28 +30,28 @@ class UnblockAction extends Action
parent::prepare($args);
if (!common_logged_in()) {
- $this->client_error(_('Not logged in.'));
+ $this->clientError(_('Not logged in.'));
return false;
}
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
- $this->client_error(_('There was a problem with your session token. Try again, please.'));
+ $this->clientError(_('There was a problem with your session token. Try again, please.'));
return;
}
$id = $this->trimmed('unblockto');
if (!$id) {
- $this->client_error(_('No profile specified.'));
+ $this->clientError(_('No profile specified.'));
return false;
}
$this->profile = Profile::staticGet('id', $id);
if (!$this->profile) {
- $this->client_error(_('No profile with that ID.'));
+ $this->clientError(_('No profile with that ID.'));
return false;
}
@@ -74,7 +74,7 @@ class UnblockAction extends Action
$result = $cur->unblock($this->profile);
if (!$result) {
- $this->server_error(_('Error removing the block.'));
+ $this->serverError(_('Error removing the block.'));
return;
}
diff --git a/actions/unsubscribe.php b/actions/unsubscribe.php
index 1c2e13635..32511a4b4 100644
--- a/actions/unsubscribe.php
+++ b/actions/unsubscribe.php
@@ -24,7 +24,7 @@ class UnsubscribeAction extends Action
{
parent::handle($args);
if (!common_logged_in()) {
- common_user_error(_('Not logged in.'));
+ $this->clientError(_('Not logged in.'));
return;
}
@@ -40,40 +40,40 @@ class UnsubscribeAction extends Action
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
- $this->client_error(_('There was a problem with your session token. Try again, please.'));
+ $this->clientError(_('There was a problem with your session token. Try again, please.'));
return;
}
$other_id = $this->arg('unsubscribeto');
if (!$other_id) {
- $this->client_error(_('No profile id in request.'));
+ $this->clientError(_('No profile id in request.'));
return;
}
$other = Profile::staticGet('id', $other_id);
if (!$other_id) {
- $this->client_error(_('No profile with that id.'));
+ $this->clientError(_('No profile with that id.'));
return;
}
$result = subs_unsubscribe_to($user, $other);
if ($result != true) {
- common_user_error($result);
+ $this->clientError($result);
return;
}
if ($this->boolean('ajax')) {
common_start_html('text/xml;charset=utf-8', true);
- common_element_start('head');
- common_element('title', null, _('Unsubscribed'));
- common_element_end('head');
- common_element_start('body');
+ $this->elementStart('head');
+ $this->element('title', null, _('Unsubscribed'));
+ $this->elementEnd('head');
+ $this->elementStart('body');
common_subscribe_form($other);
- common_element_end('body');
- common_element_end('html');
+ $this->elementEnd('body');
+ $this->elementEnd('html');
} else {
common_redirect(common_local_url('subscriptions', array('nickname' =>
$user->nickname)));
diff --git a/actions/updateprofile.php b/actions/updateprofile.php
index abb034c81..c79112dac 100644
--- a/actions/updateprofile.php
+++ b/actions/updateprofile.php
@@ -37,7 +37,7 @@ class UpdateprofileAction extends Action
print "omb_version=".OMB_VERSION_01;
}
} catch (OAuthException $e) {
- $this->server_error($e->getMessage());
+ $this->serverError($e->getMessage());
return;
}
}
@@ -46,14 +46,14 @@ class UpdateprofileAction extends Action
{
$version = $req->get_parameter('omb_version');
if ($version != OMB_VERSION_01) {
- $this->client_error(_('Unsupported OMB version'), 400);
+ $this->clientError(_('Unsupported OMB version'), 400);
return false;
}
# First, check to see if listenee exists
$listenee = $req->get_parameter('omb_listenee');
$remote = Remote_profile::staticGet('uri', $listenee);
if (!$remote) {
- $this->client_error(_('Profile unknown'), 404);
+ $this->clientError(_('Profile unknown'), 404);
return false;
}
# Second, check to see if they should be able to post updates!
@@ -64,72 +64,72 @@ class UpdateprofileAction extends Action
$sub->subscribed = $remote->id;
$sub->token = $token->key;
if (!$sub->find(true)) {
- $this->client_error(_('You did not send us that profile'), 403);
+ $this->clientError(_('You did not send us that profile'), 403);
return false;
}
$profile = Profile::staticGet('id', $remote->id);
if (!$profile) {
# This one is our fault
- $this->server_error(_('Remote profile with no matching profile'), 500);
+ $this->serverError(_('Remote profile with no matching profile'), 500);
return false;
}
$nickname = $req->get_parameter('omb_listenee_nickname');
if ($nickname && !Validate::string($nickname, array('min_length' => 1,
'max_length' => 64,
'format' => VALIDATE_NUM . VALIDATE_ALPHA_LOWER))) {
- $this->client_error(_('Nickname must have only lowercase letters and numbers and no spaces.'));
+ $this->clientError(_('Nickname must have only lowercase letters and numbers and no spaces.'));
return false;
}
$license = $req->get_parameter('omb_listenee_license');
if ($license && !common_valid_http_url($license)) {
- $this->client_error(sprintf(_("Invalid license URL '%s'"), $license));
+ $this->clientError(sprintf(_("Invalid license URL '%s'"), $license));
return false;
}
$profile_url = $req->get_parameter('omb_listenee_profile');
if ($profile_url && !common_valid_http_url($profile_url)) {
- $this->client_error(sprintf(_("Invalid profile URL '%s'."), $profile_url));
+ $this->clientError(sprintf(_("Invalid profile URL '%s'."), $profile_url));
return false;
}
# optional stuff
$fullname = $req->get_parameter('omb_listenee_fullname');
if ($fullname && strlen($fullname) > 255) {
- $this->client_error(_("Full name is too long (max 255 chars)."));
+ $this->clientError(_("Full name is too long (max 255 chars)."));
return false;
}
$homepage = $req->get_parameter('omb_listenee_homepage');
if ($homepage && (!common_valid_http_url($homepage) || strlen($homepage) > 255)) {
- $this->client_error(sprintf(_("Invalid homepage '%s'"), $homepage));
+ $this->clientError(sprintf(_("Invalid homepage '%s'"), $homepage));
return false;
}
$bio = $req->get_parameter('omb_listenee_bio');
if ($bio && strlen($bio) > 140) {
- $this->client_error(_("Bio is too long (max 140 chars)."));
+ $this->clientError(_("Bio is too long (max 140 chars)."));
return false;
}
$location = $req->get_parameter('omb_listenee_location');
if ($location && strlen($location) > 255) {
- $this->client_error(_("Location is too long (max 255 chars)."));
+ $this->clientError(_("Location is too long (max 255 chars)."));
return false;
}
$avatar = $req->get_parameter('omb_listenee_avatar');
if ($avatar) {
if (!common_valid_http_url($avatar) || strlen($avatar) > 255) {
- $this->client_error(sprintf(_("Invalid avatar URL '%s'"), $avatar));
+ $this->clientError(sprintf(_("Invalid avatar URL '%s'"), $avatar));
return false;
}
$size = @getimagesize($avatar);
if (!$size) {
- $this->client_error(sprintf(_("Can't read avatar URL '%s'"), $avatar));
+ $this->clientError(sprintf(_("Can't read avatar URL '%s'"), $avatar));
return false;
}
if ($size[0] != AVATAR_PROFILE_SIZE || $size[1] != AVATAR_PROFILE_SIZE) {
- $this->client_error(sprintf(_("Wrong size image at '%s'"), $avatar));
+ $this->clientError(sprintf(_("Wrong size image at '%s'"), $avatar));
return false;
}
if (!in_array($size[2], array(IMAGETYPE_GIF, IMAGETYPE_JPEG,
IMAGETYPE_PNG))) {
- $this->client_error(sprintf(_("Wrong image type for '%s'"), $avatar));
+ $this->clientError(sprintf(_("Wrong image type for '%s'"), $avatar));
return false;
}
}
@@ -156,14 +156,14 @@ class UpdateprofileAction extends Action
}
if (!$profile->update($orig_profile)) {
- $this->server_error(_('Could not save new profile info'), 500);
+ $this->serverError(_('Could not save new profile info'), 500);
return false;
} else {
if ($avatar) {
$temp_filename = tempnam(sys_get_temp_dir(), 'listenee_avatar');
copy($avatar, $temp_filename);
if (!$profile->setOriginal($temp_filename)) {
- $this->server_error(_('Could not save avatar info'), 500);
+ $this->serverError(_('Could not save avatar info'), 500);
return false;
}
}
diff --git a/actions/userauthorization.php b/actions/userauthorization.php
index 05efbc16c..838458932 100644
--- a/actions/userauthorization.php
+++ b/actions/userauthorization.php
@@ -54,7 +54,7 @@ class UserauthorizationAction extends Action
common_debug('getting new request', __FILE__);
$req = $this->get_new_request();
if (!$req) {
- $this->client_error(_('No request found!'));
+ $this->clientError(_('No request found!'));
}
common_debug('validating request', __FILE__);
# XXX: only validate new requests, since nonce is one-time use
@@ -64,7 +64,7 @@ class UserauthorizationAction extends Action
$this->show_form($req);
} catch (OAuthException $e) {
$this->clear_request();
- $this->client_error($e->getMessage());
+ $this->clientError($e->getMessage());
return;
}
@@ -84,51 +84,51 @@ class UserauthorizationAction extends Action
$avatar = $req->get_parameter('omb_listenee_avatar');
common_show_header(_('Authorize subscription'));
- common_element('p', null, _('Please check these details to make sure '.
+ $this->element('p', null, _('Please check these details to make sure '.
'that you want to subscribe to this user\'s notices. '.
'If you didn\'t just ask to subscribe to someone\'s notices, '.
'click "Cancel".'));
- common_element_start('div', 'profile');
+ $this->elementStart('div', 'profile');
if ($avatar) {
- common_element('img', array('src' => $avatar,
+ $this->element('img', array('src' => $avatar,
'class' => 'avatar profile',
'width' => AVATAR_PROFILE_SIZE,
'height' => AVATAR_PROFILE_SIZE,
'alt' => $nickname));
}
- common_element('a', array('href' => $profile,
+ $this->element('a', array('href' => $profile,
'class' => 'external profile nickname'),
$nickname);
if ($fullname) {
- common_element_start('div', 'fullname');
+ $this->elementStart('div', 'fullname');
if ($homepage) {
- common_element('a', array('href' => $homepage),
+ $this->element('a', array('href' => $homepage),
$fullname);
} else {
- common_text($fullname);
+ $this->text($fullname);
}
- common_element_end('div');
+ $this->elementEnd('div');
}
if ($location) {
- common_element('div', 'location', $location);
+ $this->element('div', 'location', $location);
}
if ($bio) {
- common_element('div', 'bio', $bio);
+ $this->element('div', 'bio', $bio);
}
- common_element_start('div', 'license');
- common_element('a', array('href' => $license,
+ $this->elementStart('div', 'license');
+ $this->element('a', array('href' => $license,
'class' => 'license'),
$license);
- common_element_end('div');
- common_element_end('div');
- common_element_start('form', array('method' => 'post',
+ $this->elementEnd('div');
+ $this->elementEnd('div');
+ $this->elementStart('form', array('method' => 'post',
'id' => 'userauthorization',
'name' => 'userauthorization',
'action' => common_local_url('userauthorization')));
- common_hidden('token', common_session_token());
- common_submit('accept', _('Accept'));
- common_submit('reject', _('Reject'));
- common_element_end('form');
+ $this->hidden('token', common_session_token());
+ $this->submit('accept', _('Accept'));
+ $this->submit('reject', _('Reject'));
+ $this->elementEnd('form');
common_show_footer();
}
@@ -137,7 +137,7 @@ class UserauthorizationAction extends Action
$req = $this->get_stored_request();
if (!$req) {
- common_user_error(_('No authorization request!'));
+ $this->clientError(_('No authorization request!'));
return;
}
@@ -145,10 +145,10 @@ class UserauthorizationAction extends Action
if ($this->arg('accept')) {
if (!$this->authorize_token($req)) {
- $this->client_error(_('Error authorizing token'));
+ $this->clientError(_('Error authorizing token'));
}
if (!$this->save_remote_profile($req)) {
- $this->client_error(_('Error saving remote profile'));
+ $this->clientError(_('Error saving remote profile'));
}
if (!$callback) {
$this->show_accept_message($req->get_parameter('oauth_token'));
@@ -160,7 +160,7 @@ class UserauthorizationAction extends Action
$profile = $user->getProfile();
if (!$profile) {
common_log_db_error($user, 'SELECT', __FILE__);
- $this->server_error(_('User without matching profile'));
+ $this->serverError(_('User without matching profile'));
return;
}
$params['omb_listener_nickname'] = $user->nickname;
@@ -328,18 +328,18 @@ class UserauthorizationAction extends Action
function show_accept_message($tok)
{
common_show_header(_('Subscription authorized'));
- common_element('p', null,
+ $this->element('p', null,
_('The subscription has been authorized, but no '.
'callback URL was passed. Check with the site\'s instructions for '.
'details on how to authorize the subscription. Your subscription token is:'));
- common_element('blockquote', 'token', $tok);
+ $this->element('blockquote', 'token', $tok);
common_show_footer();
}
function show_reject_message($tok)
{
common_show_header(_('Subscription rejected'));
- common_element('p', null,
+ $this->element('p', null,
_('The subscription has been rejected, but no '.
'callback URL was passed. Check with the site\'s instructions for '.
'details on how to fully reject the subscription.'));
diff --git a/actions/userbyid.php b/actions/userbyid.php
index d57ed21a5..4bb896c38 100644
--- a/actions/userbyid.php
+++ b/actions/userbyid.php
@@ -22,7 +22,7 @@ if (!defined('LACONICA')) { exit(1); }
class UserbyidAction extends Action
{
- function is_readonly()
+ function isReadOnly()
{
return true;
}
@@ -32,11 +32,11 @@ class UserbyidAction extends Action
parent::handle($args);
$id = $this->trimmed('id');
if (!$id) {
- $this->client_error(_('No id.'));
+ $this->clientError(_('No id.'));
}
$user =& User::staticGet($id);
if (!$user) {
- $this->client_error(_('No such user.'));
+ $this->clientError(_('No such user.'));
}
// support redirecting to FOAF rdf/xml if the agent prefers it
diff --git a/actions/userrss.php b/actions/userrss.php
index 1e9fe121f..d14fc523e 100644
--- a/actions/userrss.php
+++ b/actions/userrss.php
@@ -34,7 +34,7 @@ class UserrssAction extends Rss10Action
$this->user = User::staticGet('nickname', $nickname);
if (!$this->user) {
- common_user_error(_('No such user.'));
+ $this->clientError(_('No such user.'));
return false;
} else {
return true;
@@ -78,7 +78,7 @@ class UserrssAction extends Rss10Action
$profile = $user->getProfile();
if (!$profile) {
common_log_db_error($user, 'SELECT', __FILE__);
- $this->server_error(_('User without matching profile'));
+ $this->serverError(_('User without matching profile'));
return null;
}
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
diff --git a/actions/xrds.php b/actions/xrds.php
index 7edc6aa39..14cb9d503 100644
--- a/actions/xrds.php
+++ b/actions/xrds.php
@@ -24,7 +24,7 @@ require_once(INSTALLDIR.'/lib/omb.php');
class XrdsAction extends Action
{
- function is_readonly()
+ function isReadOnly()
{
return true;
}
@@ -35,7 +35,7 @@ class XrdsAction extends Action
$nickname = $this->trimmed('nickname');
$user = User::staticGet('nickname', $nickname);
if (!$user) {
- common_user_error(_('No such user.'));
+ $this->clientError(_('No such user.'));
return;
}
$this->show_xrds($user);
@@ -47,14 +47,14 @@ class XrdsAction extends Action
header('Content-Type: application/xrds+xml');
common_start_xml();
- common_element_start('XRDS', array('xmlns' => 'xri://$xrds'));
+ $this->elementStart('XRDS', array('xmlns' => 'xri://$xrds'));
- common_element_start('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
+ $this->elementStart('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
'xml:id' => 'oauth',
'xmlns:simple' => 'http://xrds-simple.net/core/1.0',
'version' => '2.0'));
- common_element('Type', null, 'xri://$xrds*simple');
+ $this->element('Type', null, 'xri://$xrds*simple');
$this->show_service(OAUTH_ENDPOINT_REQUEST,
common_local_url('requesttoken'),
@@ -77,16 +77,16 @@ class XrdsAction extends Action
array(OAUTH_AUTH_HEADER, OAUTH_POST_BODY),
array(OAUTH_HMAC_SHA1));
- common_element_end('XRD');
+ $this->elementEnd('XRD');
# XXX: decide whether to include user's ID/nickname in postNotice URL
- common_element_start('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
+ $this->elementStart('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
'xml:id' => 'omb',
'xmlns:simple' => 'http://xrds-simple.net/core/1.0',
'version' => '2.0'));
- common_element('Type', null, 'xri://$xrds*simple');
+ $this->element('Type', null, 'xri://$xrds*simple');
$this->show_service(OMB_ENDPOINT_POSTNOTICE,
common_local_url('postnotice'));
@@ -94,44 +94,44 @@ class XrdsAction extends Action
$this->show_service(OMB_ENDPOINT_UPDATEPROFILE,
common_local_url('updateprofile'));
- common_element_end('XRD');
+ $this->elementEnd('XRD');
- common_element_start('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
+ $this->elementStart('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
'version' => '2.0'));
- common_element('Type', null, 'xri://$xrds*simple');
+ $this->element('Type', null, 'xri://$xrds*simple');
$this->show_service(OAUTH_DISCOVERY,
'#oauth');
$this->show_service(OMB_NAMESPACE,
'#omb');
- common_element_end('XRD');
+ $this->elementEnd('XRD');
- common_element_end('XRDS');
+ $this->elementEnd('XRDS');
common_end_xml();
}
function show_service($type, $uri, $params=null, $sigs=null, $localId=null)
{
- common_element_start('Service');
+ $this->elementStart('Service');
if ($uri) {
- common_element('URI', null, $uri);
+ $this->element('URI', null, $uri);
}
- common_element('Type', null, $type);
+ $this->element('Type', null, $type);
if ($params) {
foreach ($params as $param) {
- common_element('Type', null, $param);
+ $this->element('Type', null, $param);
}
}
if ($sigs) {
foreach ($sigs as $sig) {
- common_element('Type', null, $sig);
+ $this->element('Type', null, $sig);
}
}
if ($localId) {
- common_element('LocalID', null, $localId);
+ $this->element('LocalID', null, $localId);
}
- common_element_end('Service');
+ $this->elementEnd('Service');
}
} \ No newline at end of file