parameters: query,
onComplete: function(transport) {
- if (transport.responseXML) {
- var result = transport.responseXML.getElementsByTagName("result")[0];
+ var reply = JSON.parse(transport.responseText);
- if (result && result.firstChild) {
- if (result.firstChild.nodeValue == "1") {
- alert(__("Date syntax appears to be correct."));
- return;
- }
- }
+ if (reply['result'] == true) {
+ alert(__("Date syntax appears to be correct."));
+ return;
+ } else {
+ alert(__("Date syntax is incorrect."));
}
- alert(__("Date syntax is incorrect."));
-
} });
}
if ($subop == "setpref") {
- print "<rpc-reply>";
+ header("Content-Type: text/plain");
$key = db_escape_string($_REQUEST["key"]);
$value = db_escape_string($_REQUEST["value"]);
set_pref($link, $key, $value);
- print "<param-set key=\"$key\" value=\"$value\"/>";
-
- print "</rpc-reply>";
-
+ print json_encode(array("param" =>$key, "value" => $value));
return;
}
return;
}
-
+ // XML method
if ($subop == "publ") {
$pub = $_REQUEST["pub"];
$id = db_escape_string($_REQUEST["id"]);
return;
}
+ // XML method
if ($subop == "sanityCheck") {
print "<rpc-reply>";
if (sanity_check($link)) {
print "]]></init-params>";
print_runtime_info($link);
-
- # assign client-passed params to session
- $_SESSION["client.userAgent"] = $_REQUEST["ua"];
-
}
print "</rpc-reply>";
return;
}
- if ($subop == "globalPurge") {
+/* if ($subop == "globalPurge") {
print "<rpc-reply>";
global_purge_old_posts($link, true);
print "</rpc-reply>";
return;
- }
+ } */
if ($subop == "setArticleTags") {
header("Content-Type: text/plain");
return;
}
+ // XML method
if ($subop == "regenOPMLKey") {
print "<rpc-reply>";
return;
}
+ // XML method
if ($subop == "logout") {
logout_user();
print_error_xml(6);
} */
+ // XML method
if ($subop == "getArticles") {
$ids = split(",", db_escape_string($_REQUEST["ids"]));
}
print "</rpc-reply>";
- return;
+ return;
}
if ($subop == "checkDate") {
+ header("Content-Type: text/plain");
$date = db_escape_string($_REQUEST["date"]);
$date_parsed = strtotime($date);
- print "<rpc-reply>";
-
- if ($date_parsed) {
- print "<result>1</result>";
- } else {
- print "<result>0</result>";
- }
-
- print "</rpc-reply>";
-
+ print json_encode(array("result" => (bool)$date_parsed));
return;
}