From 23ddda91944d91c1b5241fae83d3fcf5e3a4a497 Mon Sep 17 00:00:00 2001 From: RainLoop Team Date: Tue, 4 Feb 2014 19:52:58 +0400 Subject: [PATCH] Additional accounts storage optimization --- dev/Boots/AdminApp.js | 8 -- dev/Settings/Accounts.js | 21 ++++- .../0.0.0/app/libraries/RainLoop/Actions.php | 86 ++++++++++++------- rainloop/v/0.0.0/static/js/admin.js | 8 -- rainloop/v/0.0.0/static/js/app.js | 21 ++++- rainloop/v/0.0.0/static/js/app.min.js | 2 +- 6 files changed, 93 insertions(+), 53 deletions(-) diff --git a/dev/Boots/AdminApp.js b/dev/Boots/AdminApp.js index 3f5cedf0f..f296c10e4 100644 --- a/dev/Boots/AdminApp.js +++ b/dev/Boots/AdminApp.js @@ -221,14 +221,6 @@ AdminApp.prototype.bootstart = function () // } kn.startScreens([AdminSettingsScreen]); - -// if (!Globals.bMobileDevice) -// { -// _.defer(function () { -// Utils.initLayoutResizer('#rl-top-resizer-left', '#rl-top-resizer-right', '#rl-center', -// 120, 300, 200, 600, Enums.ClientSideKeyName.FolderListSize); -// }); -// } } else { diff --git a/dev/Settings/Accounts.js b/dev/Settings/Accounts.js index 488fbcb77..19693489d 100644 --- a/dev/Settings/Accounts.js +++ b/dev/Settings/Accounts.js @@ -40,7 +40,6 @@ SettingsAccounts.prototype.addNewAccount = function () }; /** - * * @param {AccountModel} oAccountToRemove */ SettingsAccounts.prototype.deleteAccount = function (oAccountToRemove) @@ -59,8 +58,24 @@ SettingsAccounts.prototype.deleteAccount = function (oAccountToRemove) { this.accounts.remove(fRemoveAccount); - RL.remote().accountDelete(function () { - RL.accountsAndIdentities(); + RL.remote().accountDelete(function (sResult, oData) { + + if (Enums.StorageResultType.Success === sResult && oData && + oData.Result && oData.Reload) + { + kn.routeOff(); + kn.setHash(RL.link().root(), true); + kn.routeOff(); + + _.defer(function () { + window.location.reload(); + }); + } + else + { + RL.accountsAndIdentities(); + } + }, oAccountToRemove.email); } } diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Actions.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Actions.php index 57424c1bb..29b7c998d 100644 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Actions.php +++ b/rainloop/v/0.0.0/app/libraries/RainLoop/Actions.php @@ -1260,12 +1260,12 @@ class Actions */ public function AuthProcess($oAccount) { - $this->SetAuthToken($oAccount); - if ($oAccount instanceof \RainLoop\Account) { + $this->SetAuthToken($oAccount); + $aAccounts = $this->GetAccounts($oAccount); - if (isset($aAccounts[$oAccount->Email()])) + if (\is_array($aAccounts) && isset($aAccounts[$oAccount->Email()])) { $aAccounts[$oAccount->Email()] = $oAccount->GetAuthToken(); $this->SetAccounts($oAccount, $aAccounts); @@ -1389,15 +1389,23 @@ class Actions { $sParentEmail = $oAccount->ParentEmailHelper(); - $sAccounts = $this->StorageProvider()->Get(null, - \RainLoop\Providers\Storage\Enumerations\StorageType::NOBODY, - 'Webmail/Accounts/'.$sParentEmail.'/Array', null); - - $aAccounts = $sAccounts ? @\unserialize($sAccounts) : array(); - - if (\is_array($aAccounts) && 0 < \count($aAccounts)) + if ($this->Config()->Get('webmail', 'allow_additional_accounts', true)) { - return $aAccounts; + $sAccounts = $this->StorageProvider()->Get(null, + \RainLoop\Providers\Storage\Enumerations\StorageType::NOBODY, + 'Webmail/Accounts/'.$sParentEmail.'/Array', null); + + $aAccounts = $sAccounts ? @\unserialize($sAccounts) : array(); + + if (\is_array($aAccounts) && 0 < \count($aAccounts)) + { + if (1 === \count($aAccounts)) + { + $this->SetAccounts($oAccount, array()); + } + + return $aAccounts; + } } $aAccounts = array(); @@ -1459,7 +1467,8 @@ class Actions public function SetAccounts($oAccount, $aAccounts = array()) { $sParentEmail = $oAccount->ParentEmailHelper(); - if (!\is_array($aAccounts) || 0 === \count($aAccounts)) + if (!\is_array($aAccounts) || 0 >= \count($aAccounts) || + (1 === \count($aAccounts) && !empty($aAccounts[$sParentEmail]))) { $this->StorageProvider()->Clear(null, \RainLoop\Providers\Storage\Enumerations\StorageType::NOBODY, 'Webmail/Accounts/'.$sParentEmail.'/Array'); @@ -1566,7 +1575,7 @@ class Actions $oAccount = $this->getAccountFromToken(); - $sParentEmail = 0 < \strlen($oAccount->ParentEmail()) ? $oAccount->ParentEmail() : $oAccount->Email(); + $sParentEmail = $oAccount->ParentEmailHelper(); $sEmailToDelete = \strtolower(\trim($this->GetActionParam('EmailToDelete', ''))); $aAccounts = $this->GetAccounts($oAccount); @@ -1575,13 +1584,18 @@ class Actions { unset($aAccounts[$sEmailToDelete]); - if (1 === count($aAccounts) && isset($aAccounts[$sParentEmail])) + $oAccountToChange = null; + if ($oAccount->Email() === $sEmailToDelete && !empty($aAccounts[$sParentEmail])) { - $aAccounts = array(); + $oAccountToChange = $this->GetAccountFromCustomToken($aAccounts[$sParentEmail], false, false); + if ($oAccountToChange) + { + $this->AuthProcess($oAccountToChange); + } } - + $this->SetAccounts($oAccount, $aAccounts); - return $this->TrueResponse(__FUNCTION__); + return $this->TrueResponse(__FUNCTION__, array('Reload' => !!$oAccountToChange)); } return $this->FalseResponse(__FUNCTION__); @@ -5933,10 +5947,11 @@ class Actions /** * @param string $sActionName * @param mixed $mResult = false + * @param array $aAdditionalParams = array() * * @return array */ - private function mainDefaultResponse($sActionName, $mResult = false) + private function mainDefaultResponse($sActionName, $mResult = false, $aAdditionalParams = array()) { $sActionName = 'Do' === substr($sActionName, 0, 2) ? substr($sActionName, 2) : $sActionName; @@ -5945,32 +5960,42 @@ class Actions 'Result' => $this->responseObject($mResult, $sActionName) ); + if (\is_array($aAdditionalParams)) + { + foreach ($aAdditionalParams as $sKey => $mValue) + { + $aResult[$sKey] = $mValue; + } + } + return $aResult; } /** * @param string $sActionName * @param mixed $mResult = false + * @param array $aAdditionalParams = array() * * @return array */ - public function DefaultResponse($sActionName, $mResult = false) + public function DefaultResponse($sActionName, $mResult = false, $aAdditionalParams = array()) { - $this->Plugins()->RunHook('main.default-response-date', array($sActionName, &$mResult)); - $aResponseItem = $this->mainDefaultResponse($sActionName, $mResult); + $this->Plugins()->RunHook('main.default-response-data', array($sActionName, &$mResult)); + $aResponseItem = $this->mainDefaultResponse($sActionName, $mResult, $aAdditionalParams); $this->Plugins()->RunHook('main.default-response', array($sActionName, &$aResponseItem)); return $aResponseItem; } /** * @param string $sActionName + * @param array $aAdditionalParams = array() * * @return array */ - public function TrueResponse($sActionName) + public function TrueResponse($sActionName, $aAdditionalParams = array()) { $mResult = true; - $this->Plugins()->RunHook('main.default-response-date', array($sActionName, &$mResult)); - $aResponseItem = $this->mainDefaultResponse($sActionName, $mResult); + $this->Plugins()->RunHook('main.default-response-data', array($sActionName, &$mResult)); + $aResponseItem = $this->mainDefaultResponse($sActionName, $mResult, $aAdditionalParams); $this->Plugins()->RunHook('main.default-response', array($sActionName, &$aResponseItem)); return $aResponseItem; } @@ -5986,17 +6011,18 @@ class Actions { $mResult = false; $this->Plugins() - ->RunHook('main.default-response-date', array($sActionName, &$mResult)) - ->RunHook('main.default-response-error-date', array($sActionName, &$iErrorCode, &$sErrorMessage)) + ->RunHook('main.default-response-data', array($sActionName, &$mResult)) + ->RunHook('main.default-response-error-data', array($sActionName, &$iErrorCode, &$sErrorMessage)) ; - - $aResponseItem = $this->mainDefaultResponse($sActionName, $mResult); + $aAdditionalParams = array(); if (null !== $iErrorCode) { - $aResponseItem['ErrorCode'] = (int) $iErrorCode; - $aResponseItem['ErrorMessage'] = null === $sErrorMessage ? '' : (string) $sErrorMessage; + $aAdditionalParams['ErrorCode'] = (int) $iErrorCode; + $aAdditionalParams['ErrorMessage'] = null === $sErrorMessage ? '' : (string) $sErrorMessage; } + + $aResponseItem = $this->mainDefaultResponse($sActionName, $mResult, $aAdditionalParams); $this->Plugins()->RunHook('main.default-response', array($sActionName, &$aResponseItem)); return $aResponseItem; diff --git a/rainloop/v/0.0.0/static/js/admin.js b/rainloop/v/0.0.0/static/js/admin.js index 4d3a79cea..db5a727a5 100644 --- a/rainloop/v/0.0.0/static/js/admin.js +++ b/rainloop/v/0.0.0/static/js/admin.js @@ -7702,14 +7702,6 @@ AdminApp.prototype.bootstart = function () // } kn.startScreens([AdminSettingsScreen]); - -// if (!Globals.bMobileDevice) -// { -// _.defer(function () { -// Utils.initLayoutResizer('#rl-top-resizer-left', '#rl-top-resizer-right', '#rl-center', -// 120, 300, 200, 600, Enums.ClientSideKeyName.FolderListSize); -// }); -// } } else { diff --git a/rainloop/v/0.0.0/static/js/app.js b/rainloop/v/0.0.0/static/js/app.js index 7b1ae3c7e..3beeb13a4 100644 --- a/rainloop/v/0.0.0/static/js/app.js +++ b/rainloop/v/0.0.0/static/js/app.js @@ -12929,7 +12929,6 @@ SettingsAccounts.prototype.addNewAccount = function () }; /** - * * @param {AccountModel} oAccountToRemove */ SettingsAccounts.prototype.deleteAccount = function (oAccountToRemove) @@ -12948,8 +12947,24 @@ SettingsAccounts.prototype.deleteAccount = function (oAccountToRemove) { this.accounts.remove(fRemoveAccount); - RL.remote().accountDelete(function () { - RL.accountsAndIdentities(); + RL.remote().accountDelete(function (sResult, oData) { + + if (Enums.StorageResultType.Success === sResult && oData && + oData.Result && oData.Reload) + { + kn.routeOff(); + kn.setHash(RL.link().root(), true); + kn.routeOff(); + + _.defer(function () { + window.location.reload(); + }); + } + else + { + RL.accountsAndIdentities(); + } + }, oAccountToRemove.email); } } diff --git a/rainloop/v/0.0.0/static/js/app.min.js b/rainloop/v/0.0.0/static/js/app.min.js index b51dbc05c..bb471bf51 100644 --- a/rainloop/v/0.0.0/static/js/app.min.js +++ b/rainloop/v/0.0.0/static/js/app.min.js @@ -4,6 +4,6 @@ },sb.encodeHtml=function(a){return sb.isNormal(a)?a.toString().replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'"):""},sb.splitPlainText=function(a,b){var c="",d="",e=a,f=0,g=0;for(b=sb.isUnd(b)?100:b;e.length>b;)d=e.substring(0,b),f=d.lastIndexOf(" "),g=d.lastIndexOf("\n"),-1!==g&&(f=g),-1===f&&(f=b),c+=d.substring(0,f)+"\n",e=e.substring(f+1);return c+e},sb.timeOutAction=function(){var b={};return function(c,d,e){sb.isUnd(b[c])&&(b[c]=0),a.clearTimeout(b[c]),b[c]=a.setTimeout(d,e)}}(),sb.timeOutActionSecond=function(){var b={};return function(c,d,e){b[c]||(b[c]=a.setTimeout(function(){d(),b[c]=0},e))}}(),sb.audio=function(){var b=!1;return function(c,d){if(!1===b)if(vb.bIsiOSDevice)b=null;else{var e=!1,f=!1,g=a.Audio?new a.Audio:null;g&&g.canPlayType&&g.play?(e=""!==g.canPlayType('audio/mpeg; codecs="mp3"'),e||(f=""!==g.canPlayType('audio/ogg; codecs="vorbis"')),e||f?(b=g,b.preload="none",b.loop=!1,b.autoplay=!1,b.muted=!1,b.src=e?c:d):b=null):b=null}return b}}(),sb.hos=function(a,b){return a&&Object.hasOwnProperty?Object.hasOwnProperty.call(a,b):!1},sb.i18n=function(a,b,c){var d="",e=sb.isUnd(zb[a])?sb.isUnd(c)?a:c:zb[a];if(!sb.isUnd(b)&&!sb.isNull(b))for(d in b)sb.hos(b,d)&&(e=e.replace("%"+d+"%",b[d]));return e},sb.i18nToNode=function(a){h.defer(function(){b(".i18n",a).each(function(){var a=b(this),c="";c=a.data("i18n-text"),c?a.text(sb.i18n(c)):(c=a.data("i18n-html"),c&&a.html(sb.i18n(c)),c=a.data("i18n-placeholder"),c&&a.attr("placeholder",sb.i18n(c)))})})},sb.i18nToDoc=function(){a.rainloopI18N&&(zb=a.rainloopI18N||{},sb.i18nToNode(Cb),vb.langChangeTrigger(!vb.langChangeTrigger())),a.rainloopI18N={}},sb.initOnStartOrLangChange=function(a,b,c){a&&a.call(b),c?vb.langChangeTrigger.subscribe(function(){a&&a.call(b),c.call(b)}):a&&vb.langChangeTrigger.subscribe(a,b)},sb.inFocus=function(){var a=document.activeElement;return a&&("INPUT"===a.tagName||"TEXTAREA"===a.tagName||"IFRAME"===a.tagName||"DIV"===a.tagName&&"editorHtmlArea"===a.className&&a.contentEditable)},sb.removeInFocus=function(){if(document&&document.activeElement&&document.activeElement.blur){var a=b(document.activeElement);(a.is("input")||a.is("textarea"))&&document.activeElement.blur()}},sb.removeSelection=function(){if(a&&a.getSelection){var b=a.getSelection();b&&b.removeAllRanges&&b.removeAllRanges()}else document&&document.selection&&document.selection.empty&&document.selection.empty()},sb.replySubjectAdd=function(b,c,d){var e=null,f=sb.trim(c);return null===(e=new a.RegExp("^"+b+"[\\s]?\\:(.*)$","gi").exec(c))||sb.isUnd(e[1])?null===(e=new a.RegExp("^("+b+"[\\s]?[\\[\\(]?)([\\d]+)([\\]\\)]?[\\s]?\\:.*)$","gi").exec(c))||sb.isUnd(e[1])||sb.isUnd(e[2])||sb.isUnd(e[3])?f=b+": "+c:(f=e[1]+(sb.pInt(e[2])+1)+e[3],f=e[1]+(sb.pInt(e[2])+1)+e[3]):f=b+"[2]: "+e[1],f=f.replace(/[\s]+/g," "),(sb.isUnd(d)?!0:d)?sb.fixLongSubject(f):f},sb.fixLongSubject=function(a){var b=0,c=null;a=sb.trim(a.replace(/[\s]+/," "));do c=/^Re(\[([\d]+)\]|):[\s]{0,3}Re(\[([\d]+)\]|):/gi.exec(a),(!c||sb.isUnd(c[0]))&&(c=null),c&&(b=0,b+=sb.isUnd(c[2])?1:0+sb.pInt(c[2]),b+=sb.isUnd(c[4])?1:0+sb.pInt(c[4]),a=a.replace(/^Re(\[[\d]+\]|):[\s]{0,3}Re(\[[\d]+\]|):/gi,"Re"+(b>0?"["+b+"]":"")+":"));while(c);return a=a.replace(/[\s]+/," ")},sb.roundNumber=function(a,b){return Math.round(a*Math.pow(10,b))/Math.pow(10,b)},sb.friendlySize=function(a){return a=sb.pInt(a),a>=1073741824?sb.roundNumber(a/1073741824,1)+"GB":a>=1048576?sb.roundNumber(a/1048576,1)+"MB":a>=1024?sb.roundNumber(a/1024,0)+"KB":a+"B"},sb.log=function(b){a.console&&a.console.log&&a.console.log(b)},sb.getNotification=function(a,b){return a=sb.pInt(a),qb.Notification.ClientViewError===a&&b?b:sb.isUnd(rb[a])?"":rb[a]},sb.initNotificationLanguage=function(){rb[qb.Notification.InvalidToken]=sb.i18n("NOTIFICATIONS/INVALID_TOKEN"),rb[qb.Notification.AuthError]=sb.i18n("NOTIFICATIONS/AUTH_ERROR"),rb[qb.Notification.AccessError]=sb.i18n("NOTIFICATIONS/ACCESS_ERROR"),rb[qb.Notification.ConnectionError]=sb.i18n("NOTIFICATIONS/CONNECTION_ERROR"),rb[qb.Notification.CaptchaError]=sb.i18n("NOTIFICATIONS/CAPTCHA_ERROR"),rb[qb.Notification.SocialFacebookLoginAccessDisable]=sb.i18n("NOTIFICATIONS/SOCIAL_FACEBOOK_LOGIN_ACCESS_DISABLE"),rb[qb.Notification.SocialTwitterLoginAccessDisable]=sb.i18n("NOTIFICATIONS/SOCIAL_TWITTER_LOGIN_ACCESS_DISABLE"),rb[qb.Notification.SocialGoogleLoginAccessDisable]=sb.i18n("NOTIFICATIONS/SOCIAL_GOOGLE_LOGIN_ACCESS_DISABLE"),rb[qb.Notification.DomainNotAllowed]=sb.i18n("NOTIFICATIONS/DOMAIN_NOT_ALLOWED"),rb[qb.Notification.AccountNotAllowed]=sb.i18n("NOTIFICATIONS/ACCOUNT_NOT_ALLOWED"),rb[qb.Notification.CantGetMessageList]=sb.i18n("NOTIFICATIONS/CANT_GET_MESSAGE_LIST"),rb[qb.Notification.CantGetMessage]=sb.i18n("NOTIFICATIONS/CANT_GET_MESSAGE"),rb[qb.Notification.CantDeleteMessage]=sb.i18n("NOTIFICATIONS/CANT_DELETE_MESSAGE"),rb[qb.Notification.CantMoveMessage]=sb.i18n("NOTIFICATIONS/CANT_MOVE_MESSAGE"),rb[qb.Notification.CantCopyMessage]=sb.i18n("NOTIFICATIONS/CANT_MOVE_MESSAGE"),rb[qb.Notification.CantSaveMessage]=sb.i18n("NOTIFICATIONS/CANT_SAVE_MESSAGE"),rb[qb.Notification.CantSendMessage]=sb.i18n("NOTIFICATIONS/CANT_SEND_MESSAGE"),rb[qb.Notification.InvalidRecipients]=sb.i18n("NOTIFICATIONS/INVALID_RECIPIENTS"),rb[qb.Notification.CantCreateFolder]=sb.i18n("NOTIFICATIONS/CANT_CREATE_FOLDER"),rb[qb.Notification.CantRenameFolder]=sb.i18n("NOTIFICATIONS/CANT_RENAME_FOLDER"),rb[qb.Notification.CantDeleteFolder]=sb.i18n("NOTIFICATIONS/CANT_DELETE_FOLDER"),rb[qb.Notification.CantDeleteNonEmptyFolder]=sb.i18n("NOTIFICATIONS/CANT_DELETE_NON_EMPTY_FOLDER"),rb[qb.Notification.CantSubscribeFolder]=sb.i18n("NOTIFICATIONS/CANT_SUBSCRIBE_FOLDER"),rb[qb.Notification.CantUnsubscribeFolder]=sb.i18n("NOTIFICATIONS/CANT_UNSUBSCRIBE_FOLDER"),rb[qb.Notification.CantSaveSettings]=sb.i18n("NOTIFICATIONS/CANT_SAVE_SETTINGS"),rb[qb.Notification.CantSavePluginSettings]=sb.i18n("NOTIFICATIONS/CANT_SAVE_PLUGIN_SETTINGS"),rb[qb.Notification.DomainAlreadyExists]=sb.i18n("NOTIFICATIONS/DOMAIN_ALREADY_EXISTS"),rb[qb.Notification.CantInstallPackage]=sb.i18n("NOTIFICATIONS/CANT_INSTALL_PACKAGE"),rb[qb.Notification.CantDeletePackage]=sb.i18n("NOTIFICATIONS/CANT_DELETE_PACKAGE"),rb[qb.Notification.InvalidPluginPackage]=sb.i18n("NOTIFICATIONS/INVALID_PLUGIN_PACKAGE"),rb[qb.Notification.UnsupportedPluginPackage]=sb.i18n("NOTIFICATIONS/UNSUPPORTED_PLUGIN_PACKAGE"),rb[qb.Notification.LicensingServerIsUnavailable]=sb.i18n("NOTIFICATIONS/LICENSING_SERVER_IS_UNAVAILABLE"),rb[qb.Notification.LicensingExpired]=sb.i18n("NOTIFICATIONS/LICENSING_EXPIRED"),rb[qb.Notification.LicensingBanned]=sb.i18n("NOTIFICATIONS/LICENSING_BANNED"),rb[qb.Notification.DemoSendMessageError]=sb.i18n("NOTIFICATIONS/DEMO_SEND_MESSAGE_ERROR"),rb[qb.Notification.AccountAlreadyExists]=sb.i18n("NOTIFICATIONS/ACCOUNT_ALREADY_EXISTS"),rb[qb.Notification.MailServerError]=sb.i18n("NOTIFICATIONS/MAIL_SERVER_ERROR"),rb[qb.Notification.UnknownNotification]=sb.i18n("NOTIFICATIONS/UNKNOWN_ERROR"),rb[qb.Notification.UnknownError]=sb.i18n("NOTIFICATIONS/UNKNOWN_ERROR")},sb.getUploadErrorDescByCode=function(a){var b="";switch(sb.pInt(a)){case qb.UploadErrorCode.FileIsTooBig:b=sb.i18n("UPLOAD/ERROR_FILE_IS_TOO_BIG");break;case qb.UploadErrorCode.FilePartiallyUploaded:b=sb.i18n("UPLOAD/ERROR_FILE_PARTIALLY_UPLOADED");break;case qb.UploadErrorCode.FileNoUploaded:b=sb.i18n("UPLOAD/ERROR_NO_FILE_UPLOADED");break;case qb.UploadErrorCode.MissingTempFolder:b=sb.i18n("UPLOAD/ERROR_MISSING_TEMP_FOLDER");break;case qb.UploadErrorCode.FileOnSaveingError:b=sb.i18n("UPLOAD/ERROR_ON_SAVING_FILE");break;case qb.UploadErrorCode.FileType:b=sb.i18n("UPLOAD/ERROR_FILE_TYPE");break;default:b=sb.i18n("UPLOAD/ERROR_UNKNOWN")}return b},sb.delegateRun=function(a,b,c){a&&a[b]&&a[b].apply(a,sb.isArray(c)?c:[])},sb.killCtrlAandS=function(b){if(b=b||a.event){var c=b.target||b.srcElement,d=b.keyCode||b.which;if(b.ctrlKey&&d===qb.EventKeyCode.S)return b.preventDefault(),void 0;if(c&&c.tagName&&c.tagName.match(/INPUT|TEXTAREA/i))return;b.ctrlKey&&d===qb.EventKeyCode.A&&(a.getSelection?a.getSelection().removeAllRanges():a.document.selection&&a.document.selection.clear&&a.document.selection.clear(),b.preventDefault())}},sb.createCommand=function(a,b,d){var e=b?function(){return e.canExecute&&e.canExecute()&&b.apply(a,Array.prototype.slice.call(arguments)),!1}:function(){};return e.enabled=c.observable(!0),d=sb.isUnd(d)?!0:d,e.canExecute=sb.isFunc(d)?c.computed(function(){return e.enabled()&&d.call(a)}):c.computed(function(){return e.enabled()&&!!d}),e},sb.initDataConstructorBySettings=function(b){b.editorDefaultType=c.observable(qb.EditorDefaultType.Html),b.showImages=c.observable(!1),b.interfaceAnimation=c.observable(qb.InterfaceAnimation.Full),b.contactsAutosave=c.observable(!1),vb.sAnimationType=qb.InterfaceAnimation.Full,b.allowThemes=c.observable(!0),b.allowCustomLogin=c.observable(!1),b.allowLanguagesOnSettings=c.observable(!0),b.allowLanguagesOnLogin=c.observable(!0),b.desktopNotifications=c.observable(!1),b.useThreads=c.observable(!0),b.replySameFolder=c.observable(!0),b.useCheckboxesInList=c.observable(!0),b.layout=c.observable(qb.Layout.SidePreview),b.usePreviewPane=c.computed(function(){return qb.Layout.NoPreview!==b.layout()}),b.interfaceAnimation.subscribe(function(a){if(vb.bMobileDevice||a===qb.InterfaceAnimation.None)Ab.removeClass("rl-anim rl-anim-full").addClass("no-rl-anim"),vb.sAnimationType=qb.InterfaceAnimation.None;else switch(a){case qb.InterfaceAnimation.Full:Ab.removeClass("no-rl-anim").addClass("rl-anim rl-anim-full"),vb.sAnimationType=a;break;case qb.InterfaceAnimation.Normal:Ab.removeClass("no-rl-anim rl-anim-full").addClass("rl-anim"),vb.sAnimationType=a}}),b.interfaceAnimation.valueHasMutated(),b.desktopNotificationsPermisions=c.computed(function(){b.desktopNotifications();var c=qb.DesktopNotifications.NotSupported;if(Db&&Db.permission)switch(Db.permission.toLowerCase()){case"granted":c=qb.DesktopNotifications.Allowed;break;case"denied":c=qb.DesktopNotifications.Denied;break;case"default":c=qb.DesktopNotifications.NotAllowed}else a.webkitNotifications&&a.webkitNotifications.checkPermission&&(c=a.webkitNotifications.checkPermission());return c}),b.useDesktopNotifications=c.computed({read:function(){return b.desktopNotifications()&&qb.DesktopNotifications.Allowed===b.desktopNotificationsPermisions()},write:function(a){if(a){var c=b.desktopNotificationsPermisions();qb.DesktopNotifications.Allowed===c?b.desktopNotifications(!0):qb.DesktopNotifications.NotAllowed===c?Db.requestPermission(function(){b.desktopNotifications.valueHasMutated(),qb.DesktopNotifications.Allowed===b.desktopNotificationsPermisions()?b.desktopNotifications()?b.desktopNotifications.valueHasMutated():b.desktopNotifications(!0):b.desktopNotifications()?b.desktopNotifications(!1):b.desktopNotifications.valueHasMutated()}):b.desktopNotifications(!1)}else b.desktopNotifications(!1)}}),b.language=c.observable(""),b.languages=c.observableArray([]),b.mainLanguage=c.computed({read:b.language,write:function(a){a!==b.language()?-1=b.diff(c,"hours")?d:b.format("L")===c.format("L")?sb.i18n("MESSAGE_LIST/TODAY_AT",{TIME:c.format("LT")}):b.clone().subtract("days",1).format("L")===c.format("L")?sb.i18n("MESSAGE_LIST/YESTERDAY_IN",{TIME:c.format("LT")}):b.year()===c.year()?c.format("D MMM."):c.format("LL")},a)},sb.isFolderExpanded=function(a){var b=Eb.local().get(qb.ClientSideKeyName.ExpandedFolders);return h.isArray(b)&&-1!==h.indexOf(b,a)},sb.setExpandedFolder=function(a,b){var c=Eb.local().get(qb.ClientSideKeyName.ExpandedFolders);h.isArray(c)||(c=[]),b?(c.push(a),c=h.uniq(c)):c=h.without(c,a),Eb.local().set(qb.ClientSideKeyName.ExpandedFolders,c)},sb.initLayoutResizer=function(a,c,d){var e=b(a),f=b(c),g=Eb.local().get(d)||null,h=function(a,b){b&&b.size&&b.size.width&&(Eb.local().set(d,b.size.width),f.css({left:""+b.size.width+"px"}))};null!==g&&(e.css({width:""+g+"px"}),f.css({left:""+g+"px"})),e.resizable({helper:"ui-resizable-helper",minWidth:120,maxWidth:400,handles:"e",stop:h})},sb.initBlockquoteSwitcher=function(a){if(a){var c=b("blockquote:not(.rl-bq-switcher)",a).filter(function(){return 0===b(this).parent().closest("blockquote",a).length});c&&0100)&&(a.addClass("rl-bq-switcher hidden-bq"),b('').insertBefore(a).click(function(){a.toggleClass("hidden-bq"),sb.windowResize()}).after("
").before("
"))})}},sb.removeBlockquoteSwitcher=function(a){a&&(b(a).find("blockquote.rl-bq-switcher").each(function(){b(this).removeClass("rl-bq-switcher hidden-bq")}),b(a).find(".rlBlockquoteSwitcher").each(function(){b(this).remove()}))},sb.extendAsViewModel=function(a,b,c){b&&(c||(c=q),b.__name=a,tb.regViewModelHook(a,b),h.extend(b.prototype,c.prototype))},sb.addSettingsViewModel=function(a,b,c,d,e){a.__rlSettingsData={Label:c,Template:b,Route:d,IsDefault:!!e},wb.settings.push(a)},sb.removeSettingsViewModel=function(a){wb["settings-removed"].push(a)},sb.disableSettingsViewModel=function(a){wb["settings-disabled"].push(a)},sb.convertThemeName=function(a){return sb.trim(a.replace(/[^a-zA-Z]/g," ").replace(/([A-Z])/g," $1").replace(/[\s]+/g," "))},sb.quoteName=function(a){return a.replace(/["]/g,'\\"')},sb.microtime=function(){return(new Date).getTime()},sb.convertLangName=function(a,b){return sb.i18n("LANGS_NAMES"+(!0===b?"_EN":"")+"/LANG_"+a.toUpperCase().replace(/[^a-zA-Z0-9]+/,"_"),null,a)},sb.fakeMd5=function(a){var b="",c="0123456789abcdefghijklmnopqrstuvwxyz";for(a=sb.isUnd(a)?32:sb.pInt(a);b.length/g,">").replace(/")},sb.draggeblePlace=function(){return b('
 
').appendTo("#rl-hidden")},sb.defautOptionsAfterRender=function(a,b){b&&!sb.isUnd(b.disable)&&c.applyBindingsToNode(a,{disable:b.disable},b)},sb.windowPopupKnockout=function(c,d,e,f){var g=null,h=a.open(""),i="__OpenerApplyBindingsUid"+sb.fakeMd5()+"__",j=b("#"+d);a[i]=function(){if(h&&h.document.body&&j&&j[0]){var d=b(h.document.body);b("#rl-content",d).html(j.html()),b("html",h.document).addClass("external "+b("html").attr("class")),sb.i18nToNode(d),s.prototype.applyExternal(c,b("#rl-content",d)[0]),a[i]=null,f(h)}},h.document.open(),h.document.write(''+sb.encodeHtml(e)+'
'),h.document.close(),g=h.document.createElement("script"),g.type="text/javascript",g.innerHTML="if(window&&window.opener&&window.opener['"+i+"']){window.opener['"+i+"']();window.opener['"+i+"']=null}",h.document.getElementsByTagName("head")[0].appendChild(g)},sb.settingsSaveHelperFunction=function(a,b,c,d){return c=c||null,d=sb.isUnd(d)?1e3:sb.pInt(d),function(e,f,g,i,j){b.call(c,f&&f.Result?qb.SaveSettingsStep.TrueResult:qb.SaveSettingsStep.FalseResult),a&&a.call(c,e,f,g,i,j),h.delay(function(){b.call(c,qb.SaveSettingsStep.Idle)},d)}},sb.settingsSaveHelperSimpleFunction=function(a,b){return sb.settingsSaveHelperFunction(null,a,b,1e3)},sb.resizeAndCrop=function(b,c,d){var e=new a.Image;e.onload=function(){var a=[0,0],b=document.createElement("canvas"),e=b.getContext("2d");b.width=c,b.height=c,a=this.width>this.height?[this.width-this.height,0]:[0,this.height-this.width],e.fillStyle="#fff",e.fillRect(0,0,c,c),e.drawImage(this,a[0]/2,a[1]/2,this.width-a[0],this.height-a[1],0,0,c,c),d(b.toDataURL("image/jpeg"))},e.src=b},sb.computedPagenatorHelper=function(a,b){return function(){var c=0,d=0,e=2,f=[],g=a(),h=b(),i=function(a,b,c){var d={current:a===g,name:sb.isUnd(c)?a.toString():c.toString(),custom:sb.isUnd(c)?!1:!0,title:sb.isUnd(c)?"":a.toString(),value:a.toString()};(sb.isUnd(b)?0:!b)?f.unshift(d):f.push(d)};if(h>1||h>0&&g>h){for(g>h?(i(h),c=h,d=h):((3>=g||g>=h-2)&&(e+=2),i(g),c=g,d=g);e>0;)if(c-=1,d+=1,c>0&&(i(c,!1),e--),h>=d)i(d,!0),e--;else if(0>=c)break;3===c?i(2,!1):c>3&&i(Math.round((c-1)/2),!1,"..."),h-2===d?i(h-1,!0):h-2>d&&i(Math.round((h+d)/2),!0,"..."),c>1&&i(1,!1),h>d&&i(h,!0)}return f}},ub={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",urlsafe_encode:function(a){return ub.encode(a).replace(/[+]/g,"-").replace(/[\/]/g,"_").replace(/[=]/g,".")},encode:function(a){var b,c,d,e,f,g,h,i="",j=0;for(a=ub._utf8_encode(a);j>2,f=(3&b)<<4|c>>4,g=(15&c)<<2|d>>6,h=63&d,isNaN(c)?g=h=64:isNaN(d)&&(h=64),i=i+this._keyStr.charAt(e)+this._keyStr.charAt(f)+this._keyStr.charAt(g)+this._keyStr.charAt(h);return i},decode:function(a){var b,c,d,e,f,g,h,i="",j=0;for(a=a.replace(/[^A-Za-z0-9\+\/\=]/g,"");j>4,c=(15&f)<<4|g>>2,d=(3&g)<<6|h,i+=String.fromCharCode(b),64!==g&&(i+=String.fromCharCode(c)),64!==h&&(i+=String.fromCharCode(d));return ub._utf8_decode(i)},_utf8_encode:function(a){a=a.replace(/\r\n/g,"\n");for(var b="",c=0,d=a.length,e=0;d>c;c++)e=a.charCodeAt(c),128>e?b+=String.fromCharCode(e):e>127&&2048>e?(b+=String.fromCharCode(e>>6|192),b+=String.fromCharCode(63&e|128)):(b+=String.fromCharCode(e>>12|224),b+=String.fromCharCode(e>>6&63|128),b+=String.fromCharCode(63&e|128));return b},_utf8_decode:function(a){for(var b="",c=0,d=0,e=0,f=0;cd?(b+=String.fromCharCode(d),c++):d>191&&224>d?(e=a.charCodeAt(c+1),b+=String.fromCharCode((31&d)<<6|63&e),c+=2):(e=a.charCodeAt(c+1),f=a.charCodeAt(c+2),b+=String.fromCharCode((15&d)<<12|(63&e)<<6|63&f),c+=3);return b}},c.bindingHandlers.tooltip={init:function(a,d){if(!vb.bMobileDevice){var e=b(a).data("tooltip-class")||"",f=b(a).data("tooltip-placement")||"top";b(a).tooltip({delay:{show:500,hide:100},html:!0,placement:f,trigger:"hover",title:function(){return''+sb.i18n(c.utils.unwrapObservable(d()))+""}})}}},c.bindingHandlers.tooltip2={init:function(a,c){var d=b(a).data("tooltip-class")||"",e=b(a).data("tooltip-placement")||"top";b(a).tooltip({delay:{show:500,hide:100},html:!0,placement:e,title:function(){return''+c()()+""}})}},c.bindingHandlers.dropdown={init:function(a){b(a).closest(".dropdown").on("click",".e-item",function(){b(a).dropdown("toggle")})}},c.bindingHandlers.popover={init:function(a,d){b(a).popover(c.utils.unwrapObservable(d()))}},c.bindingHandlers.resizecrop={init:function(a){b(a).addClass("resizecrop").resizecrop({width:"100",height:"100",wrapperCSS:{"border-radius":"10px"}})},update:function(a,c){c()(),b(a).resizecrop({width:"100",height:"100"})}},c.bindingHandlers.onEnter={init:function(c,d,e,f){b(c).on("keypress",function(e){e&&13===a.parseInt(e.keyCode,10)&&(b(c).trigger("change"),d().call(f))})}},c.bindingHandlers.onEsc={init:function(c,d,e,f){b(c).on("keypress",function(e){e&&27===a.parseInt(e.keyCode,10)&&(b(c).trigger("change"),d().call(f))})}},c.bindingHandlers.modal={init:function(a,d){b(a).toggleClass("fade",!vb.bMobileDevice).modal({keyboard:!1,show:c.utils.unwrapObservable(d())}).on("hidden",function(){d()(!1)}).on("shown",function(){sb.windowResize()})},update:function(a,d){b(a).modal(c.utils.unwrapObservable(d())?"show":"hide")}},c.bindingHandlers.i18nInit={init:function(a){sb.i18nToNode(a)}},c.bindingHandlers.i18nUpdate={update:function(a,b){c.utils.unwrapObservable(b()),sb.i18nToNode(a)}},c.bindingHandlers.link={update:function(a,d){b(a).attr("href",c.utils.unwrapObservable(d()))}},c.bindingHandlers.title={update:function(a,d){b(a).attr("title",c.utils.unwrapObservable(d()))}},c.bindingHandlers.textF={init:function(a,d){b(a).text(c.utils.unwrapObservable(d()))}},c.bindingHandlers.initDom={init:function(a,b){b()(a)}},c.bindingHandlers.initResizeTrigger={init:function(a,d){var e=c.utils.unwrapObservable(d());b(a).css({height:e[1],"min-height":e[1]})},update:function(a,d){var e=c.utils.unwrapObservable(d()),f=sb.pInt(e[1]),g=0,h=b(a).offset().top;h>0&&(h+=sb.pInt(e[2]),g=Bb.height()-h,g>f&&(f=g),b(a).css({height:f,"min-height":f}))}},c.bindingHandlers.appendDom={update:function(a,d){b(a).hide().empty().append(c.utils.unwrapObservable(d())).show()}},c.bindingHandlers.draggable={init:function(d,e,f){if(!vb.bMobileDevice){var g=100,h=3,i=f(),j=i&&i.droppableSelector?i.droppableSelector:"",k={distance:20,handle:".dragHandle",cursorAt:{top:22,left:3},refreshPositions:!0,scroll:!0};j&&(k.drag=function(c){b(j).each(function(){var d=null,e=null,f=b(this),i=f.offset(),j=i.top+f.height();a.clearInterval(f.data("timerScroll")),f.data("timerScroll",!1),c.pageX>=i.left&&c.pageX<=i.left+f.width()&&(c.pageY>=j-g&&c.pageY<=j&&(d=function(){f.scrollTop(f.scrollTop()+h),sb.windowResize()},f.data("timerScroll",a.setInterval(d,10)),d()),c.pageY>=i.top&&c.pageY<=i.top+g&&(e=function(){f.scrollTop(f.scrollTop()-h),sb.windowResize()},f.data("timerScroll",a.setInterval(e,10)),e()))})},k.stop=function(){b(j).each(function(){a.clearInterval(b(this).data("timerScroll")),b(this).data("timerScroll",!1)})}),k.helper=function(a){return e()(a&&a.target?c.dataFor(a.target):null,!!a.shiftKey)},b(d).draggable(k).on("mousedown",function(){sb.removeInFocus()})}}},c.bindingHandlers.droppable={init:function(a,c,d){if(!vb.bMobileDevice){var e=c(),f=d(),g=f&&f.droppableOver?f.droppableOver:null,h=f&&f.droppableOut?f.droppableOut:null,i={tolerance:"pointer",hoverClass:"droppableHover"};e&&(i.drop=function(a,b){e(a,b)},g&&(i.over=function(a,b){g(a,b)}),h&&(i.out=function(a,b){h(a,b)}),b(a).droppable(i))}}},c.bindingHandlers.nano={init:function(a){vb.bDisableNanoScroll||b(a).addClass("nano").nanoScroller({iOSNativeScrolling:!1,preventPageScrolling:!0})}},c.bindingHandlers.saveTrigger={init:function(a){var c=b(a);c.data("save-trigger-type",c.is("input[type=text],input[type=email],input[type=password],select,textarea")?"input":"custom"),"custom"===c.data("save-trigger-type")?c.append('  ').addClass("settings-saved-trigger"):c.addClass("settings-saved-trigger-input")},update:function(a,d){var e=c.utils.unwrapObservable(d()),f=b(a);if("custom"===f.data("save-trigger-type"))switch(e.toString()){case"1":f.find(".animated,.error").hide().removeClass("visible").end().find(".success").show().addClass("visible");break;case"0":f.find(".animated,.success").hide().removeClass("visible").end().find(".error").show().addClass("visible");break;case"-2":f.find(".error,.success").hide().removeClass("visible").end().find(".animated").show().addClass("visible");break;default:f.find(".animated").hide().end().find(".error,.success").removeClass("visible")}else switch(e.toString()){case"1":f.addClass("success").removeClass("error");break;case"0":f.addClass("error").removeClass("success");break;case"-2":break;default:f.removeClass("error success")}}},c.bindingHandlers.emailsTags={init:function(a,c){var d=b(a),e=c();d.inputosaurus({parseOnBlur:!0,inputDelimiters:[",",";"],autoCompleteSource:function(a,b){Eb.getAutocomplete(a.term,function(a){b(h.map(a,function(a){return a.toLine(!1)}))})},parseHook:function(a){return h.map(a,function(a){var b=sb.trim(a),c=null;return""!==b?(c=new t,c.mailsoParse(b),c.clearDuplicateName(),[c.toLine(!1),c]):[b,null]})},change:h.bind(function(a){d.data("EmailsTagsValue",a.target.value),e(a.target.value)},this)}),e.subscribe(function(a){d.data("EmailsTagsValue")!==a&&(d.val(a),d.data("EmailsTagsValue",a),d.inputosaurus("refresh"))}),e.focusTrigger&&e.focusTrigger.subscribe(function(){d.inputosaurus("focus")})}},c.bindingHandlers.command={init:function(a,d,e,f){var g=b(a),h=d();if(!h||!h.enabled||!h.canExecute)throw new Error("You are not using command function");g.addClass("command"),c.bindingHandlers[g.is("form")?"submit":"click"].init.apply(f,arguments)},update:function(a,c){var d=!0,e=b(a),f=c();d=f.enabled(),e.toggleClass("command-not-enabled",!d),d&&(d=f.canExecute(),e.toggleClass("command-can-not-be-execute",!d)),e.toggleClass("command-disabled disable disabled",!d).toggleClass("no-disabled",!!d),(e.is("input")||e.is("button"))&&e.prop("disabled",!d)}},c.extenders.trimmer=function(a){var b=c.computed({read:a,write:function(b){a(sb.trim(b.toString()))},owner:this});return b(a()),b},c.extenders.reversible=function(a){var b=a();return a.commit=function(){b=a()},a.reverse=function(){a(b)},a.commitedValue=function(){return b},a},c.extenders.toggleSubscribe=function(a,b){return a.subscribe(b[1],b[0],"beforeChange"),a.subscribe(b[2],b[0]),a},c.extenders.falseTimeout=function(b,c){return b.iTimeout=0,b.subscribe(function(d){d&&(a.clearTimeout(b.iTimeout),b.iTimeout=a.setTimeout(function(){b(!1),b.iTimeout=0},sb.pInt(c)))}),b},c.observable.fn.validateNone=function(){return this.hasError=c.observable(!1),this},c.observable.fn.validateEmail=function(){return this.hasError=c.observable(!1),this.subscribe(function(a){a=sb.trim(a),this.hasError(""!==a&&!/^[^@\s]+@[^@\s]+$/.test(a))},this),this.valueHasMutated(),this},c.observable.fn.validateSimpleEmail=function(){return this.hasError=c.observable(!1),this.subscribe(function(a){a=sb.trim(a),this.hasError(""!==a&&!/^.+@.+$/.test(a))},this),this.valueHasMutated(),this},c.observable.fn.validateFunc=function(a){return this.hasFuncError=c.observable(!1),sb.isFunc(a)&&(this.subscribe(function(b){this.hasFuncError(!a(b))},this),this.valueHasMutated()),this},j.prototype.root=function(){return this.sBase},j.prototype.attachmentDownload=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/Download/"+a},j.prototype.attachmentPreview=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/View/"+a},j.prototype.attachmentPreviewAsPlain=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/ViewAsPlain/"+a},j.prototype.upload=function(){return this.sServer+"/Upload/"+this.sSpecSuffix+"/"},j.prototype.uploadContacts=function(){return this.sServer+"/UploadContacts/"+this.sSpecSuffix+"/"},j.prototype.uploadBackground=function(){return this.sServer+"/UploadBackground/"+this.sSpecSuffix+"/"},j.prototype.append=function(){return this.sServer+"/Append/"+this.sSpecSuffix+"/"},j.prototype.change=function(b){return this.sServer+"/Change/"+this.sSpecSuffix+"/"+a.encodeURIComponent(b)+"/"},j.prototype.ajax=function(a){return this.sServer+"/Ajax/"+this.sSpecSuffix+"/"+a},j.prototype.messageViewLink=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/ViewAsPlain/"+a},j.prototype.messageDownloadLink=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/Download/"+a},j.prototype.inbox=function(){return this.sBase+"mailbox/Inbox"},j.prototype.messagePreview=function(){return this.sBase+"mailbox/message-preview"},j.prototype.settings=function(a){var b=this.sBase+"settings";return sb.isUnd(a)||""===a||(b+="/"+a),b},j.prototype.admin=function(a){var b=this.sBase;switch(a){case"AdminDomains":b+="domains";break;case"AdminSecurity":b+="security";break;case"AdminLicensing":b+="licensing"}return b},j.prototype.mailBox=function(a,b,c){b=sb.isNormal(b)?sb.pInt(b):1,c=sb.pString(c);var d=this.sBase+"mailbox/";return""!==a&&(d+=encodeURI(a)),b>1&&(d=d.replace(/[\/]+$/,""),d+="/p"+b),""!==c&&(d=d.replace(/[\/]+$/,""),d+="/"+encodeURI(c)),d},j.prototype.phpInfo=function(){return this.sServer+"Info"},j.prototype.langLink=function(a){return this.sServer+"/Lang/0/"+encodeURI(a)+"/"+this.sVersion+"/"},j.prototype.getUserPicUrlFromHash=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/UserPic/"+a+"/"+this.sVersion+"/"},j.prototype.emptyContactPic=function(){return(""===this.sCdnStaticDomain?"rainloop/v/":this.sCdnStaticDomain)+this.sVersion+"/static/css/images/empty-contact.png"},j.prototype.sound=function(a){return(""===this.sCdnStaticDomain?"rainloop/v/":this.sCdnStaticDomain)+this.sVersion+"/static/sounds/"+a},j.prototype.themePreviewLink=function(a){return(""===this.sCdnStaticDomain?"rainloop/v/":this.sCdnStaticDomain)+this.sVersion+"/themes/"+encodeURI(a)+"/images/preview.png"},j.prototype.notificationMailIcon=function(){return(""===this.sCdnStaticDomain?"rainloop/v/":this.sCdnStaticDomain)+this.sVersion+"/static/css/images/icom-message-notification.png"},j.prototype.openPgpJs=function(){return(""===this.sCdnStaticDomain?"rainloop/v/":this.sCdnStaticDomain)+this.sVersion+"/static/js/openpgp.js"},j.prototype.socialGoogle=function(){return this.sServer+"SocialGoogle"+(""!==this.sSpecSuffix?"/"+this.sSpecSuffix+"/":"")},j.prototype.socialTwitter=function(){return this.sServer+"SocialTwitter"+(""!==this.sSpecSuffix?"/"+this.sSpecSuffix+"/":"")},j.prototype.socialFacebook=function(){return this.sServer+"SocialFacebook"+(""!==this.sSpecSuffix?"/"+this.sSpecSuffix+"/":"")},tb.oViewModelsHooks={},tb.oSimpleHooks={},tb.regViewModelHook=function(a,b){b&&(b.__hookName=a)},tb.addHook=function(a,b){sb.isFunc(b)&&(sb.isArray(tb.oSimpleHooks[a])||(tb.oSimpleHooks[a]=[]),tb.oSimpleHooks[a].push(b))},tb.runHook=function(a,b){sb.isArray(tb.oSimpleHooks[a])&&(b=b||[],h.each(tb.oSimpleHooks[a],function(a){a.apply(null,b)}))},tb.mainSettingsGet=function(a){return Eb?Eb.settingsGet(a):null},tb.remoteRequest=function(a,b,c,d,e,f){Eb&&Eb.remote().defaultRequest(a,b,c,d,e,f)},tb.settingsGet=function(a,b){var c=tb.mainSettingsGet("Plugins");return c=c&&sb.isUnd(c[a])?null:c[a],c?sb.isUnd(c[b])?null:c[b]:null},k.prototype.initLanguage=function(a,b,c){this.oOptions.LangSwitcherConferm=a,this.oOptions.LangSwitcherTextLabel=b,this.oOptions.LangSwitcherHtmlLabel=c},k.prototype.execCom=function(b,c,d){a.document&&(a.document.execCommand(b,c||!1,d||null),this.updateTextArea())},k.prototype.getEditorSelection=function(){var b=null;return a.getSelection?b=a.getSelection():a.document.getSelection?b=a.document.getSelection():a.document.selection&&(b=a.document.selection),b},k.prototype.getEditorRange=function(){var a=this.getEditorSelection();return a&&0!==a.rangeCount?a.getRangeAt?a.getRangeAt(0):a.createRange():null},k.prototype.ec=function(a,b,c){this.execCom(a,b,c) },k.prototype.heading=function(a){this.ec("formatblock",!1,this.bIe?"Heading "+a:"h"+a)},k.prototype.insertImage=function(a){this.isHtml()&&!this.bOnlyPlain&&(this.htmlarea.focus(),this.ec("insertImage",!1,a))},k.prototype.focus=function(){this.isHtml()&&!this.bOnlyPlain?this.htmlarea.focus():this.textarea.focus()},k.prototype.setcolor=function(a,b){var c=null,d="";this.bIe&&!document.addEventListener?(c=this.getEditorRange(),c&&c.execCommand("forecolor"===a?"ForeColor":"BackColor",!1,b)):(d=this.bIe?"forecolor"===a?"ForeColor":"BackColor":"forecolor"===a?"foreColor":"backColor",this.ec(d,!1,b))},k.prototype.isHtml=function(){return!0===this.bOnlyPlain?!1:this.textarea.is(":hidden")},k.prototype.toHtmlString=function(){return this.editor.innerHTML},k.prototype.toString=function(){return this.editor.innerText},k.prototype.updateTextArea=function(){this.textarea.val(this.toHtmlString())},k.prototype.updateHtmlArea=function(){this.editor.innerHTML=this.textarea.val()},k.prototype.setRawText=function(a,b){b&&!this.bOnlyPlain?(this.isHtml()||(this.textarea.val(""),this.switchToHtml()),this.textarea.val(a.toString()),this.updateHtmlArea()):(this.textarea.val(a.toString()),this.updateHtmlArea(),this.switchToPlain(!1))},k.prototype.clear=function(){this.textarea.val(""),this.editor.innerHTML="",this.bOnlyPlain?(this.toolbar.hide(),this.switchToPlain(!1)):this.switchToHtml()},k.prototype.getTextForRequest=function(){return this.isHtml()?(this.updateTextArea(),this.textarea.val()):this.textarea.val()},k.prototype.getTextFromHtml=function(a){var b="",c="> ",d=function(){if(arguments&&1\n",a.replace(/\n([> ]+)/gm,function(){return arguments&&1]*>([\s\S]*)<\/div>/gim,e),a="\n"+sb.trim(a)+"\n"),a}return""},f=function(){if(arguments&&1/gim,"\n").replace(/<\/h\d>/gi,"\n").replace(/<\/p>/gi,"\n\n").replace(/<\/li>/gi,"\n").replace(/<\/td>/gi,"\n").replace(/<\/tr>/gi,"\n").replace(/]*>/gim,"\n_______________________________\n\n").replace(/]*>/gim,"").replace(/]*>([\s\S]*)<\/div>/gim,e).replace(/]*>/gim,"\n__bq__start__\n").replace(/<\/blockquote>/gim,"\n__bq__end__\n").replace(/]*>([\s\S]*?)<\/a>/gim,f).replace(/ /gi," ").replace(/<[^>]*>/gm,"").replace(/>/gi,">").replace(/</gi,"<").replace(/&/gi,"&").replace(/&\w{2,6};/gi,""),(a?sb.splitPlainText(b):b).replace(/\n[ \t]+/gm,"\n").replace(/[\n]{3,}/gm,"\n\n").replace(/__bq__start__([\s\S]*)__bq__end__/gm,d).replace(/__bq__start__/gm,"").replace(/__bq__end__/gm,"")},k.prototype.getHtmlFromText=function(){return sb.convertPlainTextToHtml(this.textarea.val())},k.prototype.switchToggle=function(){this.isHtml()?this.switchToPlain():this.switchToHtml()},k.prototype.switchToPlain=function(c){c=sb.isUnd(c)?!0:c;var d=this.getTextFromHtml(),e=h.bind(function(a){a&&(this.toolbar.addClass("editorHideToolbar"),b(".editorSwitcher",this.toolbar).text(this.switcherLinkText(!1)),this.textarea.val(d),this.textarea.show(),this.htmlarea.hide(),this.fOnSwitch&&this.fOnSwitch(!1))},this);c&&0!==sb.trim(d).length?e(a.confirm(this.oOptions.LangSwitcherConferm)):e(!0)},k.prototype.switcherLinkText=function(a){return a?this.oOptions.LangSwitcherTextLabel:this.oOptions.LangSwitcherHtmlLabel},k.prototype.switchToHtml=function(){this.toolbar.removeClass("editorHideToolbar"),b(".editorSwitcher",this.toolbar).text(this.switcherLinkText(!0)),this.textarea.val(this.getHtmlFromText()),this.updateHtmlArea(),this.textarea.hide(),this.htmlarea.show(),this.fOnSwitch&&this.fOnSwitch(!0)},k.prototype.addButton=function(c,d){var e=this;b("
").addClass("editorToolbarButtom").append(b('').addClass(c)).attr("title",d).click(function(d){sb.isUnd(k.htmlFunctions[c])?a.alert(c):k.htmlFunctions[c].apply(e,[b(this),d])}).appendTo(this.toolbar)},k.htmlInitToolbar=function(){this.bOnlyPlain||(this.addButton("bold","Bold"),this.addButton("italic","Italic"),this.addButton("underline","Underline"),this.addButton("strikethrough","Strikethrough"),this.addButton("removeformat","removeformat"),this.addButton("justifyleft","justifyleft"),this.addButton("justifycenter","justifycenter"),this.addButton("justifyright","justifyright"),this.addButton("horizontalrule","horizontalrule"),this.addButton("orderedlist","orderedlist"),this.addButton("unorderedlist","unorderedlist"),this.addButton("indent","indent"),this.addButton("outdent","outdent"),this.addButton("forecolor","forecolor"),function(a,b){a("").addClass("editorSwitcher").text(b.switcherLinkText(!0)).click(function(){b.switchToggle()}).appendTo(b.toolbar)}(b,this))},k.htmlInitEditor=function(){this.editor=this.htmlarea[0],this.editor.innerHTML=this.textarea.val()},k.htmlAttachEditorEvents=function(){var b=this,c=function(a){return a&&a.type&&0===a.type.indexOf("image/")},d=function(d){if(d=(d&&d.originalEvent?d.originalEvent:d)||a.event){d.stopPropagation(),d.preventDefault();var e=null,f=null,g=d.files||(d.dataTransfer?d.dataTransfer.files:null);g&&1===g.length&&c(g[0])&&(f=g[0],e=new a.FileReader,e.onload=function(a){return function(c){b.insertImage(c.target.result,a.name)}}(f),e.readAsDataURL(f))}b.htmlarea.removeClass("editorDragOver")},e=function(){b.htmlarea.removeClass("editorDragOver")},f=function(a){a.stopPropagation(),a.preventDefault(),b.htmlarea.addClass("editorDragOver")},g=function(d){var e=d&&d.clipboardData?d.clipboardData:d&&d.originalEvent&&d.originalEvent.clipboardData?d.originalEvent.clipboardData:null;e&&e.items&&h.each(e.items,function(d){if(c(d)&&d.getAsFile){var e=null,f=d.getAsFile();f&&(e=new a.FileReader,e.onload=function(a){return function(c){b.insertImage(c.target.result,a.name)}}(f),e.readAsDataURL(f))}})};this.bOnlyPlain||a.File&&a.FileReader&&a.FileList&&(this.htmlarea.bind("dragover",f),this.htmlarea.bind("dragleave",e),this.htmlarea.bind("drop",d),this.htmlarea.bind("paste",g))},k.htmlColorPickerColors=function(){var a=[],b=[],c=0,d=0,e=0,f=0,g="";for(c=0;256>c;c+=85)g=c.toString(16),a.push(1===g.length?"0"+g:g);for(f=a.length,c=0;f>c;c++)for(d=0;f>d;d++)for(e=0;f>e;e++)b.push("#"+a[c]+a[d]+a[e]);return b}(),k.htmlFontPicker=function(){var c=b(a.document),d=!1,e=b('
'),f=e.find(".editorFpFonts"),g=function(){};return b.each(["Arial","Arial Black","Courier New","Tahoma","Times New Roman","Verdana"],function(a,c){f.append(b(''+c+"").click(function(){g(c)})),f.append("
")}),e.hide(),function(f,h,i){d||(e.appendTo(i),d=!0),g=h,c.unbind("click.fpNamespace"),a.setTimeout(function(){c.one("click.fpNamespace",function(){e.hide()})},500);var j=b(f).position();e.css("top",5+j.top+b(f).height()+"px").css("left",j.left+"px").show()}}(),k.htmlColorPicker=function(){var c=b(a.document),d=!1,e=b('
'),f=e.find(".editorCpColors"),g=function(){};return b.each(k.htmlColorPickerColors,function(a,b){f.append('')}),e.hide(),b(".editorCpColor",f).click(function(a){var c=1,d="#000000",e=b(a.target).css("background-color"),f=e.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/);if(null!==f){for(delete f[0];3>=c;++c)f[c]=sb.pInt(f[c]).toString(16),1===f[c].length&&(f[c]="0"+f[c]);d="#"+f.join("")}else d=e;g(d)}),function(f,h,i){d||(e.appendTo(i),d=!0);var j=b(f).position();g=h,c.unbind("click.cpNamespace"),a.setTimeout(function(){c.one("click.cpNamespace",function(){e.hide()})},100),e.css("top",5+j.top+b(f).height()+"px").css("left",j.left+"px").show()}}(),k.htmlFunctions={bold:function(){this.ec("bold")},italic:function(){this.ec("italic")},underline:function(){this.ec("underline")},strikethrough:function(){this.ec("strikethrough")},indent:function(){this.ec("indent")},outdent:function(){this.ec("outdent")},justifyleft:function(){this.ec("justifyLeft")},justifycenter:function(){this.ec("justifyCenter")},justifyright:function(){this.ec("justifyRight")},horizontalrule:function(){this.ec("insertHorizontalRule",!1,"ht")},removeformat:function(){this.ec("removeFormat")},orderedlist:function(){this.ec("insertorderedlist")},unorderedlist:function(){this.ec("insertunorderedlist")},forecolor:function(a){k.htmlColorPicker(a,h.bind(function(a){this.setcolor("forecolor",a)},this),this.toolbar)},backcolor:function(a){k.htmlColorPicker(a,h.bind(function(a){this.setcolor("backcolor",a)},this),this.toolbar)},fontname:function(a){k.htmlFontPicker(a,h.bind(function(a){this.ec("fontname",!1,a)},this),this.toolbar)}},l.prototype.selectItemCallbacks=function(a){(this.oCallbacks.onItemSelect||this.emptyFunction)(a)},l.prototype.goDown=function(){this.newSelectPosition(qb.EventKeyCode.Down,!1)},l.prototype.goUp=function(){this.newSelectPosition(qb.EventKeyCode.Up,!1)},l.prototype.init=function(d,e){if(this.oContentVisible=d,this.oContentScrollable=e,this.oContentVisible&&this.oContentScrollable){var f=this;b(this.oContentVisible).on("selectstart",function(a){a&&a.preventDefault&&a.preventDefault()}).on("click",this.sItemSelector,function(a){f.actionClick(c.dataFor(this),a)}).on("click",this.sItemCheckedSelector,function(a){var b=c.dataFor(this);b&&(a&&a.shiftKey?f.actionClick(b,a):(f.sLastUid=f.getItemUid(b),b.selected()?(b.checked(!1),f.selectedItem(null)):b.checked(!b.checked())))}),b(a.document).on("keydown",function(a){var b=!0;return a&&f.bUseKeyboard&&!sb.inFocus()&&(-10)if(m){if(m)if(qb.EventKeyCode.Down===b||qb.EventKeyCode.Up===b||qb.EventKeyCode.Insert===b)h.each(k,function(a){if(!i)switch(b){case qb.EventKeyCode.Up:m===a?i=!0:j=a;break;case qb.EventKeyCode.Down:case qb.EventKeyCode.Insert:g?(j=a,i=!0):m===a&&(g=!0)}});else if(qb.EventKeyCode.Home===b||qb.EventKeyCode.End===b)qb.EventKeyCode.Home===b?j=k[0]:qb.EventKeyCode.End===b&&(j=k[k.length-1]);else if(qb.EventKeyCode.PageDown===b){for(;l>e;e++)if(m===k[e]){e+=f,e=e>l-1?l-1:e,j=k[e];break}}else if(qb.EventKeyCode.PageUp===b)for(e=l;e>=0;e--)if(m===k[e]){e-=f,e=0>e?0:e,j=k[e];break}}else qb.EventKeyCode.Down===b||qb.EventKeyCode.Insert===b||qb.EventKeyCode.Home===b||qb.EventKeyCode.PageUp===b?j=k[0]:(qb.EventKeyCode.Up===b||qb.EventKeyCode.End===b||qb.EventKeyCode.PageDown===b)&&(j=k[k.length-1]);j?(m&&(c?(qb.EventKeyCode.Up===b||qb.EventKeyCode.Down===b)&&m.checked(!m.checked()):qb.EventKeyCode.Insert===b&&m.checked(!m.checked())),this.throttleSelection=!0,this.selectedItem(j),this.throttleSelection=!0,0!==this.iSelectTimer?(a.clearTimeout(this.iSelectTimer),this.iSelectTimer=a.setTimeout(function(){d.iSelectTimer=0,d.actionClick(j)},1e3)):(this.iSelectTimer=a.setTimeout(function(){d.iSelectTimer=0},200),this.actionClick(j)),this.scrollToSelected()):m&&(!c||qb.EventKeyCode.Up!==b&&qb.EventKeyCode.Down!==b?qb.EventKeyCode.Insert===b&&m.checked(!m.checked()):m.checked(!m.checked()))},l.prototype.scrollToSelected=function(){if(!this.oContentVisible||!this.oContentScrollable)return!1;var a=20,c=b(this.sItemSelectedSelector,this.oContentScrollable),d=c.position(),e=this.oContentVisible.height(),f=c.outerHeight();return d&&(d.top<0||d.top+f>e)?(d.top<0?this.oContentScrollable.scrollTop(this.oContentScrollable.scrollTop()+d.top-a):this.oContentScrollable.scrollTop(this.oContentScrollable.scrollTop()+d.top-e+f+a),!0):!1},l.prototype.eventClickFunction=function(a,b){var c=this.getItemUid(a),d=0,e=0,f=null,g="",h=!1,i=!1,j=[],k=!1;if(b&&b.shiftKey&&""!==c&&""!==this.sLastUid&&c!==this.sLastUid)for(j=this.list(),k=a.checked(),d=0,e=j.length;e>d;d++)f=j[d],g=this.getItemUid(f),h=!1,(g===this.sLastUid||g===c)&&(h=!0),h&&(i=!i),(i||h)&&f.checked(k);this.sLastUid=""===c?"":c},l.prototype.actionClick=function(a,b){if(a){var c=!0,d=this.getItemUid(a);b&&(b.shiftKey?(c=!1,""===this.sLastUid&&(this.sLastUid=d),a.checked(!a.checked()),this.eventClickFunction(a,b)):b.ctrlKey&&(c=!1,this.sLastUid=d,a.checked(!a.checked()))),c&&(this.selectedItem(a),this.sLastUid=d)}},l.prototype.on=function(a,b){this.oCallbacks[a]=b},m.supported=function(){return!0},m.prototype.set=function(a,c){var d=b.cookie(pb.Values.ClientSideCookieIndexName),e=!1,f=null;try{f=null===d?null:JSON.parse(d),f||(f={}),f[a]=c,b.cookie(pb.Values.ClientSideCookieIndexName,JSON.stringify(f),{expires:30}),e=!0}catch(g){}return e},m.prototype.get=function(a){var c=b.cookie(pb.Values.ClientSideCookieIndexName),d=null;try{d=null===c?null:JSON.parse(c),d=d&&!sb.isUnd(d[a])?d[a]:null}catch(e){}return d},n.supported=function(){return!!a.localStorage},n.prototype.set=function(b,c){var d=a.localStorage[pb.Values.ClientSideCookieIndexName]||null,e=!1,f=null;try{f=null===d?null:JSON.parse(d),f||(f={}),f[b]=c,a.localStorage[pb.Values.ClientSideCookieIndexName]=JSON.stringify(f),e=!0}catch(g){}return e},n.prototype.get=function(b){var c=a.localStorage[pb.Values.ClientSideCookieIndexName]||null,d=null;try{d=null===c?null:JSON.parse(c),d=d&&!sb.isUnd(d[b])?d[b]:null}catch(e){}return d},o.prototype.oDriver=null,o.prototype.set=function(a,b){return this.oDriver?this.oDriver.set("p"+a,b):!1},o.prototype.get=function(a){return this.oDriver?this.oDriver.get("p"+a):null},p.prototype.bootstart=function(){},q.prototype.sPosition="",q.prototype.sTemplate="",q.prototype.viewModelName="",q.prototype.viewModelDom=null,q.prototype.viewModelTemplate=function(){return this.sTemplate},q.prototype.viewModelPosition=function(){return this.sPosition},q.prototype.cancelCommand=q.prototype.closeCommand=function(){},r.prototype.oCross=null,r.prototype.sScreenName="",r.prototype.aViewModels=[],r.prototype.viewModels=function(){return this.aViewModels},r.prototype.screenName=function(){return this.sScreenName},r.prototype.routes=function(){return null},r.prototype.__cross=function(){return this.oCross},r.prototype.__start=function(){var a=this.routes(),b=null,c=null;sb.isNonEmptyArray(a)&&(c=h.bind(this.onRoute||sb.emptyFunction,this),b=d.create(),h.each(a,function(a){b.addRoute(a[0],c).rules=a[1]}),this.oCross=b)},s.constructorEnd=function(a){sb.isFunc(a.__constructor_end)&&a.__constructor_end.call(a)},s.prototype.sDefaultScreenName="",s.prototype.oScreens={},s.prototype.oBoot=null,s.prototype.oCurrentScreen=null,s.prototype.hideLoading=function(){b("#rl-loading").hide()},s.prototype.routeOff=function(){e.changed.active=!1},s.prototype.routeOn=function(){e.changed.active=!0},s.prototype.setBoot=function(a){return sb.isNormal(a)&&(this.oBoot=a),this},s.prototype.screen=function(a){return""===a||sb.isUnd(this.oScreens[a])?null:this.oScreens[a]},s.prototype.buildViewModel=function(a,d){if(a&&!a.__builded){var e=new a(d),f=e.viewModelPosition(),g=b("#rl-content #rl-"+f.toLowerCase()),h=null;a.__builded=!0,a.__vm=e,e.data=Eb.data(),e.viewModelName=a.__name,g&&1===g.length?(h=b("
").addClass("rl-view-model").addClass("RL-"+e.viewModelTemplate()).hide().attr("data-bind",'template: {name: "'+e.viewModelTemplate()+'"}, i18nInit: true'),h.appendTo(g),e.viewModelDom=h,a.__dom=h,"Popups"===f&&(e.cancelCommand=e.closeCommand=sb.createCommand(e,function(){xb.hideScreenPopup(a)})),tb.runHook("view-model-pre-build",[a.__name,e,h]),c.applyBindings(e,h[0]),sb.delegateRun(e,"onBuild",[h]),tb.runHook("view-model-post-build",[a.__name,e,h])):sb.log("Cannot find view model position: "+f)}return a?a.__vm:null},s.prototype.applyExternal=function(a,b){a&&b&&c.applyBindings(a,b)},s.prototype.hideScreenPopup=function(a){a&&a.__vm&&a.__dom&&(a.__vm.modalVisibility(!1),sb.delegateRun(a.__vm,"onHide"),this.popupVisibility(!1),tb.runHook("view-model-on-hide",[a.__name,a.__vm]),h.delay(function(){a.__dom.hide()},300))},s.prototype.showScreenPopup=function(a,b){a&&(this.buildViewModel(a),a.__vm&&a.__dom&&(a.__dom.show(),a.__vm.modalVisibility(!0),sb.delegateRun(a.__vm,"onShow",b||[]),this.popupVisibility(!0),tb.runHook("view-model-on-show",[a.__name,a.__vm,b||[]]),h.delay(function(){sb.delegateRun(a.__vm,"onFocus")},500)))},s.prototype.screenOnRoute=function(a,b){var c=this,d=null,e=null;""===sb.pString(a)&&(a=this.sDefaultScreenName),""!==a&&(d=this.screen(a),d||(d=this.screen(this.sDefaultScreenName),d&&(b=a+"/"+b,a=this.sDefaultScreenName)),d&&d.__started&&(d.__builded||(d.__builded=!0,sb.isNonEmptyArray(d.viewModels())&&h.each(d.viewModels(),function(a){this.buildViewModel(a,d)},this),sb.delegateRun(d,"onBuild")),h.defer(function(){c.oCurrentScreen&&(sb.delegateRun(c.oCurrentScreen,"onHide"),sb.isNonEmptyArray(c.oCurrentScreen.viewModels())&&h.each(c.oCurrentScreen.viewModels(),function(a){a.__vm&&a.__dom&&"Popups"!==a.__vm.viewModelPosition()&&(a.__dom.hide(),a.__vm.viewModelVisibility(!1),sb.delegateRun(a.__vm,"onHide"))})),c.oCurrentScreen=d,c.oCurrentScreen&&(sb.delegateRun(c.oCurrentScreen,"onShow"),tb.runHook("screen-on-show",[c.oCurrentScreen.screenName(),c.oCurrentScreen]),sb.isNonEmptyArray(c.oCurrentScreen.viewModels())&&h.each(c.oCurrentScreen.viewModels(),function(a){a.__vm&&a.__dom&&"Popups"!==a.__vm.viewModelPosition()&&(a.__dom.show(),a.__vm.viewModelVisibility(!0),sb.delegateRun(a.__vm,"onShow"),tb.runHook("view-model-on-show",[a.__name,a.__vm]))},c)),e=d.__cross(),e&&e.parse(b)})))},s.prototype.startScreens=function(a){b("#rl-content").css({visibility:"hidden"}),h.each(a,function(a){var b=new a,c=b?b.screenName():"";b&&""!==c&&(""===this.sDefaultScreenName&&(this.sDefaultScreenName=c),this.oScreens[c]=b)},this),h.each(this.oScreens,function(a){a&&!a.__started&&a.__start&&(a.__started=!0,a.__start(),tb.runHook("screen-pre-start",[a.screenName(),a]),sb.delegateRun(a,"onStart"),tb.runHook("screen-post-start",[a.screenName(),a]))},this);var c=d.create();c.addRoute(/^([a-zA-Z0-9\-]*)\/?(.*)$/,h.bind(this.screenOnRoute,this)),e.initialized.add(c.parse,c),e.changed.add(c.parse,c),e.init(),b("#rl-content").css({visibility:"visible"}),h.delay(function(){Ab.removeClass("rl-started-trigger").addClass("rl-started")},50)},s.prototype.setHash=function(a,b,c){a="#"===a.substr(0,1)?a.substr(1):a,a="/"===a.substr(0,1)?a.substr(1):a,c=sb.isUnd(c)?!1:!!c,(sb.isUnd(b)?1:!b)?(e.changed.active=!0,e[c?"replaceHash":"setHash"](a),e.setHash(a)):(e.changed.active=!1,e[c?"replaceHash":"setHash"](a),e.changed.active=!0)},s.prototype.bootstart=function(){return this.oBoot&&this.oBoot.bootstart&&this.oBoot.bootstart(),this},xb=new s,t.newInstanceFromJson=function(a){var b=new t;return b.initByJson(a)?b:null},t.prototype.name="",t.prototype.email="",t.prototype.privateType=null,t.prototype.clear=function(){this.email="",this.name="",this.privateType=null},t.prototype.validate=function(){return""!==this.name||""!==this.email},t.prototype.hash=function(a){return"#"+(a?"":this.name)+"#"+this.email+"#"},t.prototype.clearDuplicateName=function(){this.name===this.email&&(this.name="")},t.prototype.type=function(){return null===this.privateType&&(this.email&&"@facebook.com"===this.email.substr(-13)&&(this.privateType=qb.EmailType.Facebook),null===this.privateType&&(this.privateType=qb.EmailType.Default)),this.privateType},t.prototype.search=function(a){return-1<(this.name+" "+this.email).toLowerCase().indexOf(a.toLowerCase())},t.prototype.parse=function(a){this.clear(),a=sb.trim(a);var b=/(?:"([^"]+)")? ?,]+)>?,? ?/g,c=b.exec(a);c?(this.name=c[1]||"",this.email=c[2]||"",this.clearDuplicateName()):/^[^@]+@[^@]+$/.test(a)&&(this.name="",this.email=a)},t.prototype.initByJson=function(a){var b=!1;return a&&"Object/Email"===a["@Object"]&&(this.name=sb.trim(a.Name),this.email=sb.trim(a.Email),b=""!==this.email,this.clearDuplicateName()),b},t.prototype.toLine=function(a,b,c){var d="";return""!==this.email&&(b=sb.isUnd(b)?!1:!!b,c=sb.isUnd(c)?!1:!!c,a&&""!==this.name?d=b?'")+'" target="_blank" tabindex="-1">'+sb.encodeHtml(this.name)+"":c?sb.encodeHtml(this.name):this.name:(d=this.email,""!==this.name?b?d=sb.encodeHtml('"'+this.name+'" <')+'")+'" target="_blank" tabindex="-1">'+sb.encodeHtml(d)+""+sb.encodeHtml(">"):(d='"'+this.name+'" <'+d+">",c&&(d=sb.encodeHtml(d))):b&&(d=''+sb.encodeHtml(this.email)+""))),d},t.prototype.mailsoParse=function(a){if(a=sb.trim(a),""===a)return!1;for(var b=function(a,b,c){a+="";var d=a.length;return 0>b&&(b+=d),d="undefined"==typeof c?d:0>c?c+d:c+b,b>=a.length||0>b||b>d?!1:a.slice(b,d)},c=function(a,b,c,d){return 0>c&&(c+=a.length),d=void 0!==d?d:a.length,0>d&&(d=d+a.length-c),a.slice(0,c)+b.substr(0,d)+b.slice(d)+a.slice(c+d)},d="",e="",f="",g=!1,h=!1,i=!1,j=null,k=0,l=0,m=0;m0&&0===d.length&&(d=b(a,0,m)),h=!0,k=m);break;case">":h&&(l=m,e=b(a,k+1,l-k-1),a=c(a,"",k,l-k+1),l=0,m=0,k=0,h=!1);break;case"(":g||h||i||(i=!0,k=m);break;case")":i&&(l=m,f=b(a,k+1,l-k-1),a=c(a,"",k,l-k+1),l=0,m=0,k=0,i=!1);break;case"\\":m++}m++}return 0===e.length&&(j=a.match(/[^@\s]+@\S+/i),j&&j[0]?e=j[0]:d=a),e.length>0&&0===d.length&&0===f.length&&(d=a.replace(e,"")),e=sb.trim(e).replace(/^[<]+/,"").replace(/[>]+$/,""),d=sb.trim(d).replace(/^["']+/,"").replace(/["']+$/,""),f=sb.trim(f).replace(/^[(]+/,"").replace(/[)]+$/,""),d=d.replace(/\\\\(.)/,"$1"),f=f.replace(/\\\\(.)/,"$1"),this.name=d,this.email=e,this.clearDuplicateName(),!0},t.prototype.inputoTagLine=function(){return 0+$/,""),b=!0),b},w.prototype.isImage=function(){return-1e;e++)d.push(a[e].toLine(b,c));return d.join(", ")},y.initEmailsFromJson=function(a){var b=0,c=0,d=null,e=[];if(sb.isNonEmptyArray(a))for(b=0,c=a.length;c>b;b++)d=t.newInstanceFromJson(a[b]),d&&e.push(d);return e},y.replyHelper=function(a,b,c){if(a&&0d;d++)sb.isUnd(b[a[d].email])&&(b[a[d].email]=!0,c.push(a[d]))},y.prototype.clear=function(){this.folderFullNameRaw="",this.uid="",this.requestHash="",this.subject(""),this.size(0),this.dateTimeStampInUTC(0),this.priority(qb.MessagePriority.Normal),this.fromEmailString(""),this.toEmailsString(""),this.senderEmailsString(""),this.emails=[],this.from=[],this.to=[],this.cc=[],this.bcc=[],this.replyTo=[],this.newForAnimation(!1),this.deleted(!1),this.unseen(!1),this.flagged(!1),this.answered(!1),this.forwarded(!1),this.isReadReceipt(!1),this.selected(!1),this.checked(!1),this.hasAttachments(!1),this.attachmentsMainType(""),this.body=null,this.isRtl(!1),this.isHtml(!1),this.hasImages(!1),this.attachments([]),this.isPgpSigned(!1),this.isPgpEncrypted(!1),this.pgpSignature(""),this.priority(qb.MessagePriority.Normal),this.readReceipt(""),this.aDraftInfo=[],this.sMessageId="",this.sInReplyTo="",this.sReferences="",this.parentUid(0),this.threads([]),this.threadsLen(0),this.hasUnseenSubMessage(!1),this.hasFlaggedSubMessage(!1),this.lastInCollapsedThread(!1),this.lastInCollapsedThreadLoading(!1)},y.prototype.computeSenderEmail=function(){var a=Eb.data().sentFolder(),b=Eb.data().draftFolder();this.senderEmailsString(this.folderFullNameRaw===a||this.folderFullNameRaw===b?this.toEmailsString():this.fromEmailString())},y.prototype.initByJson=function(a){var b=!1;return a&&"Object/Message"===a["@Object"]&&(this.folderFullNameRaw=a.Folder,this.uid=a.Uid,this.requestHash=a.RequestHash,this.size(sb.pInt(a.Size)),this.from=y.initEmailsFromJson(a.From),this.to=y.initEmailsFromJson(a.To),this.cc=y.initEmailsFromJson(a.Cc),this.bcc=y.initEmailsFromJson(a.Bcc),this.replyTo=y.initEmailsFromJson(a.ReplyTo),this.subject(a.Subject),this.dateTimeStampInUTC(sb.pInt(a.DateTimeStampInUTC)),this.hasAttachments(!!a.HasAttachments),this.attachmentsMainType(a.AttachmentsMainType),this.fromEmailString(y.emailsToLine(this.from,!0)),this.toEmailsString(y.emailsToLine(this.to,!0)),this.parentUid(sb.pInt(a.ParentThread)),this.threads(sb.isArray(a.Threads)?a.Threads:[]),this.threadsLen(sb.pInt(a.ThreadsLen)),this.initFlagsByJson(a),this.computeSenderEmail(),b=!0),b},y.prototype.initUpdateByMessageJson=function(a){var b=!1,c=qb.MessagePriority.Normal;return a&&"Object/Message"===a["@Object"]&&(c=sb.pInt(a.Priority),this.priority(-1b;b++)d=w.newInstanceFromJson(a["@Collection"][b]),d&&(""!==d.cidWithOutTags&&0+$/,""),b=h.find(c,function(b){return a===b.cidWithOutTags})),b||null},y.prototype.findAttachmentByContentLocation=function(a){var b=null,c=this.attachments();return sb.isNonEmptyArray(c)&&(b=h.find(c,function(b){return a===b.contentLocation})),b||null},y.prototype.messageId=function(){return this.sMessageId},y.prototype.inReplyTo=function(){return this.sInReplyTo},y.prototype.references=function(){return this.sReferences},y.prototype.fromAsSingleEmail=function(){return sb.isArray(this.from)&&this.from[0]?this.from[0].email:""},y.prototype.viewLink=function(){return Eb.link().messageViewLink(this.requestHash)},y.prototype.downloadLink=function(){return Eb.link().messageDownloadLink(this.requestHash)},y.prototype.replyEmails=function(a){var b=[],c=sb.isUnd(a)?{}:a;return y.replyHelper(this.replyTo,c,b),0===b.length&&y.replyHelper(this.from,c,b),b},y.prototype.replyAllEmails=function(a){var b=[],c=[],d=sb.isUnd(a)?{}:a;return y.replyHelper(this.replyTo,d,b),0===b.length&&y.replyHelper(this.from,d,b),y.replyHelper(this.to,d,b),y.replyHelper(this.cc,d,c),[b,c]},y.prototype.textBodyToString=function(){return this.body?this.body.html():""},y.prototype.attachmentsToStringLine=function(){var a=h.map(this.attachments(),function(a){return a.fileName+" ("+a.friendlySize+")"});return a&&0=0&&e&&!f&&d.attr("src",e)}),c&&a.setTimeout(function(){d.print()},100))})},y.prototype.printMessage=function(){this.viewPopupMessage(!0)},y.prototype.generateUid=function(){return this.folderFullNameRaw+"/"+this.uid},y.prototype.populateByMessageListItem=function(a){return this.folderFullNameRaw=a.folderFullNameRaw,this.uid=a.uid,this.requestHash=a.requestHash,this.subject(a.subject()),this.size(a.size()),this.dateTimeStampInUTC(a.dateTimeStampInUTC()),this.priority(a.priority()),this.fromEmailString(a.fromEmailString()),this.toEmailsString(a.toEmailsString()),this.emails=a.emails,this.from=a.from,this.to=a.to,this.cc=a.cc,this.bcc=a.bcc,this.replyTo=a.replyTo,this.unseen(a.unseen()),this.flagged(a.flagged()),this.answered(a.answered()),this.forwarded(a.forwarded()),this.isReadReceipt(a.isReadReceipt()),this.selected(a.selected()),this.checked(a.checked()),this.hasAttachments(a.hasAttachments()),this.attachmentsMainType(a.attachmentsMainType()),this.moment(a.moment()),this.body=null,this.priority(qb.MessagePriority.Normal),this.aDraftInfo=[],this.sMessageId="",this.sInReplyTo="",this.sReferences="",this.parentUid(a.parentUid()),this.threads(a.threads()),this.threadsLen(a.threadsLen()),this.computeSenderEmail(),this},y.prototype.showExternalImages=function(a){this.body&&this.body.data("rl-has-images")&&(a=sb.isUnd(a)?!1:a,this.hasImages(!1),this.body.data("rl-has-images",!1),b("[data-x-src]",this.body).each(function(){a&&b(this).is("img")?b(this).addClass("lazy").attr("data-original",b(this).attr("data-x-src")).removeAttr("data-x-src"):b(this).attr("src",b(this).attr("data-x-src")).removeAttr("data-x-src")}),b("[data-x-style-url]",this.body).each(function(){var a=sb.trim(b(this).attr("style"));a=""===a?"":";"===a.substr(-1)?a+" ":a+"; ",b(this).attr("style",a+b(this).attr("data-x-style-url")).removeAttr("data-x-style-url")}),a&&(b("img.lazy",this.body).addClass("lazy-inited").lazyload({threshold:400,effect:"fadeIn",skip_invisible:!1,container:b(".RL-MailMessageView .messageView .messageItem .content")[0]}),Bb.resize()),sb.windowResize(500))},y.prototype.showInternalImages=function(a){if(this.body&&!this.body.data("rl-init-internal-images")){a=sb.isUnd(a)?!1:a;var c=this;this.body.data("rl-init-internal-images",!0),b("[data-x-src-cid]",this.body).each(function(){var d=c.findAttachmentByCid(b(this).attr("data-x-src-cid"));d&&d.download&&(a&&b(this).is("img")?b(this).addClass("lazy").attr("data-original",d.linkPreview()):b(this).attr("src",d.linkPreview()))}),b("[data-x-src-location]",this.body).each(function(){var d=c.findAttachmentByContentLocation(b(this).attr("data-x-src-location"));d||(d=c.findAttachmentByCid(b(this).attr("data-x-src-location"))),d&&d.download&&(a&&b(this).is("img")?b(this).addClass("lazy").attr("data-original",d.linkPreview()):b(this).attr("src",d.linkPreview()))}),b("[data-x-style-cid]",this.body).each(function(){var a="",d="",e=c.findAttachmentByCid(b(this).attr("data-x-style-cid"));e&&e.linkPreview&&(d=b(this).attr("data-x-style-cid-name"),""!==d&&(a=sb.trim(b(this).attr("style")),a=""===a?"":";"===a.substr(-1)?a+" ":a+"; ",b(this).attr("style",a+d+": url('"+e.linkPreview()+"')")))}),a&&!function(a,b){h.delay(function(){a.addClass("lazy-inited").lazyload({threshold:400,effect:"fadeIn",skip_invisible:!1,container:b})},300)}(b("img.lazy",c.body),b(".RL-MailMessageView .messageView .messageItem .content")[0]),sb.windowResize(500)}},z.newInstanceFromJson=function(a){var b=new z;return b.initByJson(a)?b.initComputed():null},z.prototype.initComputed=function(){return this.hasSubScribedSubfolders=c.computed(function(){return!!h.find(this.subFolders(),function(a){return a.subScribed()})},this),this.canBeEdited=c.computed(function(){return qb.FolderType.User===this.type()&&this.existen&&this.selectable},this),this.visible=c.computed(function(){var a=this.subScribed(),b=this.hasSubScribedSubfolders();return a||b&&(!this.existen||!this.selectable)},this),this.isSystemFolder=c.computed(function(){return qb.FolderType.User!==this.type()},this),this.hidden=c.computed(function(){var a=this.isSystemFolder(),b=this.hasSubScribedSubfolders();return this.isGmailFolder||a&&this.isNamespaceFolder||a&&!b},this),this.selectableForFolderList=c.computed(function(){return!this.isSystemFolder()&&this.selectable},this),this.messageCountAll=c.computed({read:this.privateMessageCountAll,write:function(a){sb.isPosNumeric(a,!0)?this.privateMessageCountAll(a):this.privateMessageCountAll.valueHasMutated()},owner:this}),this.messageCountUnread=c.computed({read:this.privateMessageCountUnread,write:function(a){sb.isPosNumeric(a,!0)?this.privateMessageCountUnread(a):this.privateMessageCountUnread.valueHasMutated()},owner:this}),this.printableUnreadCount=c.computed(function(){var a=this.messageCountAll(),b=this.messageCountUnread(),c=this.type();if(qb.FolderType.Inbox===c&&Eb.data().foldersInboxUnreadCount(b),a>0){if(qb.FolderType.Draft===c)return""+a;if(b>0&&qb.FolderType.Trash!==c&&qb.FolderType.SentItems!==c)return""+b}return""},this),this.canBeDeleted=c.computed(function(){var a=this.isSystemFolder();return!a&&0===this.subFolders().length&&"INBOX"!==this.fullNameRaw},this),this.canBeSubScribed=c.computed(function(){return!this.isSystemFolder()&&this.selectable&&"INBOX"!==this.fullNameRaw},this),this.visible.subscribe(function(){sb.timeOutAction("folder-list-folder-visibility-change",function(){Bb.trigger("folder-list-folder-visibility-change")},100)}),this.localName=c.computed(function(){vb.langChangeTrigger();var a=this.type(),b=this.name();if(this.isSystemFolder())switch(a){case qb.FolderType.Inbox:b=sb.i18n("FOLDER_LIST/INBOX_NAME");break;case qb.FolderType.SentItems:b=sb.i18n("FOLDER_LIST/SENT_NAME");break;case qb.FolderType.Draft:b=sb.i18n("FOLDER_LIST/DRAFTS_NAME");break;case qb.FolderType.Spam:b=sb.i18n("FOLDER_LIST/SPAM_NAME");break;case qb.FolderType.Trash:b=sb.i18n("FOLDER_LIST/TRASH_NAME")}return b},this),this.manageFolderSystemName=c.computed(function(){vb.langChangeTrigger();var a="",b=this.type(),c=this.name();if(this.isSystemFolder())switch(b){case qb.FolderType.Inbox:a="("+sb.i18n("FOLDER_LIST/INBOX_NAME")+")";break;case qb.FolderType.SentItems:a="("+sb.i18n("FOLDER_LIST/SENT_NAME")+")";break;case qb.FolderType.Draft:a="("+sb.i18n("FOLDER_LIST/DRAFTS_NAME")+")";break;case qb.FolderType.Spam:a="("+sb.i18n("FOLDER_LIST/SPAM_NAME")+")";break;case qb.FolderType.Trash:a="("+sb.i18n("FOLDER_LIST/TRASH_NAME")+")"}return(""!==a&&"("+c+")"===a||"(inbox)"===a.toLowerCase())&&(a=""),a},this),this.collapsed=c.computed({read:function(){return!this.hidden()&&this.collapsedPrivate()},write:function(a){this.collapsedPrivate(a)},owner:this}),this.hasUnreadMessages=c.computed(function(){return 0"},B.prototype.formattedNameForCompose=function(){var a=this.name();return""===a?this.email():a+" ("+this.email()+")"},B.prototype.formattedNameForEmail=function(){var a=this.name();return""===a?this.email():'"'+sb.quoteName(a)+'" <'+this.email()+">"},sb.extendAsViewModel("PopupsFolderClearViewModel",C),C.prototype.clearPopup=function(){this.clearingProcess(!1),this.selectedFolder(null)},C.prototype.onShow=function(a){this.clearPopup(),a&&this.selectedFolder(a)},C.prototype.onBuild=function(){var a=this;Bb.on("keydown",function(b){var c=!0;return b&&qb.EventKeyCode.Esc===b.keyCode&&a.modalVisibility()&&(sb.delegateRun(a,"cancelCommand"),c=!1),c})},sb.extendAsViewModel("PopupsFolderCreateViewModel",D),D.prototype.sNoParentText="",D.prototype.simpleFolderNameValidation=function(a){return/^[^\\\/]+$/g.test(sb.trim(a))},D.prototype.clearPopup=function(){this.folderName(""),this.selectedParentValue(""),this.folderName.focused(!1)},D.prototype.onShow=function(){this.clearPopup()},D.prototype.onFocus=function(){this.folderName.focused(!0)},D.prototype.onBuild=function(){var a=this;Bb.on("keydown",function(b){var c=!0;return b&&qb.EventKeyCode.Esc===b.keyCode&&a.modalVisibility()&&(sb.delegateRun(a,"cancelCommand"),c=!1),c})},sb.extendAsViewModel("PopupsFolderSystemViewModel",E),E.prototype.sChooseOnText="",E.prototype.sUnuseText="",E.prototype.onShow=function(a){var b="";switch(a=sb.isUnd(a)?qb.SetSystemFoldersNotification.None:a){case qb.SetSystemFoldersNotification.Sent:b=sb.i18n("POPUPS_SYSTEM_FOLDERS/NOTIFICATION_SENT");break;case qb.SetSystemFoldersNotification.Draft:b=sb.i18n("POPUPS_SYSTEM_FOLDERS/NOTIFICATION_DRAFTS");break;case qb.SetSystemFoldersNotification.Spam:b=sb.i18n("POPUPS_SYSTEM_FOLDERS/NOTIFICATION_SPAM");break;case qb.SetSystemFoldersNotification.Trash:b=sb.i18n("POPUPS_SYSTEM_FOLDERS/NOTIFICATION_TRASH")}this.notification(b)},E.prototype.onBuild=function(){var a=this;Bb.on("keydown",function(b){var c=!0;return b&&qb.EventKeyCode.Esc===b.keyCode&&a.modalVisibility()&&(sb.delegateRun(a,"cancelCommand"),c=!1),c})},sb.extendAsViewModel("PopupsComposeViewModel",F),F.prototype.findIdentityIdByMessage=function(a,b){var c={},d="",e=function(a){return a&&a.email&&c[a.email]?(d=c[a.email],!0):!1};switch(this.bAllowIdentities&&h.each(this.identities(),function(a){c[a.email()]=a.id}),c[Eb.data().accountEmail()]=Eb.data().accountEmail(),a){case qb.ComposeType.Empty:d=Eb.data().accountEmail();break;case qb.ComposeType.Reply:case qb.ComposeType.ReplyAll:case qb.ComposeType.Forward:case qb.ComposeType.ForwardAsAttachment:h.find(h.union(b.to,b.cc,b.bcc),e);break;case qb.ComposeType.Draft:h.find(h.union(b.from,b.replyTo),e)}return d},F.prototype.selectIdentity=function(a){a&&this.currentIdentityID(a.optValue)},F.prototype.formattedFrom=function(a){var b=Eb.data().displayName(),c=Eb.data().accountEmail();return""===b?c:(sb.isUnd(a)?1:!a)?b+" ("+c+")":'"'+sb.quoteName(b)+'" <'+c+">"},F.prototype.sendMessageResponse=function(b,c){var d=!1,e="";this.sending(!1),qb.StorageResultType.Success===b&&c&&c.Result&&(d=!0,this.modalVisibility()&&sb.delegateRun(this,"closeCommand")),this.modalVisibility()&&!d&&(c&&qb.Notification.CantSaveMessage===c.ErrorCode?(this.sendSuccessButSaveError(!0),a.alert(sb.trim(sb.i18n("COMPOSE/SAVED_ERROR_ON_SEND")))):(e=sb.getNotification(c&&c.ErrorCode?c.ErrorCode:qb.Notification.CantSendMessage,c&&c.ErrorMessage?c.ErrorMessage:""),this.sendError(!0),a.alert(e||sb.getNotification(qb.Notification.CantSendMessage))))},F.prototype.saveMessageResponse=function(b,c){var d=!1,e=null;this.saving(!1),qb.StorageResultType.Success===b&&c&&c.Result&&c.Result.NewFolder&&c.Result.NewUid&&(this.bFromDraft&&(e=Eb.data().message(),e&&this.draftFolder()===e.folderFullNameRaw&&this.draftUid()===e.uid&&Eb.data().message(null)),this.draftFolder(c.Result.NewFolder),this.draftUid(c.Result.NewUid),this.modalVisibility()&&(this.savedTime(Math.round((new a.Date).getTime()/1e3)),this.savedOrSendingText(0c;c++)e.push(a[c].toLine(!!b));return e.join(", ")};if(c=c||null,c&&sb.isNormal(c)&&(v=sb.isArray(c)&&1===c.length?c[0]:sb.isArray(c)?null:c),null!==q&&(p[q]=!0,this.currentIdentityID(this.findIdentityIdByMessage(w,v))),this.reset(),sb.isNonEmptyArray(d)&&this.to(x(d)),""!==w&&v){switch(j=v.fullFormatDateValue(),k=v.subject(),u=v.aDraftInfo,l=b(v.body).clone(),sb.removeBlockquoteSwitcher(l),m=l.html(),w){case qb.ComposeType.Empty:break;case qb.ComposeType.Reply:this.to(x(v.replyEmails(p))),this.subject(sb.replySubjectAdd("Re",k)),this.prepearMessageAttachments(v,w),this.aDraftInfo=["reply",v.uid,v.folderFullNameRaw],this.sInReplyTo=v.sMessageId,this.sReferences=sb.trim(this.sInReplyTo+" "+v.sReferences);break;case qb.ComposeType.ReplyAll:o=v.replyAllEmails(p),this.to(x(o[0])),this.cc(x(o[1])),this.subject(sb.replySubjectAdd("Re",k)),this.prepearMessageAttachments(v,w),this.aDraftInfo=["reply",v.uid,v.folderFullNameRaw],this.sInReplyTo=v.sMessageId,this.sReferences=sb.trim(this.sInReplyTo+" "+v.references());break;case qb.ComposeType.Forward:this.subject(sb.replySubjectAdd("Fwd",k)),this.prepearMessageAttachments(v,w),this.aDraftInfo=["forward",v.uid,v.folderFullNameRaw],this.sInReplyTo=v.sMessageId,this.sReferences=sb.trim(this.sInReplyTo+" "+v.sReferences);break;case qb.ComposeType.ForwardAsAttachment:this.subject(sb.replySubjectAdd("Fwd",k)),this.prepearMessageAttachments(v,w),this.aDraftInfo=["forward",v.uid,v.folderFullNameRaw],this.sInReplyTo=v.sMessageId,this.sReferences=sb.trim(this.sInReplyTo+" "+v.sReferences);break;case qb.ComposeType.Draft:this.to(x(v.to)),this.cc(x(v.cc)),this.bcc(x(v.bcc)),this.bFromDraft=!0,this.draftFolder(v.folderFullNameRaw),this.draftUid(v.uid),this.subject(k),this.prepearMessageAttachments(v,w),this.aDraftInfo=sb.isNonEmptyArray(u)&&3===u.length?u:null,this.sInReplyTo=v.sInReplyTo,this.sReferences=v.sReferences;break;case qb.ComposeType.EditAsNew:this.to(x(v.to)),this.cc(x(v.cc)),this.bcc(x(v.bcc)),this.subject(k),this.prepearMessageAttachments(v,w),this.aDraftInfo=sb.isNonEmptyArray(u)&&3===u.length?u:null,this.sInReplyTo=v.sInReplyTo,this.sReferences=v.sReferences}if(this.oEditor){switch(w){case qb.ComposeType.Reply:case qb.ComposeType.ReplyAll:f=v.fromToLine(!1,!0),n=sb.i18n("COMPOSE/REPLY_MESSAGE_TITLE",{DATETIME:j,EMAIL:f}),m="

"+n+":

"+m+"
";break;case qb.ComposeType.Forward:f=v.fromToLine(!1,!0),g=v.toToLine(!1,!0),i=v.ccToLine(!1,!0),m="


"+sb.i18n("COMPOSE/FORWARD_MESSAGE_TOP_TITLE")+"
"+sb.i18n("COMPOSE/FORWARD_MESSAGE_TOP_FROM")+": "+f+"
"+sb.i18n("COMPOSE/FORWARD_MESSAGE_TOP_TO")+": "+g+(0"+sb.i18n("COMPOSE/FORWARD_MESSAGE_TOP_CC")+": "+i:"")+"
"+sb.i18n("COMPOSE/FORWARD_MESSAGE_TOP_SENT")+": "+sb.encodeHtml(j)+"
"+sb.i18n("COMPOSE/FORWARD_MESSAGE_TOP_SUBJECT")+": "+sb.encodeHtml(k)+"

"+m;break;case qb.ComposeType.ForwardAsAttachment:m=""}s&&""!==r&&qb.ComposeType.EditAsNew!==w&&qb.ComposeType.Draft!==w&&(m=sb.convertPlainTextToHtml(this.convertSignature(r,x(v.from,!0)))+"
"+m),this.oEditor.setRawText(m,v.isHtml())}}else this.oEditor&&qb.ComposeType.Empty===w?this.oEditor.setRawText(sb.convertPlainTextToHtml(this.convertSignature(r)),qb.EditorDefaultType.Html===Eb.data().editorDefaultType()):sb.isNonEmptyArray(c)&&h.each(c,function(a){e.addMessageAsAttachment(a)});t=this.getAttachmentsDownloadsForUpload(),sb.isNonEmptyArray(t)&&Eb.remote().messageUploadAttachments(function(a,b){if(qb.StorageResultType.Success===a&&b&&b.Result){var c=null,d="";if(!e.viewModelVisibility())for(d in b.Result)b.Result.hasOwnProperty(d)&&(c=e.getAttachmentById(b.Result[d]),c&&c.tempName(d))}else e.setMessageAttachmentFailedDowbloadText()},t),this.triggerForResize()},F.prototype.onFocus=function(){""===this.to()?this.to.focusTrigger(!this.to.focusTrigger()):this.oEditor&&this.oEditor.focus(),this.triggerForResize()},F.prototype.tryToClosePopup=function(){var a=this;xb.showScreenPopup(L,[sb.i18n("POPUPS_ASK/DESC_WANT_CLOSE_THIS_WINDOW"),function(){a.modalVisibility()&&sb.delegateRun(a,"closeCommand")}])},F.prototype.onBuild=function(){this.initEditor(),this.initUploader();var a=this,c=null;Bb.on("keydown",function(b){var c=!0;return b&&a.modalVisibility()&&Eb.data().useKeyboardShortcuts()&&(b.ctrlKey&&qb.EventKeyCode.S===b.keyCode?(a.saveCommand(),c=!1):b.ctrlKey&&qb.EventKeyCode.Enter===b.keyCode?(a.sendCommand(),c=!1):qb.EventKeyCode.Esc===b.keyCode&&(a.tryToClosePopup(),c=!1)),c}),Bb.on("resize",function(){a.triggerForResize()}),this.dropboxEnabled()&&(c=document.createElement("script"),c.type="text/javascript",c.src="https://www.dropbox.com/static/api/1/dropins.js",b(c).attr("id","dropboxjs").attr("data-app-key",Eb.settingsGet("DropboxApiKey")),document.body.appendChild(c))},F.prototype.getAttachmentById=function(a){for(var b=this.attachments(),c=0,d=b.length;d>c;c++)if(b[c]&&a===b[c].id)return b[c];return null},F.prototype.initEditor=function(){if(this.composeEditorTextArea()&&this.composeEditorHtmlArea()&&this.composeEditorToolbar()){var a=this;this.oEditor=new k(this.composeEditorTextArea(),this.composeEditorHtmlArea(),this.composeEditorToolbar(),{onSwitch:function(b){b||a.removeLinkedAttachments()}}),this.oEditor.initLanguage(sb.i18n("EDITOR/TEXT_SWITCHER_CONFIRM"),sb.i18n("EDITOR/TEXT_SWITCHER_PLAINT_TEXT"),sb.i18n("EDITOR/TEXT_SWITCHER_RICH_FORMATTING"))}},F.prototype.initUploader=function(){if(this.composeUploaderButton()){var a={},b=sb.pInt(Eb.settingsGet("AttachmentLimit")),c=new g({action:Eb.link().upload(),name:"uploader",queueSize:2,multipleSizeLimit:50,disableFolderDragAndDrop:!1,clickElement:this.composeUploaderButton(),dragAndDropElement:this.composeUploaderDropPlace()});c?(c.on("onDragEnter",h.bind(function(){this.dragAndDropOver(!0)},this)).on("onDragLeave",h.bind(function(){this.dragAndDropOver(!1)},this)).on("onBodyDragEnter",h.bind(function(){this.dragAndDropVisible(!0)},this)).on("onBodyDragLeave",h.bind(function(){this.dragAndDropVisible(!1)},this)).on("onProgress",h.bind(function(b,c,d){var e=null;sb.isUnd(a[b])?(e=this.getAttachmentById(b),e&&(a[b]=e)):e=a[b],e&&e.progress(" - "+Math.floor(c/d*100)+"%")},this)).on("onSelect",h.bind(function(a,d){this.dragAndDropOver(!1);var e=this,f=sb.isUnd(d.FileName)?"":d.FileName.toString(),g=sb.isNormal(d.Size)?sb.pInt(d.Size):null,h=new x(a,f,g);return h.cancel=function(a){return function(){e.attachments.remove(function(b){return b&&b.id===a}),c&&c.cancel(a)}}(a),this.attachments.push(h),g>0&&b>0&&g>b?(h.error(sb.i18n("UPLOAD/ERROR_FILE_IS_TOO_BIG")),!1):!0},this)).on("onStart",h.bind(function(b){var c=null;sb.isUnd(a[b])?(c=this.getAttachmentById(b),c&&(a[b]=c)):c=a[b],c&&(c.waiting(!1),c.uploading(!0))},this)).on("onComplete",h.bind(function(b,c,d){var e="",f=null,g=null,h=this.getAttachmentById(b);g=c&&d&&d.Result&&d.Result.Attachment?d.Result.Attachment:null,f=d&&d.Result&&d.Result.ErrorCode?d.Result.ErrorCode:null,null!==f?e=sb.getUploadErrorDescByCode(f):g||(e=sb.i18n("UPLOAD/ERROR_UNKNOWN")),h&&(""!==e&&00&&d>0&&f>d?(e.uploading(!1),e.error(sb.i18n("UPLOAD/ERROR_FILE_IS_TOO_BIG")),!1):(Eb.remote().composeUploadExternals(function(a,b){var c=!1;e.uploading(!1),qb.StorageResultType.Success===a&&b&&b.Result&&b.Result[e.id]&&(c=!0,e.tempName(b.Result[e.id])),c||e.error(sb.getUploadErrorDescByCode(qb.UploadErrorCode.FileNoUploaded))},[a.link]),!0)},F.prototype.prepearMessageAttachments=function(a,b){if(a){var c=this,d=sb.isNonEmptyArray(a.attachments())?a.attachments():[],e=0,f=d.length,g=null,h=null,i=!1,j=function(a){return function(){c.attachments.remove(function(b){return b&&b.id===a})}};if(qb.ComposeType.ForwardAsAttachment===b)this.addMessageAsAttachment(a);else for(;f>e;e++){switch(h=d[e],i=!1,b){case qb.ComposeType.Reply:case qb.ComposeType.ReplyAll:i=h.isLinked;break;case qb.ComposeType.Forward:case qb.ComposeType.Draft:case qb.ComposeType.EditAsNew:i=!0}i=!0,i&&(g=new x(h.download,h.fileName,h.estimatedSize,h.isInline,h.isLinked,h.cid,h.contentLocation),g.fromMessage=!0,g.cancel=j(h.download),g.waiting(!1).uploading(!0),this.attachments.push(g))}}},F.prototype.removeLinkedAttachments=function(){this.attachments.remove(function(a){return a&&a.isLinked})},F.prototype.setMessageAttachmentFailedDowbloadText=function(){h.each(this.attachments(),function(a){a&&a.fromMessage&&a.waiting(!1).uploading(!1).error(sb.getUploadErrorDescByCode(qb.UploadErrorCode.FileNoUploaded))},this)},F.prototype.isEmptyForm=function(a){a=sb.isUnd(a)?!0:!!a;var b=a?0===this.attachments().length:0===this.attachmentsInReady().length;return 0===this.to().length&&0===this.cc().length&&0===this.bcc().length&&0===this.subject().length&&b&&""===this.oEditor.getTextForRequest()},F.prototype.reset=function(){this.to(""),this.cc(""),this.bcc(""),this.replyTo(""),this.subject(""),this.requestReadReceipt(!1),this.aDraftInfo=null,this.sInReplyTo="",this.bFromDraft=!1,this.sReferences="",this.bReloadFolder=!1,this.sendError(!1),this.sendSuccessButSaveError(!1),this.savedError(!1),this.savedTime(0),this.savedOrSendingText(""),this.emptyToError(!1),this.showCcAndBcc(!1),this.attachments([]),this.dragAndDropOver(!1),this.dragAndDropVisible(!1),this.draftFolder(""),this.draftUid(""),this.sending(!1),this.saving(!1),this.oEditor&&this.oEditor.clear()},F.prototype.getAttachmentsDownloadsForUpload=function(){return h.map(h.filter(this.attachments(),function(a){return a&&""===a.tempName()}),function(a){return a.id})},F.prototype.triggerForResize=function(){this.resizer(!this.resizer())},sb.extendAsViewModel("PopupsContactsViewModel",G),G.prototype.setShareToNone=function(){this.viewScopeType(qb.ContactScopeType.Default)},G.prototype.setShareToAll=function(){this.viewScopeType(qb.ContactScopeType.ShareAll)},G.prototype.addNewProperty=function(a){var b=new v(a,"");b.focused(!0),this.viewProperties.push(b)},G.prototype.addNewEmail=function(){this.addNewProperty(qb.ContactPropertyType.EmailPersonal)},G.prototype.addNewPhone=function(){this.addNewProperty(qb.ContactPropertyType.MobilePersonal)},G.prototype.initUploader=function(){if(this.importUploaderButton()){var b=new g({action:Eb.link().uploadContacts(),name:"uploader",queueSize:1,multipleSizeLimit:1,disableFolderDragAndDrop:!0,disableDragAndDrop:!0,disableMultiple:!0,disableDocumentDropPrevent:!0,clickElement:this.importUploaderButton()});b&&b.on("onStart",h.bind(function(){this.contacts.importing(!0)},this)).on("onComplete",h.bind(function(b,c,d){this.contacts.importing(!1),this.reloadContactList(),b&&c&&d&&d.Result||a.alert(sb.i18n("CONTACTS/ERROR_IMPORT_FILE"))},this))}},G.prototype.removeCheckedOrSelectedContactsFromList=function(){var a=this,b=this.contacts,c=this.currentContact(),d=this.contacts().length,e=this.contactsCheckedOrSelected();0=d&&(this.bDropPageAfterDelete=!0),h.delay(function(){h.each(e,function(a){b.remove(a)})},500))},G.prototype.deleteSelectedContacts=function(){00?d:0),b.contactsCount(d),b.contacts(e),b.viewClearSearch(""!==b.search()),b.contacts.loading(!1),""!==b.viewID()&&!b.currentContact()&&b.contacts.setSelectedByUid&&b.contacts.setSelectedByUid(""+b.viewID())},c,pb.Defaults.ContactsPerPage,this.search())},G.prototype.onBuild=function(a){this.oContentVisible=b(".b-list-content",a),this.oContentScrollable=b(".content",this.oContentVisible),this.selector.init(this.oContentVisible,this.oContentScrollable);var d=this;c.computed(function(){var a=this.modalVisibility(),b=Eb.data().useKeyboardShortcuts();this.selector.useKeyboard(a&&b)},this).extend({notify:"always"}),a.on("click",".e-pagenator .e-page",function(){var a=c.dataFor(this);a&&(d.contactsPage(sb.pInt(a.value)),d.reloadContactList())}),Bb.on("keydown",function(a){var b=!0;return a&&d.modalVisibility()&&(qb.EventKeyCode.Esc===a.keyCode?(sb.delegateRun(d,"closeCommand"),b=!1):a.ctrlKey&&qb.EventKeyCode.S===a.keyCode&&(d.saveCommand(),b=!1)),b}),this.initUploader()},G.prototype.onShow=function(){xb.routeOff(),this.reloadContactList(!0)},G.prototype.onHide=function(){xb.routeOn(),this.currentContact(null),this.emptySelection(!0),this.search(""),h.each(this.contacts(),function(a){a.checked(!1)})},sb.extendAsViewModel("PopupsAdvancedSearchViewModel",H),H.prototype.buildSearchStringValue=function(a){return-10&&g.messageCountUnread(0<=g.messageCountUnread()-e?g.messageCountUnread()-e:0)),i&&(i.messageCountAll(i.messageCountAll()+b.length),e>0&&i.messageCountUnread(i.messageCountUnread()+e)),0'+a.openpgp.decryptMessage(g,e)+""))}catch(i){}}])},T.prototype.onBuild=function(a){var d=this,e=Eb.data();Cb.on("keydown",function(a){var b=!0,c=a?a.keyCode:0;return c>0&&qb.EventKeyCode.Esc===c&&d.viewModelVisibility()&&e.useKeyboardShortcuts()&&!sb.inFocus()&&e.message()&&(d.fullScreenMode(!1),qb.Layout.NoPreview===e.layout()&&Eb.historyBack(),b=!1),b}),b(".attachmentsPlace",a).magnificPopup({delegate:".magnificPopupImage:visible",type:"image",gallery:{enabled:!0,preload:[1,1],navigateByImgClick:!0},callbacks:{open:function(){e.useKeyboardShortcuts(!1)},close:function(){e.useKeyboardShortcuts(!0)}},mainClass:"mfp-fade",removalDelay:400}),a.on("click",".attachmentsPlace .attachmentPreview",function(a){a&&a.stopPropagation&&a.stopPropagation()}).on("click",".attachmentsPlace .attachmentItem",function(){var a=c.dataFor(this);a&&a.download&&Eb.download(a.linkDownload())}),this.oMessageScrollerDom=a.find(".messageItem .content"),this.oMessageScrollerDom=this.oMessageScrollerDom&&this.oMessageScrollerDom[0]?this.oMessageScrollerDom:null},T.prototype.isDraftFolder=function(){return Eb.data().message()&&Eb.data().draftFolder()===Eb.data().message().folderFullNameRaw},T.prototype.isSentFolder=function(){return Eb.data().message()&&Eb.data().sentFolder()===Eb.data().message().folderFullNameRaw},T.prototype.isDraftOrSentFolder=function(){return this.isDraftFolder()||this.isSentFolder()},T.prototype.composeClick=function(){xb.showScreenPopup(F)},T.prototype.editMessage=function(){Eb.data().message()&&xb.showScreenPopup(F,[qb.ComposeType.Draft,Eb.data().message()])},T.prototype.scrollMessageToTop=function(){this.oMessageScrollerDom&&this.oMessageScrollerDom.scrollTop(0)},T.prototype.showImages=function(a){a&&a.showExternalImages&&a.showExternalImages(!0)},T.prototype.readReceipt=function(a){a&&""!==a.readReceipt()&&(Eb.remote().sendReadReceiptMessage(sb.emptyFunction,a.folderFullNameRaw,a.uid,a.readReceipt(),sb.i18n("READ_RECEIPT/SUBJECT",{SUBJECT:a.subject()}),sb.i18n("READ_RECEIPT/BODY",{"READ-RECEIPT":a.readReceipt()})),a.isReadReceipt(!0),Eb.cache().storeMessageFlagsToCache(a),Eb.reloadFlagsCurrentMessageListAndMessageFromCache())},sb.extendAsViewModel("SettingsMenuViewModel",U),U.prototype.link=function(a){return Eb.link().settings(a)},U.prototype.backToMailBoxClick=function(){xb.setHash(Eb.link().inbox())},sb.extendAsViewModel("SettingsPaneViewModel",V),V.prototype.onShow=function(){Eb.data().message(null)},V.prototype.backToMailBoxClick=function(){xb.setHash(Eb.link().inbox())},sb.addSettingsViewModel(W,"SettingsGeneral","SETTINGS_LABELS/LABEL_GENERAL_NAME","general",!0),W.prototype.toggleLayout=function(){this.layout(qb.Layout.NoPreview===this.layout()?qb.Layout.SidePreview:qb.Layout.NoPreview)},W.prototype.onBuild=function(){var a=this;h.delay(function(){var c=Eb.data(),d=sb.settingsSaveHelperSimpleFunction(a.mppTrigger,a);c.language.subscribe(function(c){a.languageTrigger(qb.SaveSettingsStep.Animate),b.ajax({url:Eb.link().langLink(c),dataType:"script",cache:!0}).done(function(){sb.i18nToDoc(),a.languageTrigger(qb.SaveSettingsStep.TrueResult)}).fail(function(){a.languageTrigger(qb.SaveSettingsStep.FalseResult)}).always(function(){h.delay(function(){a.languageTrigger(qb.SaveSettingsStep.Idle)},1e3)}),Eb.remote().saveSettings(sb.emptyFunction,{Language:c})}),c.editorDefaultType.subscribe(function(a){Eb.remote().saveSettings(sb.emptyFunction,{EditorDefaultType:a})}),c.messagesPerPage.subscribe(function(a){Eb.remote().saveSettings(d,{MPP:a})}),c.showImages.subscribe(function(a){Eb.remote().saveSettings(sb.emptyFunction,{ShowImages:a?"1":"0"})}),c.interfaceAnimation.subscribe(function(a){Eb.remote().saveSettings(sb.emptyFunction,{InterfaceAnimation:a})}),c.useDesktopNotifications.subscribe(function(a){sb.timeOutAction("SaveDesktopNotifications",function(){Eb.remote().saveSettings(sb.emptyFunction,{DesktopNotifications:a?"1":"0"})},3e3)}),c.replySameFolder.subscribe(function(a){sb.timeOutAction("SaveReplySameFolder",function(){Eb.remote().saveSettings(sb.emptyFunction,{ReplySameFolder:a?"1":"0"})},3e3)}),c.useThreads.subscribe(function(a){c.messageList([]),Eb.remote().saveSettings(sb.emptyFunction,{UseThreads:a?"1":"0"})}),c.layout.subscribe(function(a){c.messageList([]),Eb.remote().saveSettings(sb.emptyFunction,{Layout:a})}),c.useCheckboxesInList.subscribe(function(a){Eb.remote().saveSettings(sb.emptyFunction,{UseCheckboxesInList:a?"1":"0"})})},50)},W.prototype.onShow=function(){Eb.data().desktopNotifications.valueHasMutated()},W.prototype.selectLanguage=function(){xb.showScreenPopup(K)},sb.addSettingsViewModel(X,"SettingsContacts","SETTINGS_LABELS/LABEL_CONTACTS_NAME","contacts"),X.prototype.toggleShowPassword=function(){this.showPassword(!this.showPassword())},X.prototype.onBuild=function(){Eb.data().contactsAutosave.subscribe(function(a){Eb.remote().saveSettings(sb.emptyFunction,{ContactsAutosave:a?"1":"0"})})},X.prototype.onShow=function(){this.showPassword(!1)},sb.addSettingsViewModel(Y,"SettingsAccounts","SETTINGS_LABELS/LABEL_ACCOUNTS_NAME","accounts"),Y.prototype.addNewAccount=function(){xb.showScreenPopup(I)},Y.prototype.deleteAccount=function(a){if(a&&a.deleteAccess()){this.accountForDeletion(null);var b=function(b){return a===b};a&&(this.accounts.remove(b),Eb.remote().accountDelete(function(){Eb.accountsAndIdentities()},a.email))}},sb.addSettingsViewModel(Z,"SettingsIdentity","SETTINGS_LABELS/LABEL_IDENTITY_NAME","identity"),Z.prototype.onBuild=function(){var a=this;h.delay(function(){var b=Eb.data(),c=sb.settingsSaveHelperSimpleFunction(a.displayNameTrigger,a),d=sb.settingsSaveHelperSimpleFunction(a.replyTrigger,a),e=sb.settingsSaveHelperSimpleFunction(a.signatureTrigger,a);b.displayName.subscribe(function(a){Eb.remote().saveSettings(c,{DisplayName:a})}),b.replyTo.subscribe(function(a){Eb.remote().saveSettings(d,{ReplyTo:a})}),b.signature.subscribe(function(a){Eb.remote().saveSettings(e,{Signature:a})}),b.signatureToAll.subscribe(function(a){Eb.remote().saveSettings(null,{SignatureToAll:a?"1":"0"})})},50)},sb.addSettingsViewModel($,"SettingsIdentities","SETTINGS_LABELS/LABEL_IDENTITIES_NAME","identities"),$.prototype.addNewIdentity=function(){xb.showScreenPopup(J)},$.prototype.editIdentity=function(a){xb.showScreenPopup(J,[a])},$.prototype.deleteIdentity=function(a){if(a&&a.deleteAccess()){this.identityForDeletion(null);var b=function(b){return a===b};a&&(this.identities.remove(b),Eb.remote().identityDelete(function(){Eb.accountsAndIdentities()},a.id))}},$.prototype.onBuild=function(a){var b=this;a.on("click",".identity-item .e-action",function(){var a=c.dataFor(this);a&&b.editIdentity(a)}),h.delay(function(){var a=Eb.data(),c=sb.settingsSaveHelperSimpleFunction(b.displayNameTrigger,b),d=sb.settingsSaveHelperSimpleFunction(b.replyTrigger,b),e=sb.settingsSaveHelperSimpleFunction(b.signatureTrigger,b);a.displayName.subscribe(function(a){Eb.remote().saveSettings(c,{DisplayName:a})}),a.replyTo.subscribe(function(a){Eb.remote().saveSettings(d,{ReplyTo:a})}),a.signature.subscribe(function(a){Eb.remote().saveSettings(e,{Signature:a})}),a.signatureToAll.subscribe(function(a){Eb.remote().saveSettings(null,{SignatureToAll:a?"1":"0"})})},50)},sb.addSettingsViewModel(_,"SettingsSocial","SETTINGS_LABELS/LABEL_SOCIAL_NAME","social"),sb.addSettingsViewModel(ab,"SettingsChangePassword","SETTINGS_LABELS/LABEL_CHANGE_PASSWORD_NAME","change-password"),ab.prototype.onHide=function(){this.changeProcess(!1),this.currentPassword(""),this.newPassword("")},ab.prototype.onChangePasswordResponse=function(a,b){this.changeProcess(!1),qb.StorageResultType.Success===a&&b&&b.Result?(this.currentPassword(""),this.newPassword(""),this.passwordUpdateSuccess(!0)):this.passwordUpdateError(!0)},sb.addSettingsViewModel(bb,"SettingsFolders","SETTINGS_LABELS/LABEL_FOLDERS_NAME","folders"),bb.prototype.folderEditOnEnter=function(a){var b=a?sb.trim(a.nameForEdit()):"";""!==b&&a.name()!==b&&(Eb.local().set(qb.ClientSideKeyName.FoldersLashHash,""),Eb.data().foldersRenaming(!0),Eb.remote().folderRename(function(a,b){Eb.data().foldersRenaming(!1),qb.StorageResultType.Success===a&&b&&b.Result||Eb.data().foldersListError(b&&b.ErrorCode?sb.getNotification(b.ErrorCode):sb.i18n("NOTIFICATIONS/CANT_RENAME_FOLDER")),Eb.folders()},a.fullNameRaw,b),Eb.cache().removeFolderFromCacheList(a.fullNameRaw),a.name(b)),a.edited(!1)},bb.prototype.folderEditOnEsc=function(a){a&&a.edited(!1)},bb.prototype.onShow=function(){Eb.data().foldersListError("")},bb.prototype.createFolder=function(){xb.showScreenPopup(D)},bb.prototype.systemFolder=function(){xb.showScreenPopup(E)},bb.prototype.deleteFolder=function(a){if(a&&a.canBeDeleted()&&a.deleteAccess()&&0===a.privateMessageCountAll()){this.folderForDeletion(null);var b=function(c){return a===c?!0:(c.subFolders.remove(b),!1)};a&&(Eb.local().set(qb.ClientSideKeyName.FoldersLashHash,""),Eb.data().folderList.remove(b),Eb.data().foldersDeleting(!0),Eb.remote().folderDelete(function(a,b){Eb.data().foldersDeleting(!1),qb.StorageResultType.Success===a&&b&&b.Result||Eb.data().foldersListError(b&&b.ErrorCode?sb.getNotification(b.ErrorCode):sb.i18n("NOTIFICATIONS/CANT_DELETE_FOLDER")),Eb.folders()},a.fullNameRaw),Eb.cache().removeFolderFromCacheList(a.fullNameRaw))}else 01048576?(a.alert(sb.i18n("SETTINGS_THEMES/ERROR_FILE_IS_TOO_BIG")),!1):!0},this)).on("onStart",h.bind(function(){this.customThemeUploaderProgress(!0)},this)).on("onComplete",h.bind(function(b,c,d){c&&d&&d.Result?this.customThemeImg(d.Result):a.alert(d&&d.ErrorCode?sb.getUploadErrorDescByCode(d.ErrorCode):sb.getUploadErrorDescByCode(qb.UploadErrorCode.Unknown)),this.customThemeUploaderProgress(!1)},this)),!!b}return!1},db.prototype.populateDataOnStart=function(){var a=sb.pInt(Eb.settingsGet("Layout")),b=Eb.settingsGet("Languages"),c=Eb.settingsGet("Themes");sb.isArray(b)&&this.languages(b),sb.isArray(c)&&this.themes(c),this.mainLanguage(Eb.settingsGet("Language")),this.mainTheme(Eb.settingsGet("Theme")),this.allowCustomTheme(!!Eb.settingsGet("AllowCustomTheme")),this.allowAdditionalAccounts(!!Eb.settingsGet("AllowAdditionalAccounts")),this.allowIdentities(!!Eb.settingsGet("AllowIdentities")),this.determineUserLanguage(!!Eb.settingsGet("DetermineUserLanguage")),this.allowThemes(!!Eb.settingsGet("AllowThemes")),this.allowCustomLogin(!!Eb.settingsGet("AllowCustomLogin")),this.allowLanguagesOnLogin(!!Eb.settingsGet("AllowLanguagesOnLogin")),this.allowLanguagesOnSettings(!!Eb.settingsGet("AllowLanguagesOnSettings")),this.editorDefaultType(Eb.settingsGet("EditorDefaultType")),this.showImages(!!Eb.settingsGet("ShowImages")),this.contactsAutosave(!!Eb.settingsGet("ContactsAutosave")),this.interfaceAnimation(Eb.settingsGet("InterfaceAnimation")),this.mainMessagesPerPage(Eb.settingsGet("MPP")),this.desktopNotifications(!!Eb.settingsGet("DesktopNotifications")),this.useThreads(!!Eb.settingsGet("UseThreads")),this.replySameFolder(!!Eb.settingsGet("ReplySameFolder")),this.useCheckboxesInList(!!Eb.settingsGet("UseCheckboxesInList")),this.layout(qb.Layout.SidePreview),-10&&g.messageCountUnread(0<=g.messageCountUnread()-e?g.messageCountUnread()-e:0)),i&&(i.messageCountAll(i.messageCountAll()+b.length),e>0&&i.messageCountUnread(i.messageCountUnread()+e)),0'+a.openpgp.decryptMessage(g,e)+""))}catch(i){}}])},T.prototype.onBuild=function(a){var d=this,e=Eb.data();Cb.on("keydown",function(a){var b=!0,c=a?a.keyCode:0;return c>0&&qb.EventKeyCode.Esc===c&&d.viewModelVisibility()&&e.useKeyboardShortcuts()&&!sb.inFocus()&&e.message()&&(d.fullScreenMode(!1),qb.Layout.NoPreview===e.layout()&&Eb.historyBack(),b=!1),b}),b(".attachmentsPlace",a).magnificPopup({delegate:".magnificPopupImage:visible",type:"image",gallery:{enabled:!0,preload:[1,1],navigateByImgClick:!0},callbacks:{open:function(){e.useKeyboardShortcuts(!1)},close:function(){e.useKeyboardShortcuts(!0)}},mainClass:"mfp-fade",removalDelay:400}),a.on("click",".attachmentsPlace .attachmentPreview",function(a){a&&a.stopPropagation&&a.stopPropagation()}).on("click",".attachmentsPlace .attachmentItem",function(){var a=c.dataFor(this);a&&a.download&&Eb.download(a.linkDownload())}),this.oMessageScrollerDom=a.find(".messageItem .content"),this.oMessageScrollerDom=this.oMessageScrollerDom&&this.oMessageScrollerDom[0]?this.oMessageScrollerDom:null},T.prototype.isDraftFolder=function(){return Eb.data().message()&&Eb.data().draftFolder()===Eb.data().message().folderFullNameRaw},T.prototype.isSentFolder=function(){return Eb.data().message()&&Eb.data().sentFolder()===Eb.data().message().folderFullNameRaw},T.prototype.isDraftOrSentFolder=function(){return this.isDraftFolder()||this.isSentFolder()},T.prototype.composeClick=function(){xb.showScreenPopup(F)},T.prototype.editMessage=function(){Eb.data().message()&&xb.showScreenPopup(F,[qb.ComposeType.Draft,Eb.data().message()])},T.prototype.scrollMessageToTop=function(){this.oMessageScrollerDom&&this.oMessageScrollerDom.scrollTop(0)},T.prototype.showImages=function(a){a&&a.showExternalImages&&a.showExternalImages(!0)},T.prototype.readReceipt=function(a){a&&""!==a.readReceipt()&&(Eb.remote().sendReadReceiptMessage(sb.emptyFunction,a.folderFullNameRaw,a.uid,a.readReceipt(),sb.i18n("READ_RECEIPT/SUBJECT",{SUBJECT:a.subject()}),sb.i18n("READ_RECEIPT/BODY",{"READ-RECEIPT":a.readReceipt()})),a.isReadReceipt(!0),Eb.cache().storeMessageFlagsToCache(a),Eb.reloadFlagsCurrentMessageListAndMessageFromCache())},sb.extendAsViewModel("SettingsMenuViewModel",U),U.prototype.link=function(a){return Eb.link().settings(a)},U.prototype.backToMailBoxClick=function(){xb.setHash(Eb.link().inbox())},sb.extendAsViewModel("SettingsPaneViewModel",V),V.prototype.onShow=function(){Eb.data().message(null)},V.prototype.backToMailBoxClick=function(){xb.setHash(Eb.link().inbox())},sb.addSettingsViewModel(W,"SettingsGeneral","SETTINGS_LABELS/LABEL_GENERAL_NAME","general",!0),W.prototype.toggleLayout=function(){this.layout(qb.Layout.NoPreview===this.layout()?qb.Layout.SidePreview:qb.Layout.NoPreview)},W.prototype.onBuild=function(){var a=this;h.delay(function(){var c=Eb.data(),d=sb.settingsSaveHelperSimpleFunction(a.mppTrigger,a);c.language.subscribe(function(c){a.languageTrigger(qb.SaveSettingsStep.Animate),b.ajax({url:Eb.link().langLink(c),dataType:"script",cache:!0}).done(function(){sb.i18nToDoc(),a.languageTrigger(qb.SaveSettingsStep.TrueResult)}).fail(function(){a.languageTrigger(qb.SaveSettingsStep.FalseResult)}).always(function(){h.delay(function(){a.languageTrigger(qb.SaveSettingsStep.Idle)},1e3)}),Eb.remote().saveSettings(sb.emptyFunction,{Language:c})}),c.editorDefaultType.subscribe(function(a){Eb.remote().saveSettings(sb.emptyFunction,{EditorDefaultType:a})}),c.messagesPerPage.subscribe(function(a){Eb.remote().saveSettings(d,{MPP:a})}),c.showImages.subscribe(function(a){Eb.remote().saveSettings(sb.emptyFunction,{ShowImages:a?"1":"0"})}),c.interfaceAnimation.subscribe(function(a){Eb.remote().saveSettings(sb.emptyFunction,{InterfaceAnimation:a})}),c.useDesktopNotifications.subscribe(function(a){sb.timeOutAction("SaveDesktopNotifications",function(){Eb.remote().saveSettings(sb.emptyFunction,{DesktopNotifications:a?"1":"0"})},3e3)}),c.replySameFolder.subscribe(function(a){sb.timeOutAction("SaveReplySameFolder",function(){Eb.remote().saveSettings(sb.emptyFunction,{ReplySameFolder:a?"1":"0"})},3e3)}),c.useThreads.subscribe(function(a){c.messageList([]),Eb.remote().saveSettings(sb.emptyFunction,{UseThreads:a?"1":"0"})}),c.layout.subscribe(function(a){c.messageList([]),Eb.remote().saveSettings(sb.emptyFunction,{Layout:a})}),c.useCheckboxesInList.subscribe(function(a){Eb.remote().saveSettings(sb.emptyFunction,{UseCheckboxesInList:a?"1":"0"})})},50)},W.prototype.onShow=function(){Eb.data().desktopNotifications.valueHasMutated()},W.prototype.selectLanguage=function(){xb.showScreenPopup(K)},sb.addSettingsViewModel(X,"SettingsContacts","SETTINGS_LABELS/LABEL_CONTACTS_NAME","contacts"),X.prototype.toggleShowPassword=function(){this.showPassword(!this.showPassword())},X.prototype.onBuild=function(){Eb.data().contactsAutosave.subscribe(function(a){Eb.remote().saveSettings(sb.emptyFunction,{ContactsAutosave:a?"1":"0"})})},X.prototype.onShow=function(){this.showPassword(!1)},sb.addSettingsViewModel(Y,"SettingsAccounts","SETTINGS_LABELS/LABEL_ACCOUNTS_NAME","accounts"),Y.prototype.addNewAccount=function(){xb.showScreenPopup(I)},Y.prototype.deleteAccount=function(b){if(b&&b.deleteAccess()){this.accountForDeletion(null);var c=function(a){return b===a};b&&(this.accounts.remove(c),Eb.remote().accountDelete(function(b,c){qb.StorageResultType.Success===b&&c&&c.Result&&c.Reload?(xb.routeOff(),xb.setHash(Eb.link().root(),!0),xb.routeOff(),h.defer(function(){a.location.reload()})):Eb.accountsAndIdentities()},b.email))}},sb.addSettingsViewModel(Z,"SettingsIdentity","SETTINGS_LABELS/LABEL_IDENTITY_NAME","identity"),Z.prototype.onBuild=function(){var a=this;h.delay(function(){var b=Eb.data(),c=sb.settingsSaveHelperSimpleFunction(a.displayNameTrigger,a),d=sb.settingsSaveHelperSimpleFunction(a.replyTrigger,a),e=sb.settingsSaveHelperSimpleFunction(a.signatureTrigger,a);b.displayName.subscribe(function(a){Eb.remote().saveSettings(c,{DisplayName:a})}),b.replyTo.subscribe(function(a){Eb.remote().saveSettings(d,{ReplyTo:a})}),b.signature.subscribe(function(a){Eb.remote().saveSettings(e,{Signature:a})}),b.signatureToAll.subscribe(function(a){Eb.remote().saveSettings(null,{SignatureToAll:a?"1":"0"})})},50)},sb.addSettingsViewModel($,"SettingsIdentities","SETTINGS_LABELS/LABEL_IDENTITIES_NAME","identities"),$.prototype.addNewIdentity=function(){xb.showScreenPopup(J)},$.prototype.editIdentity=function(a){xb.showScreenPopup(J,[a])},$.prototype.deleteIdentity=function(a){if(a&&a.deleteAccess()){this.identityForDeletion(null);var b=function(b){return a===b};a&&(this.identities.remove(b),Eb.remote().identityDelete(function(){Eb.accountsAndIdentities()},a.id))}},$.prototype.onBuild=function(a){var b=this;a.on("click",".identity-item .e-action",function(){var a=c.dataFor(this);a&&b.editIdentity(a)}),h.delay(function(){var a=Eb.data(),c=sb.settingsSaveHelperSimpleFunction(b.displayNameTrigger,b),d=sb.settingsSaveHelperSimpleFunction(b.replyTrigger,b),e=sb.settingsSaveHelperSimpleFunction(b.signatureTrigger,b);a.displayName.subscribe(function(a){Eb.remote().saveSettings(c,{DisplayName:a})}),a.replyTo.subscribe(function(a){Eb.remote().saveSettings(d,{ReplyTo:a})}),a.signature.subscribe(function(a){Eb.remote().saveSettings(e,{Signature:a})}),a.signatureToAll.subscribe(function(a){Eb.remote().saveSettings(null,{SignatureToAll:a?"1":"0"})})},50)},sb.addSettingsViewModel(_,"SettingsSocial","SETTINGS_LABELS/LABEL_SOCIAL_NAME","social"),sb.addSettingsViewModel(ab,"SettingsChangePassword","SETTINGS_LABELS/LABEL_CHANGE_PASSWORD_NAME","change-password"),ab.prototype.onHide=function(){this.changeProcess(!1),this.currentPassword(""),this.newPassword("")},ab.prototype.onChangePasswordResponse=function(a,b){this.changeProcess(!1),qb.StorageResultType.Success===a&&b&&b.Result?(this.currentPassword(""),this.newPassword(""),this.passwordUpdateSuccess(!0)):this.passwordUpdateError(!0)},sb.addSettingsViewModel(bb,"SettingsFolders","SETTINGS_LABELS/LABEL_FOLDERS_NAME","folders"),bb.prototype.folderEditOnEnter=function(a){var b=a?sb.trim(a.nameForEdit()):"";""!==b&&a.name()!==b&&(Eb.local().set(qb.ClientSideKeyName.FoldersLashHash,""),Eb.data().foldersRenaming(!0),Eb.remote().folderRename(function(a,b){Eb.data().foldersRenaming(!1),qb.StorageResultType.Success===a&&b&&b.Result||Eb.data().foldersListError(b&&b.ErrorCode?sb.getNotification(b.ErrorCode):sb.i18n("NOTIFICATIONS/CANT_RENAME_FOLDER")),Eb.folders()},a.fullNameRaw,b),Eb.cache().removeFolderFromCacheList(a.fullNameRaw),a.name(b)),a.edited(!1)},bb.prototype.folderEditOnEsc=function(a){a&&a.edited(!1)},bb.prototype.onShow=function(){Eb.data().foldersListError("")},bb.prototype.createFolder=function(){xb.showScreenPopup(D)},bb.prototype.systemFolder=function(){xb.showScreenPopup(E)},bb.prototype.deleteFolder=function(a){if(a&&a.canBeDeleted()&&a.deleteAccess()&&0===a.privateMessageCountAll()){this.folderForDeletion(null);var b=function(c){return a===c?!0:(c.subFolders.remove(b),!1)};a&&(Eb.local().set(qb.ClientSideKeyName.FoldersLashHash,""),Eb.data().folderList.remove(b),Eb.data().foldersDeleting(!0),Eb.remote().folderDelete(function(a,b){Eb.data().foldersDeleting(!1),qb.StorageResultType.Success===a&&b&&b.Result||Eb.data().foldersListError(b&&b.ErrorCode?sb.getNotification(b.ErrorCode):sb.i18n("NOTIFICATIONS/CANT_DELETE_FOLDER")),Eb.folders()},a.fullNameRaw),Eb.cache().removeFolderFromCacheList(a.fullNameRaw))}else 01048576?(a.alert(sb.i18n("SETTINGS_THEMES/ERROR_FILE_IS_TOO_BIG")),!1):!0},this)).on("onStart",h.bind(function(){this.customThemeUploaderProgress(!0)},this)).on("onComplete",h.bind(function(b,c,d){c&&d&&d.Result?this.customThemeImg(d.Result):a.alert(d&&d.ErrorCode?sb.getUploadErrorDescByCode(d.ErrorCode):sb.getUploadErrorDescByCode(qb.UploadErrorCode.Unknown)),this.customThemeUploaderProgress(!1)},this)),!!b}return!1},db.prototype.populateDataOnStart=function(){var a=sb.pInt(Eb.settingsGet("Layout")),b=Eb.settingsGet("Languages"),c=Eb.settingsGet("Themes");sb.isArray(b)&&this.languages(b),sb.isArray(c)&&this.themes(c),this.mainLanguage(Eb.settingsGet("Language")),this.mainTheme(Eb.settingsGet("Theme")),this.allowCustomTheme(!!Eb.settingsGet("AllowCustomTheme")),this.allowAdditionalAccounts(!!Eb.settingsGet("AllowAdditionalAccounts")),this.allowIdentities(!!Eb.settingsGet("AllowIdentities")),this.determineUserLanguage(!!Eb.settingsGet("DetermineUserLanguage")),this.allowThemes(!!Eb.settingsGet("AllowThemes")),this.allowCustomLogin(!!Eb.settingsGet("AllowCustomLogin")),this.allowLanguagesOnLogin(!!Eb.settingsGet("AllowLanguagesOnLogin")),this.allowLanguagesOnSettings(!!Eb.settingsGet("AllowLanguagesOnSettings")),this.editorDefaultType(Eb.settingsGet("EditorDefaultType")),this.showImages(!!Eb.settingsGet("ShowImages")),this.contactsAutosave(!!Eb.settingsGet("ContactsAutosave")),this.interfaceAnimation(Eb.settingsGet("InterfaceAnimation")),this.mainMessagesPerPage(Eb.settingsGet("MPP")),this.desktopNotifications(!!Eb.settingsGet("DesktopNotifications")),this.useThreads(!!Eb.settingsGet("UseThreads")),this.replySameFolder(!!Eb.settingsGet("ReplySameFolder")),this.useCheckboxesInList(!!Eb.settingsGet("UseCheckboxesInList")),this.layout(qb.Layout.SidePreview),-10&&(c=this.messagesBodiesDom(),c&&(c.find(".rl-cache-class").each(function(){var c=b(this);d>c.data("rl-cache-count")&&(c.addClass("rl-cache-purge"),a++)}),a>0&&h.delay(function(){c.find(".rl-cache-purge").remove()},300)))},eb.prototype.populateDataOnStart=function(){db.prototype.populateDataOnStart.call(this),this.accountEmail(Eb.settingsGet("Email")),this.accountIncLogin(Eb.settingsGet("IncLogin")),this.accountOutLogin(Eb.settingsGet("OutLogin")),this.projectHash(Eb.settingsGet("ProjectHash")),this.displayName(Eb.settingsGet("DisplayName")),this.replyTo(Eb.settingsGet("ReplyTo")),this.signature(Eb.settingsGet("Signature")),this.signatureToAll(!!Eb.settingsGet("SignatureToAll")),this.lastFoldersHash=Eb.local().get(qb.ClientSideKeyName.FoldersLashHash)||"",this.remoteSuggestions=!!Eb.settingsGet("RemoteSuggestions"),this.devEmail=Eb.settingsGet("DevEmail"),this.devLogin=Eb.settingsGet("DevLogin"),this.devPassword=Eb.settingsGet("DevPassword")},eb.prototype.initUidNextAndNewMessages=function(b,c,d){if("INBOX"===b&&sb.isNormal(c)&&""!==c){if(sb.isArray(d)&&03)i(Eb.link().notificationMailIcon(),Eb.data().accountEmail(),sb.i18n("MESSAGE_LIST/NEW_MESSAGE_NOTIFICATION",{COUNT:g}));else for(;g>f;f++)i(Eb.link().notificationMailIcon(),y.emailsToLine(y.initEmailsFromJson(d[f].From),!1),d[f].Subject)}Eb.cache().setFolderUidNext(b,c)}},eb.prototype.folderResponseParseRec=function(a,b){var c=0,d=0,e=null,f=null,g="",h=[],i=[];for(c=0,d=b.length;d>c;c++)e=b[c],e&&(g=e.FullNameRaw,f=Eb.cache().getFolderFromCacheList(g),f||(f=z.newInstanceFromJson(e),f&&(Eb.cache().setFolderToCacheList(g,f),Eb.cache().setFolderFullNameRaw(f.fullNameHash,g),f.isGmailFolder=pb.Values.GmailFolderName.toLowerCase()===g.toLowerCase(),""!==a&&a===f.fullNameRaw+f.delimiter&&(f.isNamespaceFolder=!0),(f.isNamespaceFolder||f.isGmailFolder)&&(f.isUnpaddigFolder=!0))),f&&(f.collapsed(!sb.isFolderExpanded(f.fullNameHash)),e.Extended&&(e.Extended.Hash&&Eb.cache().setFolderHash(f.fullNameRaw,e.Extended.Hash),sb.isNormal(e.Extended.MessageCount)&&f.messageCountAll(e.Extended.MessageCount),sb.isNormal(e.Extended.MessageUnseenCount)&&f.messageCountUnread(e.Extended.MessageUnseenCount)),h=e.SubFolders,h&&"Collection/FolderCollection"===h["@Object"]&&h["@Collection"]&&sb.isArray(h["@Collection"])&&f.subFolders(this.folderResponseParseRec(a,h["@Collection"])),i.push(f)));return i},eb.prototype.setFolders=function(a){var b=[],c=!1,d=Eb.data(),e=function(a){return""===a||pb.Values.UnuseOptionValue===a||null!==Eb.cache().getFolderFromCacheList(a)?a:""};a&&a.Result&&"Collection/FolderCollection"===a.Result["@Object"]&&a.Result["@Collection"]&&sb.isArray(a.Result["@Collection"])&&(sb.isUnd(a.Result.Namespace)||(d.namespace=a.Result.Namespace),this.threading(!!Eb.settingsGet("UseImapThread")&&a.Result.IsThreadsSupported&&!0),b=this.folderResponseParseRec(d.namespace,a.Result["@Collection"]),d.folderList(b),a.Result.SystemFolders&&""==""+Eb.settingsGet("SentFolder")+Eb.settingsGet("DraftFolder")+Eb.settingsGet("SpamFolder")+Eb.settingsGet("TrashFolder")+Eb.settingsGet("NullFolder")&&(Eb.settingsSet("SentFolder",a.Result.SystemFolders[2]||null),Eb.settingsSet("DraftFolder",a.Result.SystemFolders[3]||null),Eb.settingsSet("SpamFolder",a.Result.SystemFolders[4]||null),Eb.settingsSet("TrashFolder",a.Result.SystemFolders[5]||null),c=!0),d.sentFolder(e(Eb.settingsGet("SentFolder"))),d.draftFolder(e(Eb.settingsGet("DraftFolder"))),d.spamFolder(e(Eb.settingsGet("SpamFolder"))),d.trashFolder(e(Eb.settingsGet("TrashFolder"))),c&&Eb.remote().saveSystemFolders(sb.emptyFunction,{SentFolder:d.sentFolder(),DraftFolder:d.draftFolder(),SpamFolder:d.spamFolder(),TrashFolder:d.trashFolder(),NullFolder:"NullFolder"}),Eb.local().set(qb.ClientSideKeyName.FoldersLashHash,a.Result.FoldersHash))},eb.prototype.hideMessageBodies=function(){var a=this.messagesBodiesDom();a&&a.find(".b-text-part").hide()},eb.prototype.getNextFolderNames=function(a){a=sb.isUnd(a)?!1:!!a;var b=[],c=10,d=f().unix(),e=d-300,g=[],i=function(b){h.each(b,function(b){b&&"INBOX"!==b.fullNameRaw&&b.selectable&&b.existen&&e>b.interval&&(!a||b.subScribed())&&g.push([b.interval,b.fullNameRaw]),b&&0b[0]?1:0}),h.find(g,function(a){var e=Eb.cache().getFolderFromCacheList(a[1]);return e&&(e.interval=d,b.push(a[1])),c<=b.length}),h.uniq(b)},eb.prototype.setMessage=function(c,d){var e=!1,f=!1,g=!1,h=null,i=null,j="",k="",l=!1,m=!1,n=null,o=this.messagesBodiesDom(),p=this.message();if(c&&p&&c.Result&&"Object/Message"===c.Result["@Object"]&&p.folderFullNameRaw===c.Result.Folder&&p.uid===c.Result.Uid){if(this.messageError(""),p.initUpdateByMessageJson(c.Result),Eb.cache().addRequestedMessage(p.folderFullNameRaw,p.uid),d||p.initFlagsByJson(c.Result),o=o&&o[0]?o:null){if(j="rl-"+p.requestHash.replace(/[^a-zA-Z0-9]/g,""),i=o.find("#"+j),i&&i[0])p.body=i,p.body&&(p.body.data("rl-cache-count",++vb.iMessageBodyCacheCount),p.isRtl(!!p.body.data("rl-is-rtl")),p.isHtml(!!p.body.data("rl-is-html")),p.hasImages(!!p.body.data("rl-has-images")),p.plainRaw=sb.pString(p.body.data("rl-plain-raw")));else{if(f=!!c.Result.HasExternals,g=!!c.Result.HasInternals,h=b('
').hide().addClass("rl-cache-class"),h.data("rl-cache-count",++vb.iMessageBodyCacheCount),sb.isNormal(c.Result.Html)&&""!==c.Result.Html)e=!0,h.html(c.Result.Html.toString()).addClass("b-text-part html");else if(sb.isNormal(c.Result.Plain)&&""!==c.Result.Plain){if(e=!1,k=c.Result.Plain.toString(),vb.bAllowOpenPGP&&(p.isPgpSigned()||p.isPgpEncrypted())&&sb.isNormal(c.Result.PlainRaw)){if(m=/---BEGIN PGP MESSAGE---/.test(c.Result.PlainRaw),m||(l=/-----BEGIN PGP SIGNED MESSAGE-----/.test(c.Result.PlainRaw)&&/-----BEGIN PGP SIGNATURE-----/.test(c.Result.PlainRaw)),l&&p.isPgpSigned()&&p.pgpSignature()){k='
'+c.Result.PlainRaw+"
";try{n=a.openpgp.cleartext.readArmored(c.Result.PlainRaw)}catch(q){}n&&n.getText?k=n.getText():l=!1}else if(m&&p.isPgpEncrypted()){try{n=a.openpgp.message.readArmored(c.Result.PlainRaw)}catch(q){}k='
'+c.Result.PlainRaw+"
"}(l||m)&&(h.data("rl-plain-raw",c.Result.PlainRaw),h.data("rl-plain-pgp-encrypted",m),h.data("rl-plain-pgp-signed",l))}h.html(k).addClass("b-text-part plain")}else e=!1;c.Result.Rtl&&(h.data("rl-is-rtl",!0),h.addClass("rtl-text-part")),p.body=h,p.body&&(o.append(p.body),p.body.data("rl-is-html",e),p.body.data("rl-has-images",f),p.isRtl(!!p.body.data("rl-is-rtl")),p.isHtml(!!p.body.data("rl-is-html")),p.hasImages(!!p.body.data("rl-has-images")),p.plainRaw=sb.pString(p.body.data("rl-plain-raw"))),g&&p.showInternalImages(!0),p.hasImages()&&this.showImages()&&p.showExternalImages(!0),this.purgeMessageBodyCacheThrottle()}vb.bAllowOpenPGP&&p.body?(p.isPgpSigned(!!p.body.data("rl-plain-pgp-signed")),p.isPgpEncrypted(!!p.body.data("rl-plain-pgp-encrypted"))):(p.isPgpSigned(!1),p.isPgpEncrypted(!1)),this.messageActiveDom(p.body),this.hideMessageBodies(),p.body.show(),h&&sb.initBlockquoteSwitcher(h)}Eb.cache().initMessageFlagsFromCache(p),p.unseen()&&Eb.setMessageSeen(p),sb.windowResize()}},eb.prototype.setMessageList=function(a,b){if(a&&a.Result&&"Collection/MessageCollection"===a.Result["@Object"]&&a.Result["@Collection"]&&sb.isArray(a.Result["@Collection"])){var c=Eb.data(),d=Eb.cache(),e=null,g=0,h=0,i=0,j=0,k=[],l=f().unix(),m=c.staticMessageList,n=null,o=null,p=null,q=0,r=!1;for(i=sb.pInt(a.Result.MessageResultCount),j=sb.pInt(a.Result.Offset),sb.isNonEmptyArray(a.Result.LastCollapsedThreadUids)&&(e=a.Result.LastCollapsedThreadUids),p=Eb.cache().getFolderFromCacheList(sb.isNormal(a.Result.Folder)?a.Result.Folder:""),p&&!b&&(p.interval=l,Eb.cache().setFolderHash(a.Result.Folder,a.Result.FolderHash),sb.isNormal(a.Result.MessageCount)&&p.messageCountAll(a.Result.MessageCount),sb.isNormal(a.Result.MessageUnseenCount)&&(sb.pInt(p.messageCountUnread())!==sb.pInt(a.Result.MessageUnseenCount)&&(r=!0),p.messageCountUnread(a.Result.MessageUnseenCount)),this.initUidNextAndNewMessages(p.fullNameRaw,a.Result.UidNext,a.Result.NewMessages)),r&&p&&Eb.cache().clearMessageFlagsFromCacheByFolder(p.fullNameRaw),g=0,h=a.Result["@Collection"].length;h>g;g++)n=a.Result["@Collection"][g],n&&"Object/Message"===n["@Object"]&&(o=m[g],o&&o.initByJson(n)||(o=y.newInstanceFromJson(n)),o&&(d.hasNewMessageAndRemoveFromCache(o.folderFullNameRaw,o.uid)&&5>=q&&(q++,o.newForAnimation(!0)),o.deleted(!1),b?Eb.cache().initMessageFlagsFromCache(o):Eb.cache().storeMessageFlagsToCache(o),o.lastInCollapsedThread(e&&-1(new a.Date).getTime()-l),n&&i.oRequests[n]&&(i.oRequests[n].__aborted&&(e="abort"),i.oRequests[n]=null),i.defaultResponse(c,n,e,b,f,d)}),n&&00?(this.defaultRequest(a,"Message",{},null,"Message/"+ub.urlsafe_encode([b,c,Eb.data().projectHash(),Eb.data().threading()&&Eb.data().useThreads()?"1":"0"].join(String.fromCharCode(0))),["Message"]),!0):!1},gb.prototype.composeUploadExternals=function(a,b){this.defaultRequest(a,"ComposeUploadExternals",{Externals:b},999e3)},gb.prototype.folderInformation=function(a,b,c){var d=!0,e=Eb.cache(),f=[];sb.isArray(c)&&0
").addClass("rl-settings-view-model").hide().attr("data-bind",'template: {name: "'+f.__rlSettingsData.Template+'"}, i18nInit: true'),i.appendTo(g),e.data=Eb.data(),e.viewModelDom=i,e.__rlSettingsData=f.__rlSettingsData,f.__dom=i,f.__builded=!0,f.__vm=e,c.applyBindings(e,i[0]),sb.delegateRun(e,"onBuild",[i])):sb.log("Cannot find sub settings view model position: SettingsSubScreen")),e&&h.defer(function(){d.oCurrentSubScreen&&(sb.delegateRun(d.oCurrentSubScreen,"onHide"),d.oCurrentSubScreen.viewModelDom.hide()),d.oCurrentSubScreen=e,d.oCurrentSubScreen&&(d.oCurrentSubScreen.viewModelDom.show(),sb.delegateRun(d.oCurrentSubScreen,"onShow"),h.each(d.menu(),function(a){a.selected(e&&e.__rlSettingsData&&a.route===e.__rlSettingsData.Route)}),b("#rl-content .b-settings .b-content .content").scrollTop(0)),sb.windowResize()})):xb.setHash(Eb.link().settings(),!1,!0)},jb.prototype.onHide=function(){this.oCurrentSubScreen&&this.oCurrentSubScreen.viewModelDom&&(sb.delegateRun(this.oCurrentSubScreen,"onHide"),this.oCurrentSubScreen.viewModelDom.hide())},jb.prototype.onBuild=function(){h.each(wb.settings,function(a){a&&a.__rlSettingsData&&!h.find(wb["settings-removed"],function(b){return b&&b===a})&&this.menu.push({route:a.__rlSettingsData.Route,label:a.__rlSettingsData.Label,selected:c.observable(!1),disabled:!!h.find(wb["settings-disabled"],function(b){return b&&b===a})})},this),this.oViewModelPlace=b("#rl-content #rl-settings-subscreen")},jb.prototype.routes=function(){var a=h.find(wb.settings,function(a){return a&&a.__rlSettingsData&&a.__rlSettingsData.IsDefault}),b=a?a.__rlSettingsData.Route:"general",c={subname:/^(.*)$/,normalize_:function(a,c){return c.subname=sb.isUnd(c.subname)?b:sb.pString(c.subname),[c.subname]}};return[["{subname}/",c],["{subname}",c],["",c]]},h.extend(kb.prototype,r.prototype),kb.prototype.onShow=function(){Eb.setTitle("")},h.extend(lb.prototype,r.prototype),lb.prototype.oLastRoute={},lb.prototype.setNewTitle=function(){var a=Eb.data().accountEmail(),b=Eb.data().foldersInboxUnreadCount();Eb.setTitle((""===a?"":(b>0?"("+b+") ":" ")+a+" - ")+sb.i18n("TITLES/MAILBOX"))},lb.prototype.onShow=function(){this.setNewTitle()},lb.prototype.onRoute=function(a,b,c,d){if(sb.isUnd(d)?1:!d){var e=Eb.data(),f=Eb.cache().getFolderFullNameRaw(a),g=Eb.cache().getFolderFromCacheList(f);g&&(e.currentFolder(g).messageListPage(b).messageListSearch(c),qb.Layout.NoPreview===e.layout()&&e.message()&&(e.message(null),e.messageFullScreenMode(!1)),Eb.reloadMessageList())}else qb.Layout.NoPreview!==Eb.data().layout()||Eb.data().message()||Eb.historyBack()},lb.prototype.onStart=function(){var a=Eb.data(),b=function(){sb.windowResize()};(Eb.settingsGet("AllowAdditionalAccounts")||Eb.settingsGet("AllowIdentities"))&&Eb.accountsAndIdentities(),h.delay(function(){"INBOX"!==a.currentFolderFullNameRaw()&&Eb.folderInformation("INBOX")},1e3),h.delay(function(){Eb.quota()},5e3),h.delay(function(){Eb.remote().appDelayStart(sb.emptyFunction)},35e3),Ab.toggleClass("rl-no-preview-pane",qb.Layout.NoPreview===a.layout()),a.folderList.subscribe(b),a.messageList.subscribe(b),a.message.subscribe(b),a.layout.subscribe(function(a){Ab.toggleClass("rl-no-preview-pane",qb.Layout.NoPreview===a)}),a.foldersInboxUnreadCount.subscribe(function(){this.setNewTitle()},this)},lb.prototype.routes=function(){var a=function(){return["Inbox",1,"",!0]},b=function(a,b){return b[0]=sb.pString(b[0]),b[1]=sb.pInt(b[1]),b[1]=0>=b[1]?1:b[1],b[2]=sb.pString(b[2]),""===a&&(b[0]="Inbox",b[1]=1),[decodeURI(b[0]),b[1],decodeURI(b[2]),!1]},c=function(a,b){return b[0]=sb.pString(b[0]),b[1]=sb.pString(b[1]),""===a&&(b[0]="Inbox"),[decodeURI(b[0]),1,decodeURI(b[1]),!1]};return[[/^([a-zA-Z0-9]+)\/p([1-9][0-9]*)\/(.+)\/?$/,{normalize_:b}],[/^([a-zA-Z0-9]+)\/p([1-9][0-9]*)$/,{normalize_:b}],[/^([a-zA-Z0-9]+)\/(.+)\/?$/,{normalize_:c}],[/^message-preview$/,{normalize_:a}],[/^([^\/]*)$/,{normalize_:b}]]},h.extend(mb.prototype,jb.prototype),mb.prototype.onShow=function(){Eb.setTitle(this.sSettingsTitle)},h.extend(nb.prototype,p.prototype),nb.prototype.oSettings=null,nb.prototype.oPlugins=null,nb.prototype.oLocal=null,nb.prototype.oLink=null,nb.prototype.oSubs={},nb.prototype.download=function(b){var c=null,d=null,e=navigator.userAgent.toLowerCase();return e&&(e.indexOf("chrome")>-1||e.indexOf("chrome")>-1)&&(c=document.createElement("a"),c.href=b,document.createEvent&&(d=document.createEvent("MouseEvents"),d&&d.initEvent&&c.dispatchEvent))?(d.initEvent("click",!0,!0),c.dispatchEvent(d),!0):(vb.bMobileDevice?(a.open(b,"_self"),a.focus()):this.iframe.attr("src",b),!0)},nb.prototype.link=function(){return null===this.oLink&&(this.oLink=new j),this.oLink},nb.prototype.local=function(){return null===this.oLocal&&(this.oLocal=new o),this.oLocal},nb.prototype.settingsGet=function(a){return null===this.oSettings&&(this.oSettings=sb.isNormal(yb)?yb:{}),sb.isUnd(this.oSettings[a])?null:this.oSettings[a]},nb.prototype.settingsSet=function(a,b){null===this.oSettings&&(this.oSettings=sb.isNormal(yb)?yb:{}),this.oSettings[a]=b},nb.prototype.setTitle=function(b){b=(sb.isNormal(b)&&0l;l++)p.push({id:e[l][0],name:e[l][1],disable:!1});for(l=0,m=b.length;m>l;l++)n=b[l],(h?h.call(null,n):!0)&&p.push({id:n.fullNameRaw,system:!0,name:i?i.call(null,n):n.name(),disable:!n.selectable||-1l;l++)n=c[l],n.isGmailFolder||!n.subScribed()&&n.existen||(h?h.call(null,n):!0)&&(qb.FolderType.User===n.type()||!j||!n.isNamespaceFolder&&0