Resolved gh-463 to insure data types that require length is enforced by default in the GUI.
This commit is contained in:
@ -9,56 +9,56 @@
|
||||
*/
|
||||
|
||||
// Some Global Values
|
||||
jform_vvvvwcpvxx_required = false;
|
||||
jform_vvvvwcpvxy_required = false;
|
||||
jform_vvvvwcpvxz_required = false;
|
||||
jform_vvvvwcpvya_required = false;
|
||||
jform_vvvvwcpvyb_required = false;
|
||||
jform_vvvvwcqvyc_required = false;
|
||||
jform_vvvvwcrvyd_required = false;
|
||||
jform_vvvvwcsvxz_required = false;
|
||||
jform_vvvvwcsvya_required = false;
|
||||
jform_vvvvwcsvyb_required = false;
|
||||
jform_vvvvwcsvyc_required = false;
|
||||
jform_vvvvwcsvyd_required = false;
|
||||
jform_vvvvwctvye_required = false;
|
||||
jform_vvvvwcvvyf_required = false;
|
||||
jform_vvvvwcuvyf_required = false;
|
||||
jform_vvvvwcwvyg_required = false;
|
||||
jform_vvvvwcyvyh_required = false;
|
||||
|
||||
// Initial Script
|
||||
jQuery(document).ready(function()
|
||||
{
|
||||
var protocol_vvvvwcp = jQuery("#jform_protocol").val();
|
||||
vvvvwcp(protocol_vvvvwcp);
|
||||
|
||||
var protocol_vvvvwcq = jQuery("#jform_protocol").val();
|
||||
vvvvwcq(protocol_vvvvwcq);
|
||||
|
||||
var protocol_vvvvwcr = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwcr = jQuery("#jform_authentication").val();
|
||||
vvvvwcr(protocol_vvvvwcr,authentication_vvvvwcr);
|
||||
var protocol_vvvvwcs = jQuery("#jform_protocol").val();
|
||||
vvvvwcs(protocol_vvvvwcs);
|
||||
|
||||
var protocol_vvvvwct = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwct = jQuery("#jform_authentication").val();
|
||||
vvvvwct(protocol_vvvvwct,authentication_vvvvwct);
|
||||
vvvvwct(protocol_vvvvwct);
|
||||
|
||||
var protocol_vvvvwcv = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwcv = jQuery("#jform_authentication").val();
|
||||
vvvvwcv(protocol_vvvvwcv,authentication_vvvvwcv);
|
||||
var protocol_vvvvwcu = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwcu = jQuery("#jform_authentication").val();
|
||||
vvvvwcu(protocol_vvvvwcu,authentication_vvvvwcu);
|
||||
|
||||
var protocol_vvvvwcx = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwcx = jQuery("#jform_authentication").val();
|
||||
vvvvwcx(protocol_vvvvwcx,authentication_vvvvwcx);
|
||||
var protocol_vvvvwcw = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwcw = jQuery("#jform_authentication").val();
|
||||
vvvvwcw(protocol_vvvvwcw,authentication_vvvvwcw);
|
||||
|
||||
var protocol_vvvvwcy = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwcy = jQuery("#jform_authentication").val();
|
||||
vvvvwcy(protocol_vvvvwcy,authentication_vvvvwcy);
|
||||
|
||||
var protocol_vvvvwda = jQuery("#jform_protocol").val();
|
||||
var authentication_vvvvwda = jQuery("#jform_authentication").val();
|
||||
vvvvwda(protocol_vvvvwda,authentication_vvvvwda);
|
||||
});
|
||||
|
||||
// the vvvvwcp function
|
||||
function vvvvwcp(protocol_vvvvwcp)
|
||||
// the vvvvwcs function
|
||||
function vvvvwcs(protocol_vvvvwcs)
|
||||
{
|
||||
if (isSet(protocol_vvvvwcp) && protocol_vvvvwcp.constructor !== Array)
|
||||
if (isSet(protocol_vvvvwcs) && protocol_vvvvwcs.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcp = protocol_vvvvwcp;
|
||||
var protocol_vvvvwcp = [];
|
||||
protocol_vvvvwcp.push(temp_vvvvwcp);
|
||||
var temp_vvvvwcs = protocol_vvvvwcs;
|
||||
var protocol_vvvvwcs = [];
|
||||
protocol_vvvvwcs.push(temp_vvvvwcs);
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwcp))
|
||||
else if (!isSet(protocol_vvvvwcs))
|
||||
{
|
||||
var protocol_vvvvwcp = [];
|
||||
var protocol_vvvvwcs = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwcp.some(protocol_vvvvwcp_SomeFunc);
|
||||
var protocol = protocol_vvvvwcs.some(protocol_vvvvwcs_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -66,254 +66,117 @@ function vvvvwcp(protocol_vvvvwcp)
|
||||
{
|
||||
jQuery('#jform_authentication').closest('.control-group').show();
|
||||
// add required attribute to authentication field
|
||||
if (jform_vvvvwcpvxx_required)
|
||||
if (jform_vvvvwcsvxz_required)
|
||||
{
|
||||
updateFieldRequired('authentication',0);
|
||||
jQuery('#jform_authentication').prop('required','required');
|
||||
jQuery('#jform_authentication').attr('aria-required',true);
|
||||
jQuery('#jform_authentication').addClass('required');
|
||||
jform_vvvvwcpvxx_required = false;
|
||||
jform_vvvvwcsvxz_required = false;
|
||||
}
|
||||
jQuery('#jform_host').closest('.control-group').show();
|
||||
// add required attribute to host field
|
||||
if (jform_vvvvwcpvxy_required)
|
||||
if (jform_vvvvwcsvya_required)
|
||||
{
|
||||
updateFieldRequired('host',0);
|
||||
jQuery('#jform_host').prop('required','required');
|
||||
jQuery('#jform_host').attr('aria-required',true);
|
||||
jQuery('#jform_host').addClass('required');
|
||||
jform_vvvvwcpvxy_required = false;
|
||||
jform_vvvvwcsvya_required = false;
|
||||
}
|
||||
jQuery('#jform_port').closest('.control-group').show();
|
||||
// add required attribute to port field
|
||||
if (jform_vvvvwcpvxz_required)
|
||||
if (jform_vvvvwcsvyb_required)
|
||||
{
|
||||
updateFieldRequired('port',0);
|
||||
jQuery('#jform_port').prop('required','required');
|
||||
jQuery('#jform_port').attr('aria-required',true);
|
||||
jQuery('#jform_port').addClass('required');
|
||||
jform_vvvvwcpvxz_required = false;
|
||||
jform_vvvvwcsvyb_required = false;
|
||||
}
|
||||
jQuery('#jform_path').closest('.control-group').show();
|
||||
// add required attribute to path field
|
||||
if (jform_vvvvwcpvya_required)
|
||||
if (jform_vvvvwcsvyc_required)
|
||||
{
|
||||
updateFieldRequired('path',0);
|
||||
jQuery('#jform_path').prop('required','required');
|
||||
jQuery('#jform_path').attr('aria-required',true);
|
||||
jQuery('#jform_path').addClass('required');
|
||||
jform_vvvvwcpvya_required = false;
|
||||
jform_vvvvwcsvyc_required = false;
|
||||
}
|
||||
jQuery('.note_ssh_security').closest('.control-group').show();
|
||||
jQuery('#jform_username').closest('.control-group').show();
|
||||
// add required attribute to username field
|
||||
if (jform_vvvvwcpvyb_required)
|
||||
if (jform_vvvvwcsvyd_required)
|
||||
{
|
||||
updateFieldRequired('username',0);
|
||||
jQuery('#jform_username').prop('required','required');
|
||||
jQuery('#jform_username').attr('aria-required',true);
|
||||
jQuery('#jform_username').addClass('required');
|
||||
jform_vvvvwcpvyb_required = false;
|
||||
jform_vvvvwcsvyd_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_authentication').closest('.control-group').hide();
|
||||
// remove required attribute from authentication field
|
||||
if (!jform_vvvvwcpvxx_required)
|
||||
if (!jform_vvvvwcsvxz_required)
|
||||
{
|
||||
updateFieldRequired('authentication',1);
|
||||
jQuery('#jform_authentication').removeAttr('required');
|
||||
jQuery('#jform_authentication').removeAttr('aria-required');
|
||||
jQuery('#jform_authentication').removeClass('required');
|
||||
jform_vvvvwcpvxx_required = true;
|
||||
jform_vvvvwcsvxz_required = true;
|
||||
}
|
||||
jQuery('#jform_host').closest('.control-group').hide();
|
||||
// remove required attribute from host field
|
||||
if (!jform_vvvvwcpvxy_required)
|
||||
if (!jform_vvvvwcsvya_required)
|
||||
{
|
||||
updateFieldRequired('host',1);
|
||||
jQuery('#jform_host').removeAttr('required');
|
||||
jQuery('#jform_host').removeAttr('aria-required');
|
||||
jQuery('#jform_host').removeClass('required');
|
||||
jform_vvvvwcpvxy_required = true;
|
||||
jform_vvvvwcsvya_required = true;
|
||||
}
|
||||
jQuery('#jform_port').closest('.control-group').hide();
|
||||
// remove required attribute from port field
|
||||
if (!jform_vvvvwcpvxz_required)
|
||||
if (!jform_vvvvwcsvyb_required)
|
||||
{
|
||||
updateFieldRequired('port',1);
|
||||
jQuery('#jform_port').removeAttr('required');
|
||||
jQuery('#jform_port').removeAttr('aria-required');
|
||||
jQuery('#jform_port').removeClass('required');
|
||||
jform_vvvvwcpvxz_required = true;
|
||||
jform_vvvvwcsvyb_required = true;
|
||||
}
|
||||
jQuery('#jform_path').closest('.control-group').hide();
|
||||
// remove required attribute from path field
|
||||
if (!jform_vvvvwcpvya_required)
|
||||
if (!jform_vvvvwcsvyc_required)
|
||||
{
|
||||
updateFieldRequired('path',1);
|
||||
jQuery('#jform_path').removeAttr('required');
|
||||
jQuery('#jform_path').removeAttr('aria-required');
|
||||
jQuery('#jform_path').removeClass('required');
|
||||
jform_vvvvwcpvya_required = true;
|
||||
jform_vvvvwcsvyc_required = true;
|
||||
}
|
||||
jQuery('.note_ssh_security').closest('.control-group').hide();
|
||||
jQuery('#jform_username').closest('.control-group').hide();
|
||||
// remove required attribute from username field
|
||||
if (!jform_vvvvwcpvyb_required)
|
||||
if (!jform_vvvvwcsvyd_required)
|
||||
{
|
||||
updateFieldRequired('username',1);
|
||||
jQuery('#jform_username').removeAttr('required');
|
||||
jQuery('#jform_username').removeAttr('aria-required');
|
||||
jQuery('#jform_username').removeClass('required');
|
||||
jform_vvvvwcpvyb_required = true;
|
||||
jform_vvvvwcsvyd_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcp Some function
|
||||
function protocol_vvvvwcp_SomeFunc(protocol_vvvvwcp)
|
||||
// the vvvvwcs Some function
|
||||
function protocol_vvvvwcs_SomeFunc(protocol_vvvvwcs)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwcp == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcq function
|
||||
function vvvvwcq(protocol_vvvvwcq)
|
||||
{
|
||||
if (isSet(protocol_vvvvwcq) && protocol_vvvvwcq.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcq = protocol_vvvvwcq;
|
||||
var protocol_vvvvwcq = [];
|
||||
protocol_vvvvwcq.push(temp_vvvvwcq);
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwcq))
|
||||
{
|
||||
var protocol_vvvvwcq = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwcq.some(protocol_vvvvwcq_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (protocol)
|
||||
{
|
||||
jQuery('.note_ftp_signature').closest('.control-group').show();
|
||||
jQuery('#jform_signature').closest('.control-group').show();
|
||||
// add required attribute to signature field
|
||||
if (jform_vvvvwcqvyc_required)
|
||||
{
|
||||
updateFieldRequired('signature',0);
|
||||
jQuery('#jform_signature').prop('required','required');
|
||||
jQuery('#jform_signature').attr('aria-required',true);
|
||||
jQuery('#jform_signature').addClass('required');
|
||||
jform_vvvvwcqvyc_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('.note_ftp_signature').closest('.control-group').hide();
|
||||
jQuery('#jform_signature').closest('.control-group').hide();
|
||||
// remove required attribute from signature field
|
||||
if (!jform_vvvvwcqvyc_required)
|
||||
{
|
||||
updateFieldRequired('signature',1);
|
||||
jQuery('#jform_signature').removeAttr('required');
|
||||
jQuery('#jform_signature').removeAttr('aria-required');
|
||||
jQuery('#jform_signature').removeClass('required');
|
||||
jform_vvvvwcqvyc_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcq Some function
|
||||
function protocol_vvvvwcq_SomeFunc(protocol_vvvvwcq)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwcq == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcr function
|
||||
function vvvvwcr(protocol_vvvvwcr,authentication_vvvvwcr)
|
||||
{
|
||||
if (isSet(protocol_vvvvwcr) && protocol_vvvvwcr.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcr = protocol_vvvvwcr;
|
||||
var protocol_vvvvwcr = [];
|
||||
protocol_vvvvwcr.push(temp_vvvvwcr);
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwcr))
|
||||
{
|
||||
var protocol_vvvvwcr = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwcr.some(protocol_vvvvwcr_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvwcr) && authentication_vvvvwcr.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcr = authentication_vvvvwcr;
|
||||
var authentication_vvvvwcr = [];
|
||||
authentication_vvvvwcr.push(temp_vvvvwcr);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwcr))
|
||||
{
|
||||
var authentication_vvvvwcr = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwcr.some(authentication_vvvvwcr_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (protocol && authentication)
|
||||
{
|
||||
jQuery('#jform_password').closest('.control-group').show();
|
||||
// add required attribute to password field
|
||||
if (jform_vvvvwcrvyd_required)
|
||||
{
|
||||
updateFieldRequired('password',0);
|
||||
jQuery('#jform_password').prop('required','required');
|
||||
jQuery('#jform_password').attr('aria-required',true);
|
||||
jQuery('#jform_password').addClass('required');
|
||||
jform_vvvvwcrvyd_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_password').closest('.control-group').hide();
|
||||
// remove required attribute from password field
|
||||
if (!jform_vvvvwcrvyd_required)
|
||||
{
|
||||
updateFieldRequired('password',1);
|
||||
jQuery('#jform_password').removeAttr('required');
|
||||
jQuery('#jform_password').removeAttr('aria-required');
|
||||
jQuery('#jform_password').removeClass('required');
|
||||
jform_vvvvwcrvyd_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcr Some function
|
||||
function protocol_vvvvwcr_SomeFunc(protocol_vvvvwcr)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwcr == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcr Some function
|
||||
function authentication_vvvvwcr_SomeFunc(authentication_vvvvwcr)
|
||||
{
|
||||
// set the function logic
|
||||
if (authentication_vvvvwcr == 1 || authentication_vvvvwcr == 3 || authentication_vvvvwcr == 5)
|
||||
if (protocol_vvvvwcs == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@ -321,7 +184,7 @@ function authentication_vvvvwcr_SomeFunc(authentication_vvvvwcr)
|
||||
}
|
||||
|
||||
// the vvvvwct function
|
||||
function vvvvwct(protocol_vvvvwct,authentication_vvvvwct)
|
||||
function vvvvwct(protocol_vvvvwct)
|
||||
{
|
||||
if (isSet(protocol_vvvvwct) && protocol_vvvvwct.constructor !== Array)
|
||||
{
|
||||
@ -335,43 +198,33 @@ function vvvvwct(protocol_vvvvwct,authentication_vvvvwct)
|
||||
}
|
||||
var protocol = protocol_vvvvwct.some(protocol_vvvvwct_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvwct) && authentication_vvvvwct.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwct = authentication_vvvvwct;
|
||||
var authentication_vvvvwct = [];
|
||||
authentication_vvvvwct.push(temp_vvvvwct);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwct))
|
||||
{
|
||||
var authentication_vvvvwct = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwct.some(authentication_vvvvwct_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (protocol && authentication)
|
||||
if (protocol)
|
||||
{
|
||||
jQuery('#jform_private').closest('.control-group').show();
|
||||
// add required attribute to private field
|
||||
jQuery('.note_ftp_signature').closest('.control-group').show();
|
||||
jQuery('#jform_signature').closest('.control-group').show();
|
||||
// add required attribute to signature field
|
||||
if (jform_vvvvwctvye_required)
|
||||
{
|
||||
updateFieldRequired('private',0);
|
||||
jQuery('#jform_private').prop('required','required');
|
||||
jQuery('#jform_private').attr('aria-required',true);
|
||||
jQuery('#jform_private').addClass('required');
|
||||
updateFieldRequired('signature',0);
|
||||
jQuery('#jform_signature').prop('required','required');
|
||||
jQuery('#jform_signature').attr('aria-required',true);
|
||||
jQuery('#jform_signature').addClass('required');
|
||||
jform_vvvvwctvye_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_private').closest('.control-group').hide();
|
||||
// remove required attribute from private field
|
||||
jQuery('.note_ftp_signature').closest('.control-group').hide();
|
||||
jQuery('#jform_signature').closest('.control-group').hide();
|
||||
// remove required attribute from signature field
|
||||
if (!jform_vvvvwctvye_required)
|
||||
{
|
||||
updateFieldRequired('private',1);
|
||||
jQuery('#jform_private').removeAttr('required');
|
||||
jQuery('#jform_private').removeAttr('aria-required');
|
||||
jQuery('#jform_private').removeClass('required');
|
||||
updateFieldRequired('signature',1);
|
||||
jQuery('#jform_signature').removeAttr('required');
|
||||
jQuery('#jform_signature').removeAttr('aria-required');
|
||||
jQuery('#jform_signature').removeClass('required');
|
||||
jform_vvvvwctvye_required = true;
|
||||
}
|
||||
}
|
||||
@ -381,50 +234,197 @@ function vvvvwct(protocol_vvvvwct,authentication_vvvvwct)
|
||||
function protocol_vvvvwct_SomeFunc(protocol_vvvvwct)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwct == 2)
|
||||
if (protocol_vvvvwct == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwct Some function
|
||||
function authentication_vvvvwct_SomeFunc(authentication_vvvvwct)
|
||||
// the vvvvwcu function
|
||||
function vvvvwcu(protocol_vvvvwcu,authentication_vvvvwcu)
|
||||
{
|
||||
if (isSet(protocol_vvvvwcu) && protocol_vvvvwcu.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcu = protocol_vvvvwcu;
|
||||
var protocol_vvvvwcu = [];
|
||||
protocol_vvvvwcu.push(temp_vvvvwcu);
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwcu))
|
||||
{
|
||||
var protocol_vvvvwcu = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwcu.some(protocol_vvvvwcu_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvwcu) && authentication_vvvvwcu.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcu = authentication_vvvvwcu;
|
||||
var authentication_vvvvwcu = [];
|
||||
authentication_vvvvwcu.push(temp_vvvvwcu);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwcu))
|
||||
{
|
||||
var authentication_vvvvwcu = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwcu.some(authentication_vvvvwcu_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (protocol && authentication)
|
||||
{
|
||||
jQuery('#jform_password').closest('.control-group').show();
|
||||
// add required attribute to password field
|
||||
if (jform_vvvvwcuvyf_required)
|
||||
{
|
||||
updateFieldRequired('password',0);
|
||||
jQuery('#jform_password').prop('required','required');
|
||||
jQuery('#jform_password').attr('aria-required',true);
|
||||
jQuery('#jform_password').addClass('required');
|
||||
jform_vvvvwcuvyf_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_password').closest('.control-group').hide();
|
||||
// remove required attribute from password field
|
||||
if (!jform_vvvvwcuvyf_required)
|
||||
{
|
||||
updateFieldRequired('password',1);
|
||||
jQuery('#jform_password').removeAttr('required');
|
||||
jQuery('#jform_password').removeAttr('aria-required');
|
||||
jQuery('#jform_password').removeClass('required');
|
||||
jform_vvvvwcuvyf_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcu Some function
|
||||
function protocol_vvvvwcu_SomeFunc(protocol_vvvvwcu)
|
||||
{
|
||||
// set the function logic
|
||||
if (authentication_vvvvwct == 2 || authentication_vvvvwct == 3)
|
||||
if (protocol_vvvvwcu == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcv function
|
||||
function vvvvwcv(protocol_vvvvwcv,authentication_vvvvwcv)
|
||||
// the vvvvwcu Some function
|
||||
function authentication_vvvvwcu_SomeFunc(authentication_vvvvwcu)
|
||||
{
|
||||
if (isSet(protocol_vvvvwcv) && protocol_vvvvwcv.constructor !== Array)
|
||||
// set the function logic
|
||||
if (authentication_vvvvwcu == 1 || authentication_vvvvwcu == 3 || authentication_vvvvwcu == 5)
|
||||
{
|
||||
var temp_vvvvwcv = protocol_vvvvwcv;
|
||||
var protocol_vvvvwcv = [];
|
||||
protocol_vvvvwcv.push(temp_vvvvwcv);
|
||||
return true;
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwcv))
|
||||
{
|
||||
var protocol_vvvvwcv = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwcv.some(protocol_vvvvwcv_SomeFunc);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (isSet(authentication_vvvvwcv) && authentication_vvvvwcv.constructor !== Array)
|
||||
// the vvvvwcw function
|
||||
function vvvvwcw(protocol_vvvvwcw,authentication_vvvvwcw)
|
||||
{
|
||||
if (isSet(protocol_vvvvwcw) && protocol_vvvvwcw.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcv = authentication_vvvvwcv;
|
||||
var authentication_vvvvwcv = [];
|
||||
authentication_vvvvwcv.push(temp_vvvvwcv);
|
||||
var temp_vvvvwcw = protocol_vvvvwcw;
|
||||
var protocol_vvvvwcw = [];
|
||||
protocol_vvvvwcw.push(temp_vvvvwcw);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwcv))
|
||||
else if (!isSet(protocol_vvvvwcw))
|
||||
{
|
||||
var authentication_vvvvwcv = [];
|
||||
var protocol_vvvvwcw = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwcv.some(authentication_vvvvwcv_SomeFunc);
|
||||
var protocol = protocol_vvvvwcw.some(protocol_vvvvwcw_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvwcw) && authentication_vvvvwcw.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcw = authentication_vvvvwcw;
|
||||
var authentication_vvvvwcw = [];
|
||||
authentication_vvvvwcw.push(temp_vvvvwcw);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwcw))
|
||||
{
|
||||
var authentication_vvvvwcw = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwcw.some(authentication_vvvvwcw_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (protocol && authentication)
|
||||
{
|
||||
jQuery('#jform_private').closest('.control-group').show();
|
||||
// add required attribute to private field
|
||||
if (jform_vvvvwcwvyg_required)
|
||||
{
|
||||
updateFieldRequired('private',0);
|
||||
jQuery('#jform_private').prop('required','required');
|
||||
jQuery('#jform_private').attr('aria-required',true);
|
||||
jQuery('#jform_private').addClass('required');
|
||||
jform_vvvvwcwvyg_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_private').closest('.control-group').hide();
|
||||
// remove required attribute from private field
|
||||
if (!jform_vvvvwcwvyg_required)
|
||||
{
|
||||
updateFieldRequired('private',1);
|
||||
jQuery('#jform_private').removeAttr('required');
|
||||
jQuery('#jform_private').removeAttr('aria-required');
|
||||
jQuery('#jform_private').removeClass('required');
|
||||
jform_vvvvwcwvyg_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcw Some function
|
||||
function protocol_vvvvwcw_SomeFunc(protocol_vvvvwcw)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwcw == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcw Some function
|
||||
function authentication_vvvvwcw_SomeFunc(authentication_vvvvwcw)
|
||||
{
|
||||
// set the function logic
|
||||
if (authentication_vvvvwcw == 2 || authentication_vvvvwcw == 3)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcy function
|
||||
function vvvvwcy(protocol_vvvvwcy,authentication_vvvvwcy)
|
||||
{
|
||||
if (isSet(protocol_vvvvwcy) && protocol_vvvvwcy.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcy = protocol_vvvvwcy;
|
||||
var protocol_vvvvwcy = [];
|
||||
protocol_vvvvwcy.push(temp_vvvvwcy);
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwcy))
|
||||
{
|
||||
var protocol_vvvvwcy = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwcy.some(protocol_vvvvwcy_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvwcy) && authentication_vvvvwcy.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcy = authentication_vvvvwcy;
|
||||
var authentication_vvvvwcy = [];
|
||||
authentication_vvvvwcy.push(temp_vvvvwcy);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwcy))
|
||||
{
|
||||
var authentication_vvvvwcy = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwcy.some(authentication_vvvvwcy_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -432,78 +432,78 @@ function vvvvwcv(protocol_vvvvwcv,authentication_vvvvwcv)
|
||||
{
|
||||
jQuery('#jform_private_key').closest('.control-group').show();
|
||||
// add required attribute to private_key field
|
||||
if (jform_vvvvwcvvyf_required)
|
||||
if (jform_vvvvwcyvyh_required)
|
||||
{
|
||||
updateFieldRequired('private_key',0);
|
||||
jQuery('#jform_private_key').prop('required','required');
|
||||
jQuery('#jform_private_key').attr('aria-required',true);
|
||||
jQuery('#jform_private_key').addClass('required');
|
||||
jform_vvvvwcvvyf_required = false;
|
||||
jform_vvvvwcyvyh_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_private_key').closest('.control-group').hide();
|
||||
// remove required attribute from private_key field
|
||||
if (!jform_vvvvwcvvyf_required)
|
||||
if (!jform_vvvvwcyvyh_required)
|
||||
{
|
||||
updateFieldRequired('private_key',1);
|
||||
jQuery('#jform_private_key').removeAttr('required');
|
||||
jQuery('#jform_private_key').removeAttr('aria-required');
|
||||
jQuery('#jform_private_key').removeClass('required');
|
||||
jform_vvvvwcvvyf_required = true;
|
||||
jform_vvvvwcyvyh_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcv Some function
|
||||
function protocol_vvvvwcv_SomeFunc(protocol_vvvvwcv)
|
||||
// the vvvvwcy Some function
|
||||
function protocol_vvvvwcy_SomeFunc(protocol_vvvvwcy)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwcv == 2)
|
||||
if (protocol_vvvvwcy == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcv Some function
|
||||
function authentication_vvvvwcv_SomeFunc(authentication_vvvvwcv)
|
||||
// the vvvvwcy Some function
|
||||
function authentication_vvvvwcy_SomeFunc(authentication_vvvvwcy)
|
||||
{
|
||||
// set the function logic
|
||||
if (authentication_vvvvwcv == 4 || authentication_vvvvwcv == 5)
|
||||
if (authentication_vvvvwcy == 4 || authentication_vvvvwcy == 5)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcx function
|
||||
function vvvvwcx(protocol_vvvvwcx,authentication_vvvvwcx)
|
||||
// the vvvvwda function
|
||||
function vvvvwda(protocol_vvvvwda,authentication_vvvvwda)
|
||||
{
|
||||
if (isSet(protocol_vvvvwcx) && protocol_vvvvwcx.constructor !== Array)
|
||||
if (isSet(protocol_vvvvwda) && protocol_vvvvwda.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcx = protocol_vvvvwcx;
|
||||
var protocol_vvvvwcx = [];
|
||||
protocol_vvvvwcx.push(temp_vvvvwcx);
|
||||
var temp_vvvvwda = protocol_vvvvwda;
|
||||
var protocol_vvvvwda = [];
|
||||
protocol_vvvvwda.push(temp_vvvvwda);
|
||||
}
|
||||
else if (!isSet(protocol_vvvvwcx))
|
||||
else if (!isSet(protocol_vvvvwda))
|
||||
{
|
||||
var protocol_vvvvwcx = [];
|
||||
var protocol_vvvvwda = [];
|
||||
}
|
||||
var protocol = protocol_vvvvwcx.some(protocol_vvvvwcx_SomeFunc);
|
||||
var protocol = protocol_vvvvwda.some(protocol_vvvvwda_SomeFunc);
|
||||
|
||||
if (isSet(authentication_vvvvwcx) && authentication_vvvvwcx.constructor !== Array)
|
||||
if (isSet(authentication_vvvvwda) && authentication_vvvvwda.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcx = authentication_vvvvwcx;
|
||||
var authentication_vvvvwcx = [];
|
||||
authentication_vvvvwcx.push(temp_vvvvwcx);
|
||||
var temp_vvvvwda = authentication_vvvvwda;
|
||||
var authentication_vvvvwda = [];
|
||||
authentication_vvvvwda.push(temp_vvvvwda);
|
||||
}
|
||||
else if (!isSet(authentication_vvvvwcx))
|
||||
else if (!isSet(authentication_vvvvwda))
|
||||
{
|
||||
var authentication_vvvvwcx = [];
|
||||
var authentication_vvvvwda = [];
|
||||
}
|
||||
var authentication = authentication_vvvvwcx.some(authentication_vvvvwcx_SomeFunc);
|
||||
var authentication = authentication_vvvvwda.some(authentication_vvvvwda_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
@ -517,22 +517,22 @@ function vvvvwcx(protocol_vvvvwcx,authentication_vvvvwcx)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcx Some function
|
||||
function protocol_vvvvwcx_SomeFunc(protocol_vvvvwcx)
|
||||
// the vvvvwda Some function
|
||||
function protocol_vvvvwda_SomeFunc(protocol_vvvvwda)
|
||||
{
|
||||
// set the function logic
|
||||
if (protocol_vvvvwcx == 2)
|
||||
if (protocol_vvvvwda == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcx Some function
|
||||
function authentication_vvvvwcx_SomeFunc(authentication_vvvvwcx)
|
||||
// the vvvvwda Some function
|
||||
function authentication_vvvvwda_SomeFunc(authentication_vvvvwda)
|
||||
{
|
||||
// set the function logic
|
||||
if (authentication_vvvvwcx == 2 || authentication_vvvvwcx == 3 || authentication_vvvvwcx == 4 || authentication_vvvvwcx == 5)
|
||||
if (authentication_vvvvwda == 2 || authentication_vvvvwda == 3 || authentication_vvvvwda == 4 || authentication_vvvvwda == 5)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user