mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-27 19:19:21 +03:00
Release fixes
This commit is contained in:
parent
5b6c90aea9
commit
f91f74fe7c
21 changed files with 398 additions and 83 deletions
|
|
@ -86,16 +86,23 @@ class HtmlUtils
|
|||
|
||||
/**
|
||||
* @param string $sHtml
|
||||
* @param bool $bClearStyleAndHead = true
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function ClearTags($sHtml)
|
||||
public static function ClearTags($sHtml, $bClearStyleAndHead = true)
|
||||
{
|
||||
$aRemoveTags = array(
|
||||
'head', 'link', 'base', 'meta', 'title', 'style', 'script', 'bgsound', 'keygen', 'source',
|
||||
'link', 'base', 'meta', 'title', 'script', 'bgsound', 'keygen', 'source',
|
||||
'object', 'embed', 'applet', 'mocha', 'iframe', 'frame', 'frameset', 'video', 'audio'
|
||||
);
|
||||
|
||||
if ($bClearStyleAndHead)
|
||||
{
|
||||
$aRemoveTags[] = 'head';
|
||||
$aRemoveTags[] = 'style';
|
||||
}
|
||||
|
||||
$aToRemove = array(
|
||||
'/<!doctype[^>]*>/msi',
|
||||
'/<\?xml [^>]*\?>/msi'
|
||||
|
|
@ -150,6 +157,227 @@ class HtmlUtils
|
|||
return \preg_replace($aToReplace, 'оn\\1', $sHtml);
|
||||
}
|
||||
|
||||
// public static function ClearStyleUrlValueParserHelper($oUrlValue, $oRule, $oRuleSet,
|
||||
// $oElem = null,
|
||||
// &$bHasExternals = false, &$aFoundCIDs = array(),
|
||||
// $aContentLocationUrls = array(), &$aFoundedContentLocationUrls = array(),
|
||||
// $bDoNotReplaceExternalUrl = false, $fAdditionalExternalFilter = null
|
||||
// )
|
||||
// {
|
||||
// if ($oUrlValue instanceof \Sabberworm\CSS\Value\URL)
|
||||
// {
|
||||
// $oNewRule = new \Sabberworm\CSS\Rule\Rule('x-rl-orig-'.$oRule->getRule());
|
||||
// $oNewRule->setValue((string) $oRule->getValue());
|
||||
// $oNewRule->setIsImportant($oRule->getIsImportant());
|
||||
//
|
||||
// $oRuleSet->addRule($oNewRule);
|
||||
//
|
||||
// $oUrl = $oUrlValue->getURL();
|
||||
// $sUrl = $oUrl ? $oUrl->getString() : '';
|
||||
//
|
||||
// if ('cid:' === \strtolower(\substr($sUrl, 0, 4)))
|
||||
// {
|
||||
// $aFoundCIDs[] = \substr($sUrl, 4);
|
||||
//
|
||||
// $oRule->setRule('x-rl-mod-'.$oRule->getRule());
|
||||
//
|
||||
// if ($oElem)
|
||||
// {
|
||||
// $oElem->setAttribute('data-x-style-mod', '1');
|
||||
// }
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// if (\preg_match('/http[s]?:\/\//i', $sUrl) || '//' === \substr($sUrl, 0, 2))
|
||||
// {
|
||||
// $oRule->setRule('x-rl-mod-'.$oRule->getRule());
|
||||
//
|
||||
// if (\in_array($sUrl, $aContentLocationUrls))
|
||||
// {
|
||||
// $aFoundedContentLocationUrls[] = $sUrl;
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// $bHasExternals = true;
|
||||
// if (!$bDoNotReplaceExternalUrl)
|
||||
// {
|
||||
// if ($fAdditionalExternalFilter)
|
||||
// {
|
||||
// $sAdditionalResult = \call_user_func($fAdditionalExternalFilter, $sUrl);
|
||||
// if (0 < \strlen($sAdditionalResult) && $oUrl)
|
||||
// {
|
||||
// $oUrl->setString($sAdditionalResult);
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// if ($oElem)
|
||||
// {
|
||||
// $oElem->setAttribute('data-x-style-mod', '1');
|
||||
// }
|
||||
// }
|
||||
// else if ('data:image/' !== \strtolower(\substr(\trim($sUrl), 0, 11)))
|
||||
// {
|
||||
// $oRuleSet->removeRule($oRule);
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// else if ($oRule instanceof \Sabberworm\CSS\Rule\Rule)
|
||||
// {
|
||||
// if ('x-rl-' !== \substr($oRule->getRule(), 0, 5))
|
||||
// {
|
||||
// $oValue = $oRule->getValue();
|
||||
// if ($oValue instanceof \Sabberworm\CSS\Value\URL)
|
||||
// {
|
||||
// \MailSo\Base\HtmlUtils::ClearStyleUrlValueParserHelper($oValue, $oRule, $oRuleSet, $oElem,
|
||||
// $bHasExternals, $aFoundCIDs,
|
||||
// $aContentLocationUrls, $aFoundedContentLocationUrls,
|
||||
// $bDoNotReplaceExternalUrl, $fAdditionalExternalFilter);
|
||||
// }
|
||||
// else if ($oValue instanceof \Sabberworm\CSS\Value\RuleValueList)
|
||||
// {
|
||||
// $aComps = $oValue->getListComponents();
|
||||
// foreach ($aComps as $oValue)
|
||||
// {
|
||||
// if ($oValue instanceof \Sabberworm\CSS\Value\URL)
|
||||
// {
|
||||
// \MailSo\Base\HtmlUtils::ClearStyleUrlValueParserHelper($oValue, $oRule, $oRuleSet, $oElem,
|
||||
// $bHasExternals, $aFoundCIDs,
|
||||
// $aContentLocationUrls, $aFoundedContentLocationUrls,
|
||||
// $bDoNotReplaceExternalUrl, $fAdditionalExternalFilter);
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// public static function ClearStyleSmart($sStyle, $oElement = null,
|
||||
// &$bHasExternals = false, &$aFoundCIDs = array(),
|
||||
// $aContentLocationUrls = array(), &$aFoundedContentLocationUrls = array(),
|
||||
// $bDoNotReplaceExternalUrl = false, $fAdditionalExternalFilter = null,
|
||||
// $sSelectorPrefix = '')
|
||||
// {
|
||||
// $mResult = false;
|
||||
// $oCss = null;
|
||||
//
|
||||
// if (!\class_exists('\\Sabberworm\\CSS\\Parser'))
|
||||
// {
|
||||
// return $mResult;
|
||||
// }
|
||||
//
|
||||
// $sStyle = \trim($sStyle);
|
||||
// if (empty($sStyle))
|
||||
// {
|
||||
// return '';
|
||||
// }
|
||||
//
|
||||
// $sStyle = \trim(\preg_replace('/[\r\n\t\s]+/', ' ', $sStyle));
|
||||
//
|
||||
// try
|
||||
// {
|
||||
// $oSettings = \Sabberworm\CSS\Settings::create();
|
||||
// $oSettings->beStrict();
|
||||
// $oSettings->withMultibyteSupport(false);
|
||||
//
|
||||
// $oCssParser = new \Sabberworm\CSS\Parser($sStyle, $oSettings);
|
||||
// $oCss = $oCssParser->parse();
|
||||
// }
|
||||
// catch (\Exception $oEception)
|
||||
// {
|
||||
// unset($oEception);
|
||||
// $mResult = false;
|
||||
// }
|
||||
//
|
||||
// if ($oCss)
|
||||
// {
|
||||
// foreach ($oCss->getAllDeclarationBlocks() as $oBlock)
|
||||
// {
|
||||
// foreach($oBlock->getSelectors() as $oSelector)
|
||||
// {
|
||||
// $sS = ' '.\trim($oSelector->getSelector()).' ';
|
||||
// $sS = \preg_replace('/ body([\.# ])/i', ' [data-x-div-type="body"]$1', $sS);
|
||||
// $sS = \preg_replace('/ html([\.# ])/i', ' [data-x-div-type="html"]$1', $sS);
|
||||
//
|
||||
// if (0 < \strlen($sSelectorPrefix))
|
||||
// {
|
||||
// $sS = \trim($sSelectorPrefix.' '.\trim($sS));
|
||||
// }
|
||||
//
|
||||
// $oSelector->setSelector(\trim($sS));
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// $aRulesToRemove = array(
|
||||
// 'pointer-events', 'content', 'behavior', 'cursor',
|
||||
// );
|
||||
//
|
||||
// foreach($oCss->getAllRuleSets() as $oRuleSet)
|
||||
// {
|
||||
// foreach ($aRulesToRemove as $sRuleToRemove)
|
||||
// {
|
||||
// $oRuleSet->removeRule($sRuleToRemove);
|
||||
// }
|
||||
//
|
||||
// // position: fixed -> position: fixed -> absolute
|
||||
// $aRules = $oRuleSet->getRules('position');
|
||||
// if (\is_array($aRules))
|
||||
// {
|
||||
// foreach ($aRules as $oRule)
|
||||
// {
|
||||
// $mValue = $oRule->getValue();
|
||||
// if (\is_string($mValue) && 'fixed' === \trim(\strtolower($mValue)))
|
||||
// {
|
||||
// $oRule->setValue('absolute');
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// foreach($oCss->getAllDeclarationBlocks() as $oRuleSet)
|
||||
// {
|
||||
// if ($oRuleSet instanceof \Sabberworm\CSS\RuleSet\RuleSet)
|
||||
// {
|
||||
// if ($oRuleSet instanceof \Sabberworm\CSS\RuleSet\DeclarationBlock)
|
||||
// {
|
||||
// $oRuleSet->expandBackgroundShorthand();
|
||||
// $oRuleSet->expandListStyleShorthand();
|
||||
// }
|
||||
//
|
||||
// $aRules = $oRuleSet->getRules();
|
||||
// if (\is_array($aRules) && 0 < \count($aRules))
|
||||
// {
|
||||
// foreach ($aRules as $oRule)
|
||||
// {
|
||||
// if ($oRule instanceof \Sabberworm\CSS\Rule\Rule)
|
||||
// {
|
||||
// \MailSo\Base\HtmlUtils::ClearStyleUrlValueParserHelper(null, $oRule, $oRuleSet,
|
||||
// $oElement,
|
||||
// $bHasExternals, $aFoundCIDs,
|
||||
// $aContentLocationUrls, $aFoundedContentLocationUrls,
|
||||
// $bDoNotReplaceExternalUrl, $fAdditionalExternalFilter
|
||||
// );
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// try
|
||||
// {
|
||||
// $mResult = $oCss->render(\Sabberworm\CSS\OutputFormat::createCompact());
|
||||
// }
|
||||
// catch (\Exception $oEception)
|
||||
// {
|
||||
// unset($oEception);
|
||||
// $mResult = false;
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// return $mResult;
|
||||
// }
|
||||
|
||||
/**
|
||||
*
|
||||
* @param string $sStyle
|
||||
|
|
@ -208,7 +436,7 @@ class HtmlUtils
|
|||
{
|
||||
// skip
|
||||
}
|
||||
else if (\in_array($sName, array('background-image', 'background', 'list-style-image', 'content'))
|
||||
else if (\in_array($sName, array('background-image', 'background', 'list-style', 'list-style-image', 'content'))
|
||||
&& \preg_match('/url[\s]?\(([^)]+)\)/im', $sValue, $aMatch) && !empty($aMatch[1]))
|
||||
{
|
||||
$sFullUrl = \trim($aMatch[0], '"\' ');
|
||||
|
|
@ -417,6 +645,8 @@ class HtmlUtils
|
|||
$bDoNotReplaceExternalUrl = false, $bFindLinksInHtml = false, $fAdditionalExternalFilter = null)
|
||||
{
|
||||
$sResult = '';
|
||||
// $aBodyStyles = array();
|
||||
|
||||
$sHtml = null === $sHtml ? '' : (string) $sHtml;
|
||||
$sHtml = \trim($sHtml);
|
||||
if (0 === \strlen($sHtml))
|
||||
|
|
@ -431,7 +661,7 @@ class HtmlUtils
|
|||
|
||||
$bHasExternals = false;
|
||||
|
||||
$sHtml = \MailSo\Base\HtmlUtils::ClearTags($sHtml);
|
||||
$sHtml = \MailSo\Base\HtmlUtils::ClearTags($sHtml, false);
|
||||
$sHtml = \MailSo\Base\HtmlUtils::ClearOn($sHtml);
|
||||
|
||||
$sHtmlAttrs = $sBodyAttrs = '';
|
||||
|
|
@ -451,11 +681,28 @@ class HtmlUtils
|
|||
$aNodes = $oDom->getElementsByTagName('*');
|
||||
foreach ($aNodes as /* @var $oElement \DOMElement */ $oElement)
|
||||
{
|
||||
if (\in_array(\strtolower($oElement->tagName), array('svg', 'head', 'link',
|
||||
'base', 'meta', 'title', 'style', 'x-script', 'script', 'bgsound', 'keygen', 'source',
|
||||
'object', 'embed', 'applet', 'mocha', 'iframe', 'frame', 'frameset', 'video', 'audio')) && isset($oElement->parentNode))
|
||||
if ($oElement)
|
||||
{
|
||||
@$oElement->parentNode->removeChild($oElement);
|
||||
$sTagNameLower = \strtolower($oElement->tagName);
|
||||
|
||||
if (\in_array($sTagNameLower, array('svg', 'head', 'link',
|
||||
'base', 'meta', 'title', 'style', 'x-script', 'script', 'bgsound', 'keygen', 'source',
|
||||
'object', 'embed', 'applet', 'mocha', 'iframe', 'frame', 'frameset', 'video', 'audio')))
|
||||
{
|
||||
// if ('style' === $sTagNameLower)
|
||||
// {
|
||||
// $sV = (string) $oElement->textContent;
|
||||
// if (!empty($sV))
|
||||
// {
|
||||
// $aBodyStyles[] = $sV;
|
||||
// }
|
||||
// }
|
||||
|
||||
if (isset($oElement->parentNode))
|
||||
{
|
||||
@$oElement->parentNode->removeChild($oElement);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -546,7 +793,8 @@ class HtmlUtils
|
|||
// }
|
||||
|
||||
foreach (array(
|
||||
'id', 'class', 'contenteditable', 'designmode', 'formaction',
|
||||
'id', 'class',
|
||||
'contenteditable', 'designmode', 'formaction',
|
||||
'data-bind', 'xmlns', 'srcset'
|
||||
) as $sAttr)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1682,7 +1682,8 @@ class Actions
|
|||
$aResult['UserBackgroundHash'] = '';
|
||||
|
||||
if (!$bAdmin && $oSettings instanceof \RainLoop\Settings &&
|
||||
$oSettingsLocal instanceof \RainLoop\Settings)
|
||||
$oSettingsLocal instanceof \RainLoop\Settings &&
|
||||
$oAccount)
|
||||
{
|
||||
if ($oConfig->Get('webmail', 'allow_languages_on_settings', true))
|
||||
{
|
||||
|
|
@ -9277,7 +9278,8 @@ class Actions
|
|||
|
||||
$mResult['Html'] = 0 === \strlen($sHtml) ? '' : \MailSo\Base\HtmlUtils::ClearHtml(
|
||||
$sHtml, $bHasExternals, $mFoundedCIDs, $aContentLocationUrls, $mFoundedContentLocationUrls, false, false,
|
||||
$fAdditionalExternalFilter);
|
||||
$fAdditionalExternalFilter
|
||||
);
|
||||
|
||||
$mResult['ExternalProxy'] = null !== $fAdditionalExternalFilter;
|
||||
|
||||
|
|
|
|||
|
|
@ -13,6 +13,25 @@ class Utils
|
|||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $sFileName
|
||||
* @param string $sSignature
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
static public function PgpVerifyFile($sFileName, $sSignature)
|
||||
{
|
||||
$sKeyFile = APP_VERSION_ROOT_PATH.'app/resources/RainLoop.asc';
|
||||
if (\file_exists($sKeyFile) && \file_exists($sFileName) && !empty($sSignature))
|
||||
{
|
||||
$sKeyFile = @\file_get_contents($sKeyFile);
|
||||
return !empty($sKeyFile); // TODO
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param string $sString
|
||||
* @param string $sKey
|
||||
|
|
|
|||
18
rainloop/v/0.0.0/app/resources/RainLoop.asc
Normal file
18
rainloop/v/0.0.0/app/resources/RainLoop.asc
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
Version: GnuPG v2
|
||||
|
||||
mQENBFVN/RoBCAD4NYpb/iMtDARKdTnvV/9ycoTOWdAJoGAasuLprVqyI8bB0z6X
|
||||
ztJTqswgQcMzEwba5hQ9vuJ/Ylfww6mPvWJs/nmTUKxs2LlBldoSg25UDm7hyt59
|
||||
hi9zvOTwmeDNjGf5DXMib4Uuk5pH/jsmprRDZx25xA8qD2pDo0LOv5hexTwl5teA
|
||||
Zh8EAAzyiNsXbX+kab9IFwSArsvYK0YJln+tPHvT29X5B5YVt9gkwY+CWA3QV/ZG
|
||||
d71KEp+zReHICSjSy9G646JHDoG8CQ4Nytaih5oboqjU+Hkt8GeGlRlaPm3AIXqc
|
||||
3q76Og/KD1Itx7MKrfXUvCau/4HowSiO9neJABEBAAG0H1JhaW5Mb29wIDxzdXBw
|
||||
b3J0QHJhaW5sb29wLm5ldD6JATkEEwEIACMFAlVN/RoCGw8HCwkIBwMCAQYVCAIJ
|
||||
CgsEFgIDAQIeAQIXgAAKCRDtfEnZh9pFkTxVCAD0S4RMXVKsbjLm22zXE01yHWQM
|
||||
25QBRb5Z8p4ER3GcRNiKRWsNRTMRpiTdPgCyfj+tgIooMbBravDJwTkoztfWOb/P
|
||||
l3oazxhY/ivvLalk5kVY7lflWyYYn9tfGwVJYIZCKuZ67VZwtTcf6dBhbc4DizVw
|
||||
LuJAY6VNwycSHe8nrESabWzYRnw5c5ex/dmk8a1rsFXcDJBUB9MdZR7pxpniS9qB
|
||||
JByxjP6hHo5vo1y6mPDiN1wWBd+objA7ZJaXd0jnsXRHlBAk74/O5cWvmVeExYjx
|
||||
aERJEMQdBoAZNG1uTnQwjNdHfVoWDpqDSUr4QPfRv8M2pwvP4V1i6qji1r5T
|
||||
=dVNE
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
||||
|
|
@ -42,14 +42,14 @@
|
|||
</div>
|
||||
<div data-bind="visible: !licensingProcess()">
|
||||
<div class="alert alert-block span6" style="margin-left: 0; padding-top: 20px" data-bind="visible: !licensing()">
|
||||
<h4 data-i18n="TAB_LICENSING/TYPE_BASIC"></h4>
|
||||
<h4>Basic</h4>
|
||||
<br />
|
||||
<p data-i18n="TAB_LICENSING/TYPE_BASIC_HINT"></p>
|
||||
</div>
|
||||
<div data-bind="visible: licensing()">
|
||||
<div class="alert alert-success span6" style="margin-left: 0; margin-top: 10px; padding-top: 20px" data-bind="visible: licenseValid() && '' === licenseError()">
|
||||
<h4>
|
||||
<snan data-i18n="TAB_LICENSING/TYPE_PREMIUM"></snan>
|
||||
<snan>Premium</snan>
|
||||
<span data-bind="visible: licenseIsUnlim()">
|
||||
|
||||
(<snan data-i18n="TAB_LICENSING/TYPE_PREMIUM_LIFETIME"></snan>)
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@
|
|||
<span class="i18n i18n-animation" data-i18n="LOGIN/BUTTON_SIGN_IN" data-bind="visible: !submitRequest()"></span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<div class="controls clearfix" style="margin-bottom: 20px">
|
||||
<div class="pull-right social-buttons">
|
||||
<a href="#" tabindex="-1" class="social-button" data-bind="visible: facebookLoginEnabled, command: facebookCommand, tooltip: 'LOGIN/TITLE_SIGN_IN_FACEBOOK'">
|
||||
<i class="icon-facebook-alt"></i>
|
||||
|
|
@ -88,7 +88,7 @@
|
|||
</a>
|
||||
</div>
|
||||
|
||||
<div class="signMeLabel" data-bind="component: {
|
||||
<div class="signMeLabel" data-bind="visible: signMeVisibility, component: {
|
||||
name: 'CheckboxSimple',
|
||||
params: {
|
||||
label: 'LOGIN/LABEL_SIGN_ME',
|
||||
|
|
@ -97,11 +97,6 @@
|
|||
}
|
||||
}"></div>
|
||||
|
||||
<!-- <label class="signMeLabel inline" data-bind="click: function () { signMe(!signMe()); }, visible: signMeVisibility">
|
||||
<i data-bind="css: signMe() ? 'checkboxSignMe icon-checkbox-checked' : 'checkboxSignMe icon-checkbox-unchecked'"></i>
|
||||
|
||||
<span class="i18n i18n-animation" data-i18n="LOGIN/LABEL_SIGN_ME"></span>
|
||||
</label>-->
|
||||
</div>
|
||||
<div class="controls clearfix" data-bind="visible: '' !== forgotPasswordLinkUrl || '' !== registrationLinkUrl">
|
||||
<div class="forgot-link thm-forgot pull-left" data-bind="visible: '' !== forgotPasswordLinkUrl" style="text-align: center">
|
||||
|
|
|
|||
|
|
@ -410,7 +410,7 @@
|
|||
<button type="button" class="close" style="margin-right: 5px;"
|
||||
data-bind="click: function () { showAttachmnetControls(false); }">×</button>
|
||||
</div>
|
||||
<div class="bodyText g-ui-min-height-300" data-bind="initDom: messagesBodiesDom"></div>
|
||||
<div class="bodyText g-ui-min-height-300 rl-mv-root" data-bind="initDom: messagesBodiesDom"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -151,14 +151,12 @@ ALERT_CANNOT_ACCESS_REPOSITORY = "Auf das Plugin-Repository kann derzeit nicht z
|
|||
LABEL_YOUR_DOMAIN = "Ihre Domain"
|
||||
LABEL_VERSION = "Version"
|
||||
LABEL_CHECKING = "Überprüfe"
|
||||
TYPE_BASIC = "Basis"
|
||||
TYPE_BASIC_HINT = "Diese Domain ist nicht für die kommerzielle Nutzung (mit zusätzlichen Funktionen) lizenziert."
|
||||
TYPE_BASIC_HINT_2 = "Diese Domain kann nicht lizenziert werden."
|
||||
HTML_ALERT_TOP_1 = "RainLoop Webmail steht unter folgender Lizenz:"
|
||||
HTML_ALERT_TOP_2 = "Sie <b>dürfen</b> es für <b>persönliche</b> Projekte nutzen."
|
||||
HTML_ALERT_TOP_3 = "Kommerzielle Nutzung (mit zusätzlichen Funktionen) von <b>RainLoop Webmail</b> erfordert eine
|
||||
<a href=http://www.rainloop.net/purchase/ target=_blank>Subscription</a>."
|
||||
TYPE_PREMIUM = "Premium"
|
||||
TYPE_PREMIUM_LIFETIME = "Lebenszeit"
|
||||
TYPE_PREMIUM_HINT = "Diese Domain ist nicht für die kommerzielle Nutzung (mit zusätzlichen Funktionen) lizenziert."
|
||||
LABEL_SUB_EXPIRES = "Ablauf der Subscription:"
|
||||
|
|
|
|||
|
|
@ -152,14 +152,12 @@ ALERT_CANNOT_ACCESS_REPOSITORY = "Cannot access the repository at the moment."
|
|||
LABEL_YOUR_DOMAIN = "Your domain"
|
||||
LABEL_VERSION = "Version"
|
||||
LABEL_CHECKING = "Checking"
|
||||
TYPE_BASIC = "Basic"
|
||||
TYPE_BASIC_HINT = "This domain isn't licensed for commercial use (with additional features)."
|
||||
TYPE_BASIC_HINT_2 = "This domain can't be licensed."
|
||||
HTML_ALERT_TOP_1 = "RainLoop Webmail is licensed under"
|
||||
HTML_ALERT_TOP_2 = "You are <b>free</b> to use it for your <b>personal</b> projects."
|
||||
HTML_ALERT_TOP_3 = "Commercial use (with additional features) of <b>RainLoop Webmail</b> requires getting a
|
||||
<a href=http://www.rainloop.net/purchase/ target=_blank>subscription</a>."
|
||||
TYPE_PREMIUM = "Premium"
|
||||
TYPE_PREMIUM_LIFETIME = "Lifetime"
|
||||
TYPE_PREMIUM_HINT = "This domain isn't licensed for commercial use (with additional features)."
|
||||
LABEL_SUB_EXPIRES = "Subscription expires:"
|
||||
|
|
|
|||
|
|
@ -152,14 +152,12 @@ ALERT_CANNOT_ACCESS_REPOSITORY = "Não foi possível acessar o repositório no m
|
|||
LABEL_YOUR_DOMAIN = "Seu domínio"
|
||||
LABEL_VERSION = "Versão"
|
||||
LABEL_CHECKING = "Checando"
|
||||
TYPE_BASIC = "Básico"
|
||||
TYPE_BASIC_HINT = "Esse domínio não está licenciado para uso comercial (com recursos adicionais)."
|
||||
TYPE_BASIC_HINT_2 = "Esse domínio não pode ser licenciado."
|
||||
HTML_ALERT_TOP_1 = "RainLoop Webmail é licenciado sob"
|
||||
HTML_ALERT_TOP_2 = "Você é <b>livre</b> para usá-lo em seus projetos <b>pessoais</b>."
|
||||
HTML_ALERT_TOP_3 = "Uso comercial (com recursos adicionais) do <b>RainLoop Webmail</b>
|
||||
requer uma <a href=http://www.rainloop.net/purchase/ target=_blank>assinatura</a>."
|
||||
TYPE_PREMIUM = "Premium"
|
||||
TYPE_PREMIUM_LIFETIME = "Lifetime"
|
||||
TYPE_PREMIUM_HINT = "Esse domínio está licenciado para uso comercial (com recursos adicionais)."
|
||||
LABEL_SUB_EXPIRES = "A assinatura expira em:"
|
||||
|
|
|
|||
|
|
@ -151,14 +151,12 @@ ALERT_CANNOT_ACCESS_REPOSITORY = "Не удается получить дост
|
|||
LABEL_YOUR_DOMAIN = "Ваш домен"
|
||||
LABEL_VERSION = "Версия"
|
||||
LABEL_CHECKING = "Проверка"
|
||||
TYPE_BASIC = "Базовая"
|
||||
TYPE_BASIC_HINT = "Этот домен не имеет лицензию для коммерческого использования (с дополнительными функциями)."
|
||||
TYPE_BASIC_HINT_2 = "Этот домен не может быть лицензирован."
|
||||
HTML_ALERT_TOP_1 = "Код RainLoop Webmail лицензирован под"
|
||||
HTML_ALERT_TOP_2 = "Вы можете <b>свободно</b> использовать его в своих <b>личных</b> проектах."
|
||||
HTML_ALERT_TOP_3 = "Коммерческое использование (с дополнительными функциями) <b>RainLoop Webmail</b> требует получение
|
||||
<a href=http://www.rainloop.net/purchase/ target=_blank>лицензии</a>."
|
||||
TYPE_PREMIUM = "Премиум"
|
||||
TYPE_PREMIUM_LIFETIME = "бесконечная"
|
||||
TYPE_PREMIUM_HINT = "Этот домен не имеет лицензию для коммерческого использования (с дополнительными функциями)."
|
||||
LABEL_SUB_EXPIRES = "Подписка истекает:"
|
||||
|
|
|
|||
|
|
@ -4,12 +4,12 @@ rl_signature_replacer = function (editor, sText, sSignature, bHtml, bInsertBefor
|
|||
if (!bHtml)
|
||||
{
|
||||
sText = sText
|
||||
.replace(/\u200C([\s\S]*)\u200C/g, '<x-signature>$1</x-signature>')
|
||||
.replace(/\u200C([\s\S]*)\u200C/g, '\u0002$1\u0002')
|
||||
.replace(/\u200C/g, '')
|
||||
;
|
||||
}
|
||||
|
||||
sText = sText.replace(/<x-signature>[\s\S]*<\/x-signature>/gm, '');
|
||||
sText = sText.replace(/\u0002([\s\S]*)\u0002/gm, '');
|
||||
|
||||
var
|
||||
bEmptyText = '' === $.trim(sText),
|
||||
|
|
@ -23,19 +23,18 @@ rl_signature_replacer = function (editor, sText, sSignature, bHtml, bInsertBefor
|
|||
|
||||
if (bInsertBefore)
|
||||
{
|
||||
sText = '<x-signature>' + sSignature + (bEmptyText ? '' : sNewLine) + '</x-signature>' + sText;
|
||||
sText = "\u0002" + sSignature + (bEmptyText ? '' : sNewLine) + "\u0002" + sText;
|
||||
}
|
||||
else
|
||||
{
|
||||
sText = sText + '<x-signature>' + (bEmptyText ? '' : sNewLine) + sSignature + '</x-signature>';
|
||||
sText = sText + "\u0002" + (bEmptyText ? '' : sNewLine) + sSignature + "\u0002";
|
||||
}
|
||||
|
||||
if (!bHtml)
|
||||
{
|
||||
sText = sText
|
||||
.replace(/<x-signature>([\s\S]*)<\/x-signature>/gm, '\u200C$1\u200C')
|
||||
.replace(/<x-signature>/gm, '')
|
||||
.replace(/<\/x-signature>/gm, '')
|
||||
.replace(/\u0002([\s\S]*)\u0002/g, '\u200C$1\u200C')
|
||||
.replace(/\u0002/g, '')
|
||||
;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue