summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2009-10-09 14:42:01 -0700
committerZach Copley <zach@status.net>2009-10-09 14:42:01 -0700
commitf746993c2bfb674d397cf095a2ab2ff7e757818b (patch)
tree4b2296aff22c5f5edf4cb834c2ad6566b6696097 /actions
parentbb08611def2309711f91c1ab6cdab92fb7c069b2 (diff)
$format is used by every API action. Set it in the base class.
Diffstat (limited to 'actions')
-rw-r--r--actions/apiaccountratelimitstatus.php3
-rw-r--r--actions/apiaccountverifycredentials.php3
-rw-r--r--actions/apiblockcreate.php2
-rw-r--r--actions/apiblockdestroy.php2
-rw-r--r--actions/apidirectmessage.php3
-rw-r--r--actions/apidirectmessagenew.php3
-rw-r--r--actions/apifavoritecreate.php3
-rw-r--r--actions/apifavoritedestroy.php3
-rw-r--r--actions/apifriendshipscreate.php3
-rw-r--r--actions/apifriendshipsdestroy.php3
-rw-r--r--actions/apifriendshipsexists.php4
-rw-r--r--actions/apifriendshipsshow.php4
-rw-r--r--actions/apigroupshow.php2
-rw-r--r--actions/apihelptest.php2
-rw-r--r--actions/apistatusnetconfig.php3
-rw-r--r--actions/apistatusnetversion.php3
-rw-r--r--actions/apiusershow.php4
17 files changed, 1 insertions, 49 deletions
diff --git a/actions/apiaccountratelimitstatus.php b/actions/apiaccountratelimitstatus.php
index 3c6c3e714..9eba5c55d 100644
--- a/actions/apiaccountratelimitstatus.php
+++ b/actions/apiaccountratelimitstatus.php
@@ -46,8 +46,6 @@ require_once INSTALLDIR.'/lib/apibareauth.php';
class ApiAccountRateLimitStatusAction extends ApiBareAuthAction
{
- var $format = null;
-
/**
* Take arguments for running
*
@@ -67,7 +65,6 @@ class ApiAccountRateLimitStatusAction extends ApiBareAuthAction
}
}
- $this->format = $this->arg('format');
return true;
}
diff --git a/actions/apiaccountverifycredentials.php b/actions/apiaccountverifycredentials.php
index b9c9bf0f7..0d4928f6c 100644
--- a/actions/apiaccountverifycredentials.php
+++ b/actions/apiaccountverifycredentials.php
@@ -47,8 +47,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiAccountVerifyCredentialsAction extends ApiAuthAction
{
- var $format = null;
-
/**
* Take arguments for running
*
@@ -68,7 +66,6 @@ class ApiAccountVerifyCredentialsAction extends ApiAuthAction
}
}
- $this->format = $this->arg('format');
return true;
}
diff --git a/actions/apiblockcreate.php b/actions/apiblockcreate.php
index ff303863e..642171271 100644
--- a/actions/apiblockcreate.php
+++ b/actions/apiblockcreate.php
@@ -47,7 +47,6 @@ require_once INSTALLDIR . '/lib/apiauth.php';
class ApiBlockCreateAction extends ApiAuthAction
{
- var $format = null;
var $user = null;
var $other = null;
@@ -72,7 +71,6 @@ class ApiBlockCreateAction extends ApiAuthAction
$this->user = $this->auth_user;
$this->other = $this->getTargetUser($this->arg('id'));
- $this->format = $this->arg('format');
return true;
}
diff --git a/actions/apiblockdestroy.php b/actions/apiblockdestroy.php
index 0f24be3aa..109e66ac4 100644
--- a/actions/apiblockdestroy.php
+++ b/actions/apiblockdestroy.php
@@ -46,7 +46,6 @@ require_once INSTALLDIR . '/lib/apiauth.php';
class ApiBlockDestroyAction extends ApiAuthAction
{
- var $format = null;
var $user = null;
var $other = null;
@@ -71,7 +70,6 @@ class ApiBlockDestroyAction extends ApiAuthAction
$this->user = $this->auth_user;
$this->other = $this->getTargetUser($this->arg('id'));
- $this->format = $this->arg('format');
return true;
}
diff --git a/actions/apidirectmessage.php b/actions/apidirectmessage.php
index 87ae44d7a..fa6883311 100644
--- a/actions/apidirectmessage.php
+++ b/actions/apidirectmessage.php
@@ -45,7 +45,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiDirectMessageAction extends ApiAuthAction
{
- var $format = null;
var $messages = null;
var $page = null;
var $count = null;
@@ -122,8 +121,6 @@ class ApiDirectMessageAction extends ApiAuthAction
$this->id = "tag:$taguribase:DirectMessages:" . $this->user->id;
}
- $this->format = $this->arg('format');
-
$this->messages = $this->getMessages();
return true;
diff --git a/actions/apidirectmessagenew.php b/actions/apidirectmessagenew.php
index d836409ae..b531d7c5c 100644
--- a/actions/apidirectmessagenew.php
+++ b/actions/apidirectmessagenew.php
@@ -46,7 +46,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiDirectMessageNewAction extends ApiAuthAction
{
- var $format = null;
var $source = null;
var $user = null;
var $other = null;
@@ -97,8 +96,6 @@ class ApiDirectMessageNewAction extends ApiAuthAction
$this->other = $this->getTargetUser($user_param);
}
- $this->format = $this->arg('format');
-
return true;
}
diff --git a/actions/apifavoritecreate.php b/actions/apifavoritecreate.php
index e45603c6a..6ee6960ba 100644
--- a/actions/apifavoritecreate.php
+++ b/actions/apifavoritecreate.php
@@ -46,8 +46,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiFavoriteCreateAction extends ApiAuthAction
{
-
- var $format = null;
var $user = null;
var $notice = null;
@@ -70,7 +68,6 @@ class ApiFavoriteCreateAction extends ApiAuthAction
}
}
- $this->format = $this->arg('format');
$this->user = $this->auth_user;
$this->notice = Notice::staticGet($this->arg('id'));
diff --git a/actions/apifavoritedestroy.php b/actions/apifavoritedestroy.php
index a70d5c79b..36946fbfb 100644
--- a/actions/apifavoritedestroy.php
+++ b/actions/apifavoritedestroy.php
@@ -47,9 +47,9 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiFavoriteDestroyAction extends ApiAuthAction
{
- var $format = null;
var $user = null;
var $notice = null;
+
/**
* Take arguments for running
*
@@ -69,7 +69,6 @@ class ApiFavoriteDestroyAction extends ApiAuthAction
}
}
- $this->format = $this->arg('format');
$this->user = $this->auth_user;
$this->notice = Notice::staticGet($this->arg('id'));
diff --git a/actions/apifriendshipscreate.php b/actions/apifriendshipscreate.php
index 969fc1282..27bdbe062 100644
--- a/actions/apifriendshipscreate.php
+++ b/actions/apifriendshipscreate.php
@@ -47,8 +47,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiFriendshipsCreateAction extends ApiAuthAction
{
-
- var $format = null;
var $user = null;
var $other = null;
@@ -71,7 +69,6 @@ class ApiFriendshipsCreateAction extends ApiAuthAction
}
}
- $this->format = $this->arg('format');
$this->user = $this->auth_user;
$this->other = $this->getTargetUser($id);
diff --git a/actions/apifriendshipsdestroy.php b/actions/apifriendshipsdestroy.php
index ef864c4db..3ad12156d 100644
--- a/actions/apifriendshipsdestroy.php
+++ b/actions/apifriendshipsdestroy.php
@@ -47,8 +47,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiFriendshipsDestroyAction extends ApiAuthAction
{
-
- var $format = null;
var $user = null;
var $other = null;
@@ -71,7 +69,6 @@ class ApiFriendshipsDestroyAction extends ApiAuthAction
}
}
- $this->format = $this->arg('format');
$this->user = $this->auth_user;
$this->other = $this->getTargetUser($id);
diff --git a/actions/apifriendshipsexists.php b/actions/apifriendshipsexists.php
index d1d5d520f..1ebfc9e8f 100644
--- a/actions/apifriendshipsexists.php
+++ b/actions/apifriendshipsexists.php
@@ -46,8 +46,6 @@ require_once INSTALLDIR.'/lib/api.php';
class ApiFriendshipsExistsAction extends TwitterApiAction
{
-
- var $format = null;
var $user_a = null;
var $user_b = null;
@@ -64,8 +62,6 @@ class ApiFriendshipsExistsAction extends TwitterApiAction
{
parent::prepare($args);
- $this->format = $this->arg('format');
-
$user_a_id = $this->trimmed('user_a');
$user_b_id = $this->trimmed('user_b');
diff --git a/actions/apifriendshipsshow.php b/actions/apifriendshipsshow.php
index d35825a43..2f975b121 100644
--- a/actions/apifriendshipsshow.php
+++ b/actions/apifriendshipsshow.php
@@ -45,8 +45,6 @@ require_once INSTALLDIR.'/lib/apibareauth.php';
class ApiFriendshipsShowAction extends ApiBareAuthAction
{
-
- var $format = null;
var $user = null;
var $source = null;
var $target = null;
@@ -70,8 +68,6 @@ class ApiFriendshipsShowAction extends ApiBareAuthAction
}
}
- $this->format = $this->arg('format');
-
$source_id = (int)$this->trimmed('source_id');
$source_screen_name = $this->trimmed('source_screen_name');
$target_id = (int)$this->trimmed('target_id');
diff --git a/actions/apigroupshow.php b/actions/apigroupshow.php
index a38d50afe..cdaf707aa 100644
--- a/actions/apigroupshow.php
+++ b/actions/apigroupshow.php
@@ -45,7 +45,6 @@ require_once INSTALLDIR.'/lib/api.php';
class ApiGroupShowAction extends TwitterApiAction
{
- var $format = null;
var $group = null;
/**
@@ -61,7 +60,6 @@ class ApiGroupShowAction extends TwitterApiAction
{
parent::prepare($args);
- $this->format = $this->arg('format');
$this->group = $this->getTargetGroup($this->arg('id'));
return true;
diff --git a/actions/apihelptest.php b/actions/apihelptest.php
index 2cec46462..ac1bb1a5b 100644
--- a/actions/apihelptest.php
+++ b/actions/apihelptest.php
@@ -45,7 +45,6 @@ require_once INSTALLDIR . '/lib/api.php';
class ApiHelpTestAction extends TwitterApiAction
{
- var $format = null;
/**
* Take arguments for running
@@ -59,7 +58,6 @@ class ApiHelpTestAction extends TwitterApiAction
function prepare($args)
{
parent::prepare($args);
- $this->format = $this->arg('format');
return true;
}
diff --git a/actions/apistatusnetconfig.php b/actions/apistatusnetconfig.php
index 6847a48fe..6fb65331f 100644
--- a/actions/apistatusnetconfig.php
+++ b/actions/apistatusnetconfig.php
@@ -49,8 +49,6 @@ require_once INSTALLDIR . '/lib/api.php';
class ApiStatusnetConfigAction extends TwitterApiAction
{
- var $format = null;
-
var $keys = array(
'site' => array('name', 'server', 'theme', 'path', 'fancy', 'language',
'email', 'broughtby', 'broughtbyurl', 'closed',
@@ -73,7 +71,6 @@ class ApiStatusnetConfigAction extends TwitterApiAction
function prepare($args)
{
parent::prepare($args);
- $this->format = $this->arg('format');
return true;
}
diff --git a/actions/apistatusnetversion.php b/actions/apistatusnetversion.php
index e6f35e7d2..2cd99edb7 100644
--- a/actions/apistatusnetversion.php
+++ b/actions/apistatusnetversion.php
@@ -48,8 +48,6 @@ require_once INSTALLDIR . '/lib/api.php';
class ApiStatusnetVersionAction extends TwitterApiAction
{
- var $format = null;
-
/**
* Take arguments for running
*
@@ -62,7 +60,6 @@ class ApiStatusnetVersionAction extends TwitterApiAction
function prepare($args)
{
parent::prepare($args);
- $this->format = $this->arg('format');
return true;
}
diff --git a/actions/apiusershow.php b/actions/apiusershow.php
index afcbd3618..1cd0cdfd5 100644
--- a/actions/apiusershow.php
+++ b/actions/apiusershow.php
@@ -46,8 +46,6 @@ require_once INSTALLDIR.'/lib/api.php';
class ApiUserShowAction extends TwitterApiAction
{
-
- var $format = null;
var $user = null;
/**
@@ -63,8 +61,6 @@ class ApiUserShowAction extends TwitterApiAction
{
parent::prepare($args);
- $this->format = $this->arg('format');
-
$email = $this->arg('email');
// XXX: email field deprecated in Twitter's API