Testing request url change
This commit is contained in:
parent
6194dda84a
commit
396f418350
10
main.js
10
main.js
@ -1,5 +1,5 @@
|
|||||||
function setDatabaseVersion() {
|
function setDatabaseVersion() {
|
||||||
url = 'http://localhost:8000/api/database_version.php';
|
url = '/api/database_version.php';
|
||||||
response = makeRequest(url);
|
response = makeRequest(url);
|
||||||
setInfoSection(response);
|
setInfoSection(response);
|
||||||
}
|
}
|
||||||
@ -13,7 +13,7 @@ function makeRequest(url){
|
|||||||
}
|
}
|
||||||
|
|
||||||
function setCrontabStats(){
|
function setCrontabStats(){
|
||||||
url = "http://localhost:8000/api/crontab_stats.php";
|
url = "/api/crontab_stats.php";
|
||||||
response = makeRequest(url);
|
response = makeRequest(url);
|
||||||
setInfoSection(response);
|
setInfoSection(response);
|
||||||
}
|
}
|
||||||
@ -24,19 +24,19 @@ function setInfoSection (string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getTable(name){
|
function getTable(name){
|
||||||
url = "http://localhost:8000/api/table.php?name=" + name;
|
url = "/api/table.php?name=" + name;
|
||||||
response = makeRequest(url);
|
response = makeRequest(url);
|
||||||
setInfoSection(response);
|
setInfoSection(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
function getCrontabs (){
|
function getCrontabs (){
|
||||||
url = "http://localhost:8000/api/table.php?name='crontabs'&columns=crontab_path,crontab_created_timestamp,crontab_modified_timestamp";
|
url = "/api/table.php?name='crontabs'&columns=crontab_path,crontab_created_timestamp,crontab_modified_timestamp";
|
||||||
response = makeRequest(url);
|
response = makeRequest(url);
|
||||||
setInfoSection(response);
|
setInfoSection(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
function test (){
|
function test (){
|
||||||
url = "http://localhost:8000/api/crontab_view.php?name=0hourly";
|
url = "/api/crontab_view.php?name=0hourly";
|
||||||
response = makeRequest(url);
|
response = makeRequest(url);
|
||||||
setInfoSection(response);
|
setInfoSection(response);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user