[ad_1]
Discrimination against people with HIV and AIDS reached record levels this year in Switzerland. By mid-November 2018, the Swiss AIDS Foundation (ASS) had registered 122 such complaints.
These discriminations affected in particular social insurance (23), private insurance (22) and public health (20). In addition, there were 27 cases of data breach in the medical, personal, professional and other fields.
This is already more than the number of cases reported for the whole of 2017 and it is also more than in previous years where this number hardly exceeded 90.
A health insurance company refused additional outpatient insurance to a man who was on therapy whose virus is not detectable. In another case, a sickness fund refused benefits for the treatment of HIV sequelae.
The cases also included the refusal of a mbadeuse and a dentist to care for HIV-positive patients. A Graubünden retirement home has also rejected requests from three elderly people carrying the virus.
The legal counsel of the SSA has been able to intervene successfully several times, he announced on Tuesday. Legal channels are limited, however, because Switzerland does not have an anti-discrimination law. (Ps / nxp)
Created: 27.11.2018, 16:57
var commentNotSent = true; /////////////////////////////////////////////////// // object FBcomments, can be reused for FB authentification var FBcomments = { fbAppId : '251285271592561', version: 'v2.0', fbChannel_path : '/facebook_xd_receiver.html', isLoggedIn : false,
/////////////////////////////////////////////////// initFb : function() { window.fbAsyncInit = function() { FB.init({appId: FBcomments.fbAppId, version: FBcomments.version}); if (typeof FB === 'undefined') { alert($("#tr_fbConnectError").html()); } };
(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "http://connect.facebook.net/fr_FR/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); }, /////////////////////////////////////////////////// fbLogin : function() { var populateFbData_ = this.populateFbData; var fbDisplay_ = this.fbDisplay; var promptFanBox_ = this.promptFanBox;
FB.init({appId: FBcomments.fbAppId, version: FBcomments.version}); if (typeof FB === 'undefined') { alert($("#tr_fbConnectError").html()); } FB.login(function(response) { if (response.authResponse) { // granted some permissions this.isLoggedIn = true; populateFbData_(response.authResponse.accessToken, response.authResponse.userID); fbDisplay_(); promptFanBox_(response.authResponse.userID); } else { // user is not logged this.isLoggedIn = false; fbDisplay_(); } }, {scope:'publish_actions'}); }, /////////////////////////////////////////////////// fbLogout : function() { var fbDisplay_ = this.fbDisplay; $.cookie('fbsNN', '', { path: '/', expires: -1 }); isLoggedIn = false; fbDisplay_(); },
/////////////////////////////////////////////////// populateFbData : function(accessToken, userID) { fbAccessToken = accessToken; fbUserID = userID; FB.api( '/me', { fields: 'name' }, function(response) { var fbUserName = ''; if (response){ if (response.name){ fbUserName = response.name; } } // store a fb-independent cookie for future login $.cookie('fbsNN', "access_token="+escape(fbAccessToken)+""+"&uid="+fbUserID+"&realname="+escape(fbUserName), { path: '/', expires: 30 }); fbDomInsert(fbUserName, fbUserID, fbAccessToken); } ); },
/////////////////////////////////////////////////// promptFanBox : function(userId) { FB.api({ method: 'fql.query', query: 'SELECT uid FROM page_fan WHERE uid='+userId+' AND page_id='+10150100771335484 }, function(response) { if (typeof response[0] === 'undefined') { // user has not liked the page $(document).ready(function(){ var txt = $("#tr_fanBoxPromptTitle").html(); tb_show(txt,'/facebook_iframe.html?&height=250&width=645'); }); } } ); }, /////////////////////////////////////////////////// fbDisplay : function() { fbLoginDisplay(this.isLoggedIn ); loginDrop(); } /////////////////////////////////////////////////// } // end object
/////////////////////////////////////////////////// // cookie based user registration, maybe replaced by user DB in future function fetch_nnCookie() { var nnRegex = /access_token=([^&]+)&uid=([0-9]+)&realname=(.+)/; nnRegex.exec($.cookie('fbsNN')); fbAccessToken = unescape(RegExp.$1); fbUserID = RegExp.$2; fbUserName = unescape(RegExp.$3); } /////////////////////////////////////////////////// function check_nnCookie() { if( $.cookie('fbsNN') == null) { return false; } else { fetch_nnCookie(); // check for valid data, delete cookie otherwise if (fbAccessToken != null && fbAccessToken.length > 0 && fbUserID != null && fbUserID.length > 0 && fbUserName != null && fbUserName.length > 0 && fbUserName != 'undefined') { fbDomInsert(fbUserName, fbUserID, fbAccessToken); return true; } else { $.cookie('fbsNN', '', { expires: -1 }); return false; } } }
/////////////////////////////////////////////////// // form handler function commentsForm_send () { var fbForm_message = $.trim($("#fbForm_message").val()); var fbForm_msgID = $.trim($("#fbForm_msgID").val()); // if this value is > 0, its a reply-to-another-comment message var fbForm_uri = $.trim($("#fbForm_uri").val()); var fbForm_storyId = $.trim($("#fbForm_storyId").val()); var fbForm_ip = $.trim($("#fbForm_ip").val()); var fbForm_realName = $.trim($("#fbForm_realName").val()); var fbForm_userId = $.trim($("#fbForm_userId").val()); var fbForm_userToken = $("#fbForm_userToken").val(); var fbForm_publishOnFB = $("#fbForm_publishOnFB:checked").val(); if (typeof fbForm_publishOnFB === 'undefined') { fbForm_publishOnFB = 0; } var fbFormN_gotcha = $.trim($("#fbFormN_gotcha").val()); var hasErrors = false; var messageReg = fbForm_message.length > 1;
if (messageReg == false) { $("#commentError_message").show(); hasErrors = true; } if (fbFormN_gotcha.length > 1) { hasErrors = true; }
if (!($('#disclaimerConfirmBtn').is(':checked'))) { $("#commentError_disclaimer").show(); hasErrors = true; } if (!hasErrors) { $("#commentsForm_send").attr("disabled", "true"); $("#commentsForm_send_noFb").attr("disabled", "true");
$("#commentSendLoading").show(); $.ajax({ type: "POST", dataType: "text", cache: false, url: "/community/talkback_ajax.html", async: true, data: "action=sendComment&fbForm_realName="+encodeURIComponent(fbForm_realName)+"&fbForm_userId="+fbForm_userId+"&fbForm_userToken="+encodeURIComponent(fbForm_userToken)+"&fbForm_publishOnFB="+fbForm_publishOnFB+"&fbForm_uri="+encodeURIComponent(fbForm_uri)+"&fbForm_storyId="+fbForm_storyId+"&fbForm_ip="+fbForm_ip+"&fbForm_message="+encodeURIComponent(fbForm_message)+"&fbForm_msgID="+fbForm_msgID, error: function(){ alert($("#tr_commentSendError").html()); }, complete: function(reqCode){ $("#commentLogin").hide(); $("#fbForm_message").hide(); $("#fbForm_message_count_clbad").hide(); $("#commentError_message").hide(); $("#commentError_name").hide(); $("#commentError_location").hide(); $("#commentError_email").hide(); $("#commentError_disclaimer").hide(); $(".disclaimerText").hide(); $("#commentInfo_noFb").hide(); $("#commentsForm_send").hide(); $("#fbCommentPublishCheckbox").hide(); $("#commentsForm_send_noFb").hide(); $("#commentInfo_Fb").show(); $("#commentSendLoading").hide(); } }); } // hasErrors }
////////////////////////////////////////////////// function delete_cookie(cookie) { $.cookie(cookie, null, {path: '/'}); }
////////////////////////////////////////////////// function save_form_to_cookie(clbad_name) { var form = new Array(); $("."+ clbad_name).each(function(index) { form[index] = {}; form[index]['id'] = $(this).attr("id"); form[index]['val'] = $(this).val(); }); $.cookie(clbad_name, JSON.stringify(form), {json:true}); }
////////////////////////////////////////////////// function save_object_to_cookie(data) { var form = new Array(); form[0]['id'] = 'fbFormN_firstName'; form[0]['val'] = ''; form[1]['id'] = 'fbFormN_surname'; form[1]['val'] = ''; form[2]['id'] = 'fbFormN_zip'; form[2]['val'] = ''; form[3]['id'] = 'fbFormN_location'; form[3]['val'] = ''; form[4]['id'] = 'fbFormN_email'; form[4]['val'] = ''; $("."+ clbad_name).each(function(index) { form[index] = {}; form[index]['id'] = $(this).attr("id"); form[index]['val'] = $(this).val(); }); $.cookie(clbad_name, JSON.stringify(form), {json:true}); }
////////////////////////////////////////////////// function set_logged_in_cookie(data) { $.cookie('comment_login_details_email', JSON.stringify(data), {json:true,expires:14,path: '/'}); }
////////////////////////////////////////////////// function read_logged_in_cookie() { var cookie_form_data_json = $.cookie('comment_login_details_email'); if (cookie_form_data_json != null) { var form_data = JSON.parse(cookie_form_data_json); if (typeof form_data != 'undefined') { if (form_data.user.customer_id == 53){ if (typeof form_data.pcr != 'undefined' && form_data.pcr != null && form_data.pcr.length > 0){ if (typeof form_data.uid != 'undefined' && form_data.uid != null && form_data.uid != 0){ auto_login_email(form_data); return; } } } else { auto_login_email(form_data); } } }
}
////////////////////////////////////////////////// function read_form_from_cookie(clbad_name) { var cookie_form_data_json = $.cookie(clbad_name); var form_data = JSON.parse(cookie_form_data_json); $.each(form_data, function(index, value) { $("#"+ value.id).val(value.val); }); }
/////////////////////////////////////////////////// function commentsForm_create_account() { var fbFormN_firstName = $.trim($("#fbFormN_firstName").val()); var fbFormN_surname = $.trim($("#fbFormN_surname").val()); var fbFormN_zip = $.trim($("#fbFormN_zip").val()); var fbFormN_location = $.trim($("#fbFormN_location").val()); var fbFormN_telephone = $.trim($("#fbFormN_telephone").val()); var fbFormN_email = $.trim($("#fbFormN_email").val()); var fbForm_customerId = $.trim($("#fbForm_customerId").val()); var fbForm_storyId = $.trim($("#fbForm_storyId").val()); if ($("#fbFormN_pbadword").length) { var fbFormN_pbadword = $.trim($("#fbFormN_pbadword").val()); } if ($("#fbFormN_pbadword_confirm").length) { var fbFormN_pbadword_confirm = $.trim($("#fbFormN_pbadword_confirm").val()); }
var fbFormN_gotcha = $.trim($("#fbFormN_gotcha").val());
var hasErrors = false;
var nameReg = !(fbFormN_firstName.match(/[*]/)) && !(fbFormN_surname.match(/[*]/)) && fbFormN_firstName.length > 1 && fbFormN_surname.length > 1; var locReg = !(fbFormN_location.match(/[*]/))&& fbFormN_location.length > 1; if (fbFormN_telephone.length > 1) {
var telephoneReg = (fbFormN_telephone.match(/^[ds]*$/));
} var emailRegObj = /^([a-zA-Z0-9_.-])+@([a-zA-Z0-9_.-])+.([a-zA-Z])+([a-zA-Z])+/; // /^([a-zA-Z0-9_.-+])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;
var pbadword_params = '';
$("#commentError_name").hide(); $("#commentError_location").hide(); $("#commentError_telephone").hide(); $("#commentError_email").hide(); $("#commentError_pbadword").hide(); $(".disclaimerText").hide();
if (nameReg == false) { $("#commentError_name").show(); hasErrors = true; }
if (locReg == false) { $("#commentError_location").show(); hasErrors = true; }
if (telephoneReg == null) { $("#commentError_telephone").show(); hasErrors = true; }
if(emailRegObj.test(fbFormN_email) == false){ $("#commentError_email").show(); hasErrors = true; }
if (fbFormN_gotcha.length > 1) { hasErrors = true; }
if ($("#fbFormN_pbadword").length && $("#fbFormN_pbadword_confirm").length) { if (fbFormN_pbadword != fbFormN_pbadword_confirm) { $("#commentError_pbadword").show(); hasErrors = true; } else { pbadword_params += "&fbFormN_pbadword=" + encodeURIComponent(fbFormN_pbadword); pbadword_params += "&fbFormN_pbadword_confirm=" + encodeURIComponent(fbFormN_pbadword_confirm); } }
if (!hasErrors) { $("#commentsForm_send").attr("disabled", "true"); $("#commentsForm_send_noFb").attr("disabled", "true"); save_form_to_cookie('comment_form_input'); jQuery.ajax({ type: "POST", dataType: "json", cache: false, url: "/community/talkback_ajax.html", async: true, data: "action=talkback_create_account&fbFormN_firstName="+encodeURIComponent(fbFormN_firstName)+"&fbFormN_surname="+encodeURIComponent(fbFormN_surname)+"&fbFormN_zip="+encodeURIComponent(fbFormN_zip)+"&fbFormN_location="+encodeURIComponent(fbFormN_location)+"&fbFormN_telephone="+encodeURIComponent(fbFormN_telephone)+"&fbFormN_email="+encodeURIComponent(fbFormN_email)+"&customer_id="+fbForm_customerId+"&story_id="+encodeURIComponent(fbForm_storyId)+pbadword_params, error: function(){ }, success: function(data){ if (data.code == 0) { setMessageBox(data.message, data.addclbad); } else {
$("#disclaimerConfirm").hide(); $("#commentLogin").hide(); $("#fbForm_message").hide(); $("#fbForm_message_count_clbad").hide(); $("#commentError_message").hide(); $("#commentInfo_Fb").hide(); $("#commentsForm_send").hide(); $("#fbCommentPublishCheckbox").hide(); $("#commentsForm_send_noFb").hide();
setMessageBox(data.message, data.addclbad); } } }); } }
///////////////////////////////////////////////// function confirm_delete_account() { var customer_id = $.trim($("#fbForm_customerId").val()); var login_email_email = $.trim($("#login_email_email").val()); var login_email_token = $.trim($("#login_email_token").val());
jQuery.ajax({ type: "POST", dataType: "json", cache: false, url: "/community/talkback_ajax.html", async: true, data: "action=confirm_delete_account&customer_id="+customer_id+"&email="+encodeURIComponent(login_email_email)+"&token="+login_email_token, error: function(){ }, success: function(data){ if (data.code == 0) { setMessageBox(data.message, data.addclbad); } else if (data.code == 1) { $('#deleteAccount').html(data.message); $('#deleteAccount').fadeIn(800); $('#commentFormSubContainer').slideUp(1000); $('body,html').stop().animate({ 'scrollTop': $("#deleteAccount").offset().top-200 }, 1000) } } }); }
///////////////////////////////////////////////// function cancel_delete_account() { $('#deleteAccount').html(''); $('#deleteAccount').hide(); $('#commentFormSubContainer').slideDown(1000); }
///////////////////////////////////////////////// function delete_account() { var customer_id = $.trim($("#fbForm_customerId").val()); var login_email_email = $.trim($("#login_email_email").val()); var login_email_token = $.trim($("#login_email_token").val());
jQuery.ajax({ type: "POST", dataType: "json", cache: false, url: "/community/talkback_ajax.html", async: true, data: "action=delete_account&customer_id="+customer_id+"&email="+encodeURIComponent(login_email_email)+"&token="+login_email_token, error: function(){ }, success: function(data){ if (data.code == 0) { setMessageBox(data.message, data.addclbad); } else if (data.code == 1) { $('#deleteAccount').html(''); $('#deleteAccount').hide(); $('#commentFormSubContainer').slideDown(1000); setMessageBox(data.message, data.addclbad); delete_cookie('comment_login_details_email'); } else if (data.code == 2) { $('#deleteAccount').html(''); $('#deleteAccount').hide(); $('#commentFormSubContainer').slideDown(1000); setMessageBox(data.message, data.addclbad); } } }); }
////////////////////////////////////////////////// function commentsForm_update_account_close() { $("#manageAccount").html(''); }
/////////////////////////////////////////////////// function commentsForm_update_account() { var fbFormN_firstName = $.trim($("#update_firstName").val()); var fbFormN_surname = $.trim($("#update_surname").val()); var fbFormN_zip = $.trim($("#update_zip").val()); var fbFormN_location = $.trim($("#update_location").val()); var fbFormN_telephone = $.trim($("#update_telephone").val()); var fbFormN_email = $.trim($("#update_email").val()); var fbFormN_email_hidden = $.trim($("#update_email_hidden").val()); var fbForm_customerId = $.trim($("#fbForm_customerId").val()); var login_email_token = $.trim($("#login_email_token").val()); var fbForm_storyId = $.trim($("#fbForm_storyId").val()); if ($("#update_pbadword").length) { var fbFormN_pbadword = $.trim($("#update_pbadword").val()); } if ($("#update_pbadword_confirm").length) { var fbFormN_pbadword_confirm = $.trim($("#update_pbadword_confirm").val()); }
var fbFormN_gotcha = $.trim($("#fbFormN_gotcha").val());
var hasErrors = false;
var nameReg = !(fbFormN_firstName.match(/[*]/)) && !(fbFormN_surname.match(/[*]/)) && fbFormN_firstName.length > 1 && fbFormN_surname.length > 1; var locReg = !(fbFormN_location.match(/[*]/))&& fbFormN_location.length > 1;
var emailRegObj = /^([a-zA-Z0-9_.-])+@([a-zA-Z0-9_.-])+.([a-zA-Z])+([a-zA-Z])+/; // /^([a-zA-Z0-9_.-+])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;
var pbadword_params = '';
$("#commentErrorUpdate_name").hide(); $("#commentErrorUpdate_location").hide(); $("#commentErrorUpdate_telephone").hide(); $("#commentErrorUpdate_email").hide(); $("#commentErrorUpdate_pbadword").hide(); $(".disclaimerText").hide();
if (nameReg == false) { $("#commentErrorUpdate_name").show(); hasErrors = true; }
if (locReg == false) { $("#commentErrorUpdate_location").show(); hasErrors = true; }
if (telephoneReg == null) { $("#commentErrorUpdate_telephone").show(); hasErrors = true; }
if(emailRegObj.test(fbFormN_email) == false){ $("#commentErrorUpdate_email").show(); hasErrors = true; }
if (fbFormN_gotcha.length > 1) { hasErrors = true; }
if ($("#fbFormN_pbadword").length && $("#fbFormN_pbadword_confirm").length) { if (fbFormN_pbadword != fbFormN_pbadword_confirm) { if ((fbFormN_pbadword != 'mot de pbade' || fbFormN_pbadword_confirm != 'confirmer le mot de pbade') && (fbFormN_pbadword != 'pbadword' || fbFormN_pbadword_confirm != 'confirm pbadword')) { $("#commentErrorUpdate_pbadword").show(); hasErrors = true; } } else { pbadword_params += "&fbFormN_pbadword=" + encodeURIComponent(fbFormN_pbadword); pbadword_params += "&fbFormN_pbadword_confirm=" + encodeURIComponent(fbFormN_pbadword_confirm); } }
if (!hasErrors) { $("#commentsForm_send").attr("disabled", "true"); $("#commentsForm_send_noFb").attr("disabled", "true"); save_form_to_cookie('comment_form_input'); jQuery.ajax({ type: "POST", dataType: "json", cache: false, url: "/community/talkback_ajax.html", async: true, data: "action=talkback_update_account&fbFormN_firstName="+encodeURIComponent(fbFormN_firstName)+"&fbFormN_surname="+encodeURIComponent(fbFormN_surname)+"&fbFormN_zip="+encodeURIComponent(fbFormN_zip)+"&fbFormN_location="+encodeURIComponent(fbFormN_location)+"&fbFormN_telephone="+encodeURIComponent(fbFormN_telephone)+"&fbFormN_email="+encodeURIComponent(fbFormN_email)+"&fbFormN_email_hidden="+encodeURIComponent(fbFormN_email_hidden)+"&customer_id="+fbForm_customerId+pbadword_params+"&token="+login_email_token+"&story_id="+encodeURIComponent(fbForm_storyId), error: function(){ }, success: function(data){ if (data.code == 1) { $("#disclaimerConfirm").hide(); $("#commentLogin").hide(); $("#fbForm_message").hide(); $("#fbForm_message_count_clbad").hide(); $("#commentErrorUpdate_message").hide(); $("#commentInfo_Fb").hide(); $("#commentsForm_send").hide(); $("#fbCommentPublishCheckbox").hide(); $("#commentsForm_send_noFb").hide(); $("#commentInfo_noFb").show(); $("#manageAccount").toggle(); $("#commentInfo_noFb").text(data.message); setMessageBox(data.message, data.addclbad); delete_cookie('comment_login_details_email'); } else if (data.code == 2){ $("#commentLogin").show(); $("#fbForm_message").show(); $("#fbForm_message_count_clbad").show(); $("#commentErrorUpdate_message").hide(); $("#commentInfo_Fb").hide(); $("#commentsForm_send").hide(); $("#fbCommentPublishCheckbox").hide(); $("#commentsForm_send_noFb").hide(); $("#commentInfo_noFb").hide(); $("#manageAccount").toggle(); setMessageBox(data.message, data.addclbad); if (data.user.customer_id == 53){ auto_login_email(data); } } else if (data.code == 3){ setMessageBox(data.message, data.addclbad); } } }); } }
// Handler to reset the timer on each notification var timeoutHandle; function setMessageBox(message, boxclbad) { $("#messageBox").hide(); $("#messageBox").html(message); $("#messageBox").removeClbad("warning error success").addClbad(boxclbad); $("#messageBox").fadeIn(1500);
clearTimeout(timeoutHandle);
timeoutHandle = setTimeout(function(){ $("#messageBox").fadeOut(2000, function () { }); }, 12000); }
function forgot_pbadword_send() { var email = $.trim($('#pbadword_forgot_email').val()); var fbForm_customerId = $.trim($("#fbForm_customerId").val());
var hasErrors = false;
var emailRegObj = /^([a-zA-Z0-9_.-])+@([a-zA-Z0-9_.-])+.([a-zA-Z])+([a-zA-Z])+/;
if(emailRegObj.test(email) == false){ $("#commentError_pbadword_forgot_email").show(); hasErrors = true; }
if (!hasErrors) {
jQuery.ajax({ type: "POST", dataType: "json", cache: false, url: "/community/talkback_ajax.html", async: true, data: "action=reset_pbadword&customer_id="+fbForm_customerId+"&email="+encodeURIComponent(email), error: function(){ }, success: function(data){ if (data.code = 0) { setMessageBox(data.message, data.addclbad); } else if (data.code = 1) { $('#comment_pbadword_reset_form').toggle('slow'); $('#comment_login_form').toggle('slow'); setMessageBox(data.message, data.addclbad); } } });
} }
/////////////////////////////////////////////////// function commentsForm_login_noFb() { var fbFormN_email = $.trim($("#fbFormN_email_login").val()); var fbFormN_pbadword = $.trim($("#fbFormN_pbadword_login").val()); var fbForm_customerId = $.trim($("#fbForm_customerId").val());
var hasErrors = false;
var emailRegObj = /^([a-zA-Z0-9_.-])+@([a-zA-Z0-9_.-])+.([a-zA-Z])+([a-zA-Z])+/;
$("#commentError_email").hide(); $("#commentError_pbadword").hide();
if(emailRegObj.test(fbFormN_email) == false){ $("#commentError_email").show(); hasErrors = true; }
if (!hasErrors) {
//$("#commentsForm_send").attr("disabled", "true"); //$("#commentsForm_send_noFb").attr("disabled", "true"); //save_form_to_cookie('comment_form_input');
jQuery.ajax({ type: "POST", dataType: "json", cache: false, url: "/community/talkback_ajax.html", async: true, data: "action=talkback_login_email&email="+encodeURIComponent(fbFormN_email)+"&customer_id="+fbForm_customerId+"&pbadword="+encodeURIComponent(fbFormN_pbadword), error: function(){
}, success: function(data){ //$("#commentLogin").hide(); //$("#fbForm_message").hide(); //$("#fbForm_message_count_clbad").hide(); //$("#commentError_message").hide(); //$("#commentInfo_Fb").hide(); //$("#commentsForm_send").hide(); //$("#fbCommentPublishCheckbox").hide(); //$("#commentsForm_send_noFb").hide();
if (data.code == 2) { $('.commentFBlogin').hide(); $('#comment_login_form').hide(); $("#change_phonenumber").show(); setMessageBox(data.message, data.addclbad); } else { $("#change_phonenumber").hide(); //$("#commentInfo_noFb").show(); //$("#commentLoggedInEmail").text(data.message); setMessageBox(data.message, data.addclbad); $("#commentLoggedInEmail").show(); if ('user' in data) { auto_login_email(data); } } } }); } }
/////////////////////////////////////////////////// function commentsForm_phone_change() { var fbFormN_email_phone_chnage = $.trim($("#fbFormN_email_phone_chnage").val()); var fbFormN_telephone_change = $.trim($("#fbFormN_telephone_change").val()); var fbFormN_pbadword_phone_chnage = $.trim($("#fbFormN_pbadword_phone_chnage").val()); var fbForm_customerId = $.trim($("#fbForm_customerId").val());
jQuery.ajax({ type: "POST", dataType: "json", cache: false, url: "/community/talkback_ajax.html", async: true, data: "action=talkback_phone_change&email="+encodeURIComponent(fbFormN_email_phone_chnage)+"&customer_id="+fbForm_customerId+"&pbadword="+encodeURIComponent(fbFormN_pbadword_phone_chnage)+"&telephone="+encodeURIComponent(fbFormN_telephone_change), error: function(){ }, success: function(data){ if (data.code == 1) { $("#commentError_email_phone_chnage").hide(); $("#fbFormN_email_phone_chnage").hide(); $("#commentError_telephone_change").hide(); $("#fbFormN_telephone_change").hide(); $("#commentError_pbadword_phone_chnage").hide(); $("#fbFormN_pbadword_phone_chnage").hide(); $("#commentsForm_sms_change_veryfy").hide();
$("#fbFormN_sms_change_Ver").show(); $("#commentsForm_sms_send_change_veryfy").show();
setMessageBox(data.message, data.addclbad); } else { setMessageBox(data.message, data.addclbad); } } }); }
///////////////////////////////////////////////////
function comments_modifyForm_phone_change() {
var fbFormN_email_phone_chnage = $.trim($("#fbFormN_email_phone_chnage").val()); var fbFormN_telephone_change = $.trim($("#fbFormN_telephone_change").val()); var fbFormN_pbadword_phone_chnage = $.trim($("#fbFormN_pbadword_phone_chnage").val()); var fbForm_customerId = $.trim($("#fbForm_customerId").val());
jQuery.ajax({ type: "POST", dataType: "json", cache: false, url: "/community/talkback_ajax.html", async: true, data: "action=talkback_phone_change&email="+encodeURIComponent(fbFormN_email_phone_chnage)+"&customer_id="+fbForm_customerId+"&pbadword="+encodeURIComponent(fbFormN_pbadword_phone_chnage)+"&telephone="+encodeURIComponent(fbFormN_telephone_change), error: function(){ }, success: function(data){ if (data.code == 1) { $("#commentError_email_phone_chnage").hide(); $("#fbFormN_email_phone_chnage").hide(); $("#commentError_telephone_change").hide(); $("#fbFormN_telephone_change").hide(); $("#commentError_pbadword_phone_chnage").hide(); $("#fbFormN_pbadword_phone_chnage").hide(); $("#commentsForm_sms_change_veryfy").hide();
$("#fbFormN_sms_change_Ver").show(); $("#commentsForm_sms_send_change_veryfy").show();
setMessageBox(data.message, data.addclbad); } else { setMessageBox(data.message, data.addclbad); } } }); }
/////////////////////////////////////////////////// function commentsForm_phone_change_sms_verify() { var fbFormN_email_phone_chnage = $.trim($("#fbFormN_email_phone_chnage").val()); var fbFormN_telephone_change = $.trim($("#fbFormN_telephone_change").val()); var fbFormN_pbadword_phone_chnage = $.trim($("#fbFormN_pbadword_phone_chnage").val()); var fbFormN_sms_change_Ver = $.trim($("#fbFormN_sms_change_Ver").val()); var fbForm_customerId = $.trim($("#fbForm_customerId").val());
jQuery.ajax({ type: "POST", dataType: "json", cache: false, url: "/community/talkback_ajax.html", async: true, data: "action=talkback_phone_change_sms_verify&email="+encodeURIComponent(fbFormN_email_phone_chnage)+"&customer_id="+fbForm_customerId+"&pbadword="+encodeURIComponent(fbFormN_pbadword_phone_chnage)+"&telephone="+encodeURIComponent(fbFormN_telephone_change)+"&code="+encodeURIComponent(fbFormN_sms_change_Ver), error: function(){ }, success: function(data){ if (data.code == 1) { $("#commentError_sms_change_ver").hide(); $("#fbFormN_sms_change_Ver").hide(); $("#commentsForm_sms_send_change_veryfy").hide(); $("#change_phonenumber").hide();
$('#comment_login_form').show();
setMessageBox(data.message, data.addclbad); } else { setMessageBox(data.message, data.addclbad); } } }); } /////////////////////////////////////////////////// function commentsForm_sms_verify() { var fbFormN_firstName = $.trim($("#fbFormN_firstName").val()); var fbFormN_surname = $.trim($("#fbFormN_surname").val()); var fbFormN_telephone = $.trim($("#fbFormN_telephone").val()); var fbFormN_email = $.trim($("#fbFormN_email").val()); var fbForm_customerId = $.trim($("#fbForm_customerId").val()); var fbForm_storyId = $.trim($("#fbForm_storyId").val()); var fbFormN_smsVer = $.trim($("#fbFormN_smsVer").val());
var hasErrors = false;
if (!hasErrors) {
jQuery.ajax({ type: "POST", dataType: "json", cache: false, url: "/community/talkback_ajax.html", async: true, data: "action=talkback_sms_verify&fbFormN_firstName="+encodeURIComponent(fbFormN_firstName)+"&fbFormN_surname="+encodeURIComponent(fbFormN_surname)+"&email="+encodeURIComponent(fbFormN_email)+"&telefone="+encodeURIComponent(fbFormN_telephone)+"&code="+ fbFormN_smsVer +"&customer_id="+fbForm_customerId+"&story_id="+encodeURIComponent(fbForm_storyId), error: function(){ }, success: function(data){ if (data.code == 0) { setMessageBox(data.message, data.addclbad); } else { $("#commentLogin").hide(); $("#sms_verify").hide(); $("#fbFormN_smsVer").hide(); $("#commentsForm_sms_veryfy").hide();
setMessageBox(data.message, data.addclbad); } } }); } }
////////////////////////////////////////// //swissnoise quiva function auto_login_quiva(data) { console.log("quiva login start"); var user = { "remoteId": data.uid, "username": data.user.email, "pbadword": data.pcr, "email": data.user.email, "firstName": data.user.first_name, "lastName": data.user.last_name, "zipCode": data.user.post_code, "locality": data.user.city, "phoneNumber": data.user.mobile_number }; whatif.login(user).always(function() {
}); console.log("quiva login done"); } //END swissnoise quiva
function auto_login_email(data) {
$(".commentFBlogin").hide();
$(".commentOhnelogin").hide();
var html = '';
var name = data.user.first_name +' '+ data.user.last_name;
html += 'Bienvenue, '+ name +'
';
html += 'Soumettre Commentaire';
html += 'Déconnecter
';
html += 'Gérer le profil';
html += '';
html += '';
$("#commentLoggedInEmail").html(html);
set_logged_in_cookie(data);
$("#commentLoggedInEmail").show();
}
/////////////////////////////////////////////////// function commentsForm_send_noFb() { var fbForm_message = $.trim($("#fbForm_message").val()); fbForm_message = fbForm_message.replace(/&/g, "+"); var fbForm_uri = $.trim($("#fbForm_uri").val()); var fbForm_storyId = $.trim($("#fbForm_storyId").val()); var fbForm_ip = $.trim($("#fbForm_ip").val());
var is_logged_in = false; if ($("#is_logged_in").length) { is_logged_in = true; }
var fbFormN_firstName = $.trim($("#fbFormN_firstName").val()); var fbFormN_surname = $.trim($("#fbFormN_surname").val()); var fbFormN_zip = $.trim($("#fbFormN_zip").val()); var fbFormN_location = $.trim($("#fbFormN_location").val()); var fbFormN_email = $.trim($("#fbFormN_email").val()); var fbForm_msgID = $.trim($("#fbForm_msgID").val()); // if this value is > 0, its a reply-to-another-comment message if ($("#fbFormN_pbadword").length) { var fbFormN_pbadword = $.trim($("#fbFormN_pbadword").val()); } if ($("#fbFormN_pbadword_confirm").length) { var fbFormN_pbadword_confirm = $.trim($("#fbFormN_pbadword_confirm").val()); }
var fbFormN_gotcha = $.trim($("#fbFormN_gotcha").val());
var hasErrors = false;
var messageReg = fbForm_message.length > 1; var nameReg = !(fbFormN_firstName.match(/[*]/)) && !(fbFormN_surname.match(/[*]/)) && fbFormN_firstName.length > 1 && fbFormN_surname.length > 1; // dont check for ZIP, cause of foreign countries //var locReg = !(fbFormN_zip.match(/[*]/)) && !(fbFormN_location.match(/[*]/)) && fbFormN_zip.length > 1 && fbFormN_location.length > 1; var locReg = !(fbFormN_location.match(/[*]/))&& fbFormN_location.length > 1; var emailRegObj = /^([a-zA-Z0-9_.-])+@([a-zA-Z0-9_.-])+.([a-zA-Z])+([a-zA-Z])+/; // /^([a-zA-Z0-9_.-+])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/; var pbadword_params = '';
$("#commentError_name").hide(); $("#commentError_location").hide(); $("#commentError_email").hide(); $("#commentError_pbadword").hide(); $("#commentError_message").hide(); $("#commentError_disclaimer").hide(); $(".disclaimerText").hide();
if (messageReg == false) { $("#commentError_message").show(); hasErrors = true; }
if (nameReg == false) { $("#commentError_name").show(); hasErrors = true; }
if (locReg == false) { $("#commentError_location").show(); hasErrors = true; }
if(emailRegObj.test(fbFormN_email) == false){ $("#commentError_email").show(); hasErrors = true; }
if (fbFormN_gotcha.length > 1) { hasErrors = true; }
if (!($('#disclaimerConfirmBtn').is(':checked'))) { $("#commentError_disclaimer").show(); $(".disclaimerText").show(); hasErrors = true; }
if (!hasErrors) {
$("#commentsForm_send").attr("disabled", "true"); $("#commentsForm_send_noFb").attr("disabled", "true"); save_form_to_cookie('comment_form_input');
jQuery.ajax({ type: "POST", dataType: "html", cache: false, url: "/community/talkback_ajax.html", async: true, data: "action=sendComment&fbFormN_firstName="+encodeURIComponent(fbFormN_firstName)+"&fbFormN_surname="+encodeURIComponent(fbFormN_surname)+"&fbFormN_zip="+encodeURIComponent(fbFormN_zip)+"&fbFormN_location="+encodeURIComponent(fbFormN_location)+"&fbFormN_email="+encodeURIComponent(fbFormN_email)+"&fbForm_uri="+encodeURIComponent(fbForm_uri)+"&fbForm_storyId="+fbForm_storyId+"&fbForm_ip="+fbForm_ip+"&fbForm_message="+encodeURIComponent(fbForm_message)+"&fbForm_msgID="+fbForm_msgID, error: function(){ }, success: function(){ $("#commentLogin").hide(); $("#fbForm_message").hide(); $("#fbForm_message_count_clbad").hide(); $("#commentError_message").hide(); $("#commentInfo_Fb").hide(); $("#commentsForm_send").hide(); $("#fbCommentPublishCheckbox").hide(); $("#commentsForm_send_noFb").hide(); $("#disclaimerConfirm").hide(); $("#commentInfo_noFb").show(); } }); } }
/////////////////////////////////////////////////// function commentsForm_send_email() { var fbForm_message = $.trim($("#fbForm_message").val()); fbForm_message = fbForm_message.replace(/&/g, "+"); var fbForm_uri = $.trim($("#fbForm_uri").val()); var fbForm_storyId = $.trim($("#fbForm_storyId").val()); var fbForm_customerId = $.trim($("#fbForm_customerId").val()); var fbForm_ip = $.trim($("#fbForm_ip").val()); var login_email_token = $.trim($("#login_email_token").val());
var is_logged_in = false; if ($("#is_logged_in").length) { is_logged_in = true; }
var fbFormN_email = $.trim($("#login_email_email").val()); var fbForm_msgID = $.trim($("#fbForm_msgID").val()); // if this value is > 0, its a reply-to-another-comment message
var fbFormN_gotcha = $.trim($("#fbFormN_gotcha").val());
var hasErrors = false;
var messageReg = fbForm_message.length > 1;
$("#commentError_name").hide(); $("#commentError_location").hide(); $("#commentError_email").hide(); $("#commentError_pbadword").hide(); $("#commentError_message").hide(); $("#commentError_disclaimer").hide(); $(".disclaimerText").hide();
if (messageReg == false) { $("#commentError_message").show(); hasErrors = true; }
if (fbFormN_gotcha.length > 1) { hasErrors = true; }
if (!($('#disclaimerConfirmBtn').is(':checked'))) { $("#commentError_disclaimer").show(); hasErrors = true; }
if (!hasErrors) { $("#commentsForm_send").attr("disabled", "true"); $("#commentsForm_send_noFb").attr("disabled", "true"); commentNotSent = false;
jQuery.ajax({ type: "POST", dataType: "json", cache: false, url: "/community/talkback_ajax.html", async: true, data: "action=send_comment_email&fbForm_uri="+encodeURIComponent(fbForm_uri)+"&fbForm_storyId="+fbForm_storyId+"&customer_id="+fbForm_customerId+"&fbForm_ip="+fbForm_ip+"&fbForm_message="+encodeURIComponent(fbForm_message)+"&fbForm_msgID="+fbForm_msgID+"&email="+encodeURIComponent(fbFormN_email)+"&token="+login_email_token, error: function(){ }, success: function(data){ if (data.code == 1) { $("#commentLogin").hide(); $("#fbForm_message").hide(); $("#fbForm_message_count_clbad").hide(); $("#commentError_message").hide(); $("#commentError_name").hide(); $("#commentError_location").hide(); $("#commentError_email").hide(); $("#commentError_disclaimer").hide(); $(".disclaimerText").hide(); $("#commentInfo_noFb").hide(); $("#commentsForm_send").hide(); $("#fbCommentPublishCheckbox").hide(); $("#disclaimerConfirm").hide(); $("#commentsForm_send_noFb").hide(); $("#commentInfo_noFb").show(); $("#commentSendLoading").hide(); $("#commentInfo_Notice").hide(); $("#manageAccount").hide(); } else if (data.code == 2) { setMessageBox(data.message, data.addclbad); } } }); } }
/////////////////////////////////////////////////// /////////////////////////////////////////////////// // some jquery UI functions function fbLoginDisplay(loginState) { $(document).ready(function(){ if (loginState == true) { $(".notloggedToFacebook").hide(); $(".loggedToFacebook").show(); $('#commentsForm_send_noFb').hide(); $('#commentsForm_send').show(); $("#fbCommentPublishCheckbox").show(); $(".recommendCommentFacebook").show(); } else { $(".loggedToFacebook").hide(); $(".notloggedToFacebook").show(); $('#commentsForm_send').hide(); $('#commentsForm_send_noFb').show(); $("#fbCommentPublishCheckbox").hide(); $(".recommendCommentFacebook").hide(); if ($("#commentLoggedInEmail").length) { $("#commentLoggedInEmail").show(); } }}); }
/////////////////////////////////////////////////// function fbDomInsert(username, uid, token) { $(document).ready(function(){ $("#fbUserRealName").html(username); var imgHtml= ""; $("#fbUserProfilePicture").html(imgHtml);
$("#fbForm_realName").val(username); $("#fbForm_userId").val(uid); $("#fbForm_userToken").val(token); }); } /////////////////////////////////////////////////// function loginDrop() { $(document).ready(function(){ $('#commentLogin').slideDown(); $("textarea#fbForm_message").attr("rows", 6); $("#commentsForm_send").removeAttr("disabled"); $("#commentsForm_send_noFb").attr("disabled", ""); $("#commentsForm_send_email").removeAttr("disabled"); $("#fbForm_message").val(""); $('#fbForm_message').removeAttr("onclick"); }); } /////////////////////////////////////////////////// function doOnFbConnect() { $(".recommendCommentFacebook").show(); // for comments below: display checkbox to choose if recommended comments get published on facebook }
/////////////////////////////////////////////////// function log(msg){ if (typeof console === 'undefined') { return false; } else { return true; } }
///////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////// // main
// fb auth var fbAccessToken = ''; var fbUserID = ''; var fbUserName = ''; FBcomments.initFb(); var nnFBloggedIn = check_nnCookie(); if (nnFBloggedIn == true) { fbLoginDisplay(true);
} else { fbLoginDisplay(false); }
function inputFocus(thisFor, thisClbad) { $('#'+ thisFor).focus(function() { $('.'+ thisClbad).animate({ opacity: "0" }, "fast"); }).blur(function() { if($(this).val() == "") { $('.'+ thisClbad).animate({ opacity: "1" }, "fast"); } }); }
//// some more jquery stuff $(document).ready(function(){ read_logged_in_cookie();
// hide 'populär auf facebook' widget in sideline //$("#fb_activityFeed").hide();
$("#fbCommentPublishCheckbox").hide();
$('#fbFormN_pbadword_login').keypress(function(e){ if (e.which == 13){ e.preventDefault(); $(this).blur(); $('#commentsForm_post_confirmed').focus().click(); return false; } });
$('#fbFormN_smsVer').keypress(function(e){ if (e.which == 13){ e.preventDefault(); $(this).blur(); $('#commentsForm_sms_veryfy').focus().click(); return false; } });
// Bind to set the fadeout of form labels when clicked or focused $('.sbsLabel label').each(function () { var thisFor = $(this).attr('for'); var thisClbad = $(this).attr('clbad'); inputFocus(thisFor, thisClbad); });
// some form display handling $('#disclaimerButtonShow').bind('click', function(){ $('.disclaimerText').show(); $('#disclaimerButtonShow').css('display','none'); $('#disclaimerButtonHide').css('display','inline'); }); $('#disclaimerButtonHide').bind('click', function(){ $('.disclaimerText').hide(); $('#disclaimerButtonHide').css('display','none'); $('#disclaimerButtonShow').css('display','inline'); });
// display login data on start if ($("#fbUserRealName").html()) { if ($("#fbUserRealName").html().length >= 2){ // && $("textarea#fbForm_message").attr("rows") > 2 $("#fbCommentPublishCheckbox").show(); } }
// clear textarea $("#fbForm_message").val('');
// submit buttons , disable on on reload $("#commentsForm_send").attr("disabled", "true"); $("#commentsForm_send_noFb").attr("disabled", "true");
// set checkboxes $('#fbForm_publishOnFB').attr('checked', true); $('.recommendCommentPublishOnFb').attr('checked', true); $('#disclaimerConfirmBtn').attr('checked', false);
// fixes a tiny bug: if values are prefilled on reload they should not be grey
var myFbFormIds = ['fbFormN_firstName', 'fbFormN_surname', 'fbFormN_zip', 'fbFormN_location', 'fbFormN_email', 'fbFormN_pbadword', 'fbFormN_pbadword_confirm'];
for (var ii=0;ii < myFbFormIds.length; ii++) {
if ($("#"+myFbFormIds[ii]).length) {
if (!($("#"+myFbFormIds[ii]).val().match(/[*]/))) {
$("#"+myFbFormIds[ii]).css('color','#000000');
};
}
}
$('.comment_signup_form_toggle').live('click', function(){
$('#comment_signup_form').toggle('slow');
$('#comment_login_form').toggle('slow');
return false;
});
$('.comment_form_forgot_pbadword').live('click', function(){
$('#comment_pbadword_reset_form').toggle('slow');
$('#comment_login_form').toggle('slow');
return false;
});
$('.emailLogoutButton').live('click', function() {
delete_cookie('comment_login_details_email');
$("#commentLoggedInEmail").html('');
$("#manageAccount").html('');
$("#commentLoggedInEmail").hide();
$(".commentFBlogin").show();
$(".commentOhnelogin").show();
});
$('#show_update_phone').live('click', function() {
$("#commentLoggedInEmail").html('');
$("#manageAccount").html('');
$("#commentLoggedInEmail").hide();
$("#comment_login_form").hide();
$("#change_phonenumber").show();
$(".commentOhnelogin").show();
});
$('#commentsForm_send_email').live('click', function() {
if (commentNotSent) {
commentsForm_send_email();
}
});
$('#emailManageAccount').live('click', function () {
var customer_id = $.trim($("#fbForm_customerId").val());
var login_email_email = $.trim($("#login_email_email").val());
var login_email_token = $.trim($("#login_email_token").val());
jQuery.ajax({ type: "POST",
dataType: "json",
cache: false,
url: "/community/talkback_ajax.html",
async: true,
data: "action=login_manage_account&customer_id="+customer_id+"&email="+encodeURIComponent(login_email_email)+"&token="+login_email_token,
error: function(){ },
success: function(data){
if (data.code == 0) {
setMessageBox(data.message, data.addclbad);
}
else if (data.code == 1) {
$('#manageAccount').html(data.message);
$('#manageAccount').show();
}
}
});
});
});
[ad_2]
Source link