mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
36 lines
970 B
JavaScript
36 lines
970 B
JavaScript
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
|
|
window.VTE = window.VTE || {};
|
|
|
|
VTE.Settings = VTE.Settings || {};
|
|
|
|
VTE.Settings.ProxyServer = VTE.Settings.ProxyServer || {
|
|
|
|
validate: function() {
|
|
if (!emptyCheck("server", "Proxy Server Name", "text")) return false;
|
|
if (!emptyCheck("port", "Port Number", "text")) return false;
|
|
|
|
if (isNaN(document.tandc.port.value)) {
|
|
alert(alert_arr.LBL_ENTER_VALID_PORT);
|
|
return false;
|
|
}
|
|
|
|
if (!emptyCheck("server_username", "Proxy User Name", "text")) return false;
|
|
if (!emptyCheck("server_password", "Proxy Password", "text")) return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
};
|
|
|
|
/**
|
|
* @deprecated
|
|
* This function has been moved to VTE.Settings.ProxyServer class.
|
|
*/
|
|
|
|
function validate() {
|
|
return VTE.callDeprecated('validate', VTE.Settings.ProxyServer.validate, arguments);
|
|
} |