/**
* Handle the request
*
- * Just show the notices
+ * Check the format and show the notice
*
* @param array $args $_REQUEST data (unused)
*
}
/**
- * Show the timeline of notices
+ * Show the notice
*
* @return void
*/
if (!empty($deleted)) {
$this->clientError(
- _('Status deleted.'),
- 410,
+ _('Status deleted.'),
+ 410,
$this->format
);
} else {
$this->clientError(
_('No status with that ID found.'),
- 404,
+ 404,
$this->format
);
}
'id' => '[a-zA-Z0-9]+',
'format' => '(xml|json)'));
+ $m->connect('api/statuses/show.:format',
+ array('action' => 'ApiShow',
+ 'format' => '(xml|json)'));
+
+ $m->connect('api/statuses/show/:id.:format',
+ array('action' => 'ApiShow',
+ 'id' => '[a-zA-Z0-9]+',
+ 'format' => '(xml|json)'));
+
$m->connect('api/statuses/:method',
array('action' => 'api',
'apiaction' => 'statuses'),
- array('method' => '(update|show|featured)(\.(atom|rss|xml|json))?'));
+ array('method' => '(update|featured)(\.(atom|rss|xml|json))?'));
$m->connect('api/statuses/:method/:argument',
array('action' => 'api',