summaryrefslogtreecommitdiffstats
path: root/web/lib/aurjson.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'web/lib/aurjson.class.php')
-rw-r--r--web/lib/aurjson.class.php22
1 files changed, 1 insertions, 21 deletions
diff --git a/web/lib/aurjson.class.php b/web/lib/aurjson.class.php
index ce59ed7..d12f2b5 100644
--- a/web/lib/aurjson.class.php
+++ b/web/lib/aurjson.class.php
@@ -20,33 +20,13 @@ class AurJSON {
private $exposed_methods = array('search','info');
/**
- * Returns the usage data for the exposed json api.
- * @return string The usage data in plain format.
- **/
- public function usage() {
- $usage = 'The methods currently allowed are: <br />';
- $usage .= '<ul>';
- foreach ($this->exposed_methods as $methodname) {
- $usage .= "<li>{$methodname}</li>";
- }
- $usage .= '</ul><br />';
- $usage .= 'Each method requires the following HTTP GET syntax:<br />';
- $usage .= '&nbsp;&nbsp; type=_methodname_&arg=_data_ <br /><br />';
- $usage .= 'Where _methodname_ is the name of an exposed method, and _data_ is the data supplied as part of the call.<br />';
- $usage .= 'The _ characters are included only in this example as placeholders. Do not use them in an actual query.<br /><br />';
- $usage .= 'If you need jsonp type callback specification, you can provide an additional variable "callback".<br />';
- $usage .= 'Example URL: <br />&nbsp;&nbsp; http://aur-url/rpc.php?type=search&args=foobar&callback=jsonp1192244621103';
- return $usage;
- }
-
- /**
* Handles post data, and routes the request.
* @param string $post_data The post data to parse and handle.
* @return string The JSON formatted response data.
**/
public function handle($http_data) {
// set content type header to json
- //header('content-type: application/json');
+ header('content-type: application/json');
// set up db connection.
$this->dbh = db_connect();