mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-19 03:51:30 +00:00
remove obsolete checkDate stuff
This commit is contained in:
@@ -480,14 +480,6 @@ class RPC extends Handler_Protected {
|
|||||||
print json_encode($articles);
|
print json_encode($articles);
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkDate() {
|
|
||||||
$date = db_escape_string($this->link, $_REQUEST["date"]);
|
|
||||||
$date_parsed = strtotime($date);
|
|
||||||
|
|
||||||
print json_encode(array("result" => (bool)$date_parsed,
|
|
||||||
"date" => date("c", $date_parsed)));
|
|
||||||
}
|
|
||||||
|
|
||||||
function assigntolabel() {
|
function assigntolabel() {
|
||||||
return $this->labelops(true);
|
return $this->labelops(true);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -548,28 +548,6 @@ function fatalError(code, msg, ext_info) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* function filterDlgCheckType(sender) {
|
|
||||||
|
|
||||||
try {
|
|
||||||
|
|
||||||
var ftype = sender.value;
|
|
||||||
|
|
||||||
// if selected filter type is 5 (Date) enable the modifier dropbox
|
|
||||||
if (ftype == 5) {
|
|
||||||
Element.show("filterDlg_dateModBox");
|
|
||||||
Element.show("filterDlg_dateChkBox");
|
|
||||||
} else {
|
|
||||||
Element.hide("filterDlg_dateModBox");
|
|
||||||
Element.hide("filterDlg_dateChkBox");
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
} catch (e) {
|
|
||||||
exception_error("filterDlgCheckType", e);
|
|
||||||
}
|
|
||||||
|
|
||||||
} */
|
|
||||||
|
|
||||||
function filterDlgCheckAction(sender) {
|
function filterDlgCheckAction(sender) {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -603,34 +581,6 @@ function filterDlgCheckAction(sender) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function filterDlgCheckDate() {
|
|
||||||
try {
|
|
||||||
var dialog = dijit.byId("filterEditDlg");
|
|
||||||
|
|
||||||
var reg_exp = dialog.attr('value').reg_exp;
|
|
||||||
|
|
||||||
var query = "?op=rpc&method=checkDate&date=" + reg_exp;
|
|
||||||
|
|
||||||
new Ajax.Request("backend.php", {
|
|
||||||
parameters: query,
|
|
||||||
onComplete: function(transport) {
|
|
||||||
|
|
||||||
var reply = JSON.parse(transport.responseText);
|
|
||||||
|
|
||||||
if (reply['result'] == true) {
|
|
||||||
alert(__("Date syntax appears to be correct:") + " " + reply['date']);
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
alert(__("Date syntax is incorrect."));
|
|
||||||
}
|
|
||||||
|
|
||||||
} });
|
|
||||||
|
|
||||||
|
|
||||||
} catch (e) {
|
|
||||||
exception_error("filterDlgCheckDate", e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function explainError(code) {
|
function explainError(code) {
|
||||||
return displayDlg(__("Error explained"), "explainError", code);
|
return displayDlg(__("Error explained"), "explainError", code);
|
||||||
|
|||||||
Reference in New Issue
Block a user