Zeile 38 | Zeile 38 |
---|
}, 'Youtube': { 'match': /(?:v=|v\/|embed\/|youtu\.be\/)(.{11})/,
|
}, 'Youtube': { 'match': /(?:v=|v\/|embed\/|youtu\.be\/)(.{11})/,
|
'url': '//www.youtube.com/embed/',
| 'url': '//www.youtube-nocookie.com/embed/',
|
'html': '<iframe width="560" height="315" src="{url}" frameborder="0" data-mybb-vt="{type}" data-mybb-vsrc="{src}"></iframe>' }, 'Twitch': {
| 'html': '<iframe width="560" height="315" src="{url}" frameborder="0" data-mybb-vt="{type}" data-mybb-vsrc="{src}"></iframe>' }, 'Twitch': {
|
Zeile 48 | Zeile 48 |
---|
} } };
|
} } };
|
| for (var i in mybbCmd.video) { var item = mybbCmd.video[i]; $.sceditor.defaultOptions.allowedIframeUrls.push(item.url); }
|
// Add custom MyBB CSS $('<style type="text/css">' +
| // Add custom MyBB CSS $('<style type="text/css">' +
|
Zeile 59 | Zeile 64 |
---|
.set('align', { html: function (element, attrs, content) { return '<div align="' + ($.sceditor.escapeEntities(attrs.defaultattr) || 'left') + '">' + content + '</div>';
|
.set('align', { html: function (element, attrs, content) { return '<div align="' + ($.sceditor.escapeEntities(attrs.defaultattr) || 'left') + '">' + content + '</div>';
|
},
| },
|
isInline: false }); $.each(mybbCmd.align, function (i, val) {
| isInline: false }); $.each(mybbCmd.align, function (i, val) {
|
Zeile 83 | Zeile 88 |
---|
return '<' + type + '>' + content + '</' + type + '>'; },
|
return '<' + type + '>' + content + '</' + type + '>'; },
|
breakAfter: false
| isInline: false, skipLastLineBreak: true, breakStart: true, breakAfter: true,
|
}) .set('ul', {
|
}) .set('ul', {
|
format: '[list]{0}[/list]'
| format: '[list]{0}[/list]', isInline: false, skipLastLineBreak: true, breakStart: true, breakAfter: true,
|
}) .set('ol', { format: function ($elm, content) { var type = ($($elm).attr('type') === 'a' ? 'a' : '1');
return '[list=' + type + ']' + content + '[/list]';
|
}) .set('ol', { format: function ($elm, content) { var type = ($($elm).attr('type') === 'a' ? 'a' : '1');
return '[list=' + type + ']' + content + '[/list]';
|
}
| }, isInline: false, skipLastLineBreak: true, breakStart: true, breakAfter: true,
|
}) .set('li', { format: '[*]{0}',
|
}) .set('li', { format: '[*]{0}',
|
excludeClosing: true
| isInline: false, skipLastLineBreak: true,
|
}) .set('*', {
|
}) .set('*', {
|
| html: '<li>{0}</li>', isInline: false,
|
excludeClosing: true,
|
excludeClosing: true,
|
isInline: true
| skipLastLineBreak: true, breakAfter: false,
|
});
$.sceditor.command
| });
$.sceditor.command
|
Zeile 134 | Zeile 153 |
---|
// Update size tag to use xx-small-xx-large instead of 1-7 $.sceditor.formats.bbcode.set('size', { format: function ($elm, content) {
|
// Update size tag to use xx-small-xx-large instead of 1-7 $.sceditor.formats.bbcode.set('size', { format: function ($elm, content) {
|
var fontSize, size = $($elm).attr('size');
| var fontsize = 1, scefontsize = $($elm).data('scefontsize'), parsed = parseInt(scefontsize, 10), size = parseInt($($elm).attr('size'), 10), iframe = $('.sceditor-container iframe'), editor_body = $('body', iframe.contents());
|
|
|
if (!size) { fontSize = $($elm).css('fontSize'); // Most browsers return px value but IE returns 1-7 if (fontSize.indexOf('px') > -1) { // convert size to an int fontSize = parseInt(fontSize); size = 1; $.each(mybbCmd.fSize, function (i, val) { if (fontSize > val) size = i + 2; }); } else { size = (~~fontSize) + 1; } size = (size >= 7) ? mybbCmd.fsStr[6] : ((size <= 1) ? mybbCmd.fsStr[0] : mybbCmd.fsStr[size - 1]); } else { size = mybbCmd.fsStr[size - 1];
| if ($($elm).css('font-size') == editor_body.css('font-size')) { // Eliminate redundant [size] tags for unformatted text. // Part of the fix for the browser-dependent bug of issue #4184. // Also fixes the browser-dependent bug described here: // <https://community.mybb.com/thread-229726.html> fontsize = -1; } else if (!isNaN(size) && size >= 1 && size <= mybbCmd.fsStr.length) { fontsize = mybbCmd.fsStr[size - 1]; } else if ($.inArray(scefontsize, mybbCmd.fsStr) !== -1) { fontsize = scefontsize; } else if (!isNaN(parsed)) { fontsize = parsed;
|
}
|
}
|
return '[size=' + size + ']' + content + '[/size]';
| return fontsize != -1 ? '[size=' + fontsize + ']' + content + '[/size]' : content;
|
}, html: function (token, attrs, content) {
|
}, html: function (token, attrs, content) {
|
var size = $.inArray(attrs.defaultattr, mybbCmd.fsStr) + 1; if (!isNaN(attrs.defaultattr)) {
| var size = 0, units = "", parsed = parseInt(attrs.defaultattr, 10); if (!isNaN(parsed)) {
|
size = attrs.defaultattr;
|
size = attrs.defaultattr;
|
if (size > 7) size = 7; if (size < 1)
| if (size < 1) {
|
size = 1;
|
size = 1;
|
| } else if (size > 50) { size = 50; } units = "pt"; } else { var fsStrPos = $.inArray(attrs.defaultattr, mybbCmd.fsStr); if (fsStrPos !== -1) { size = attrs.defaultattr; }
|
}
|
}
|
if (size < 0) { size = 0; } return '<font data-scefontsize="' + $.sceditor.escapeEntities(attrs.defaultattr) + '" size="' + size + '">' + content + '</font>';
| return '<font data-scefontsize="' + $.sceditor.escapeEntities(attrs.defaultattr) + '" style="font-size: ' + size + units + ';">' + content + '</font>';
|
} });
| } });
|
Zeile 182 | Zeile 208 |
---|
};
for (var i = 1; i <= 7; i++)
|
};
for (var i = 1; i <= 7; i++)
|
content.append($('<a class="sceditor-fontsize-option" data-size="' + i + '" href="#"><font size="' + i + '">' + i + '</font></a>').on('click', clickFunc));
| content.append($('<a class="sceditor-fontsize-option" data-size="' + i + '" href="#"><font style="font-size: ' + mybbCmd.fsStr[i-1] + '">' + i + '</font></a>').on('click', clickFunc));
|
editor.createDropDown(caller, 'fontsize-picker', content.get(0)); },
| editor.createDropDown(caller, 'fontsize-picker', content.get(0)); },
|
Zeile 269 | Zeile 295 |
---|
if (element.nodeName.toLowerCase() !== 'font' || !(font = $(element).attr('face'))) font = $(element).css('font-family');
|
if (element.nodeName.toLowerCase() !== 'font' || !(font = $(element).attr('face'))) font = $(element).css('font-family');
|
| var iframe = $('.sceditor-container iframe'); var editor_body = $('body', iframe.contents());
|
|
|
if (typeof font == 'string' && font != '' && font != 'defaultattr') { return '[font=' + this.stripQuotes(font) + ']' + content + '[/font]'; } else { return content; } }, html: function (token, attrs, content) {
| if (typeof font == 'string' && font != '' && font != 'defaultattr' && // Eliminate redundant [font] tags for unformatted text. // Part of the fix for the browser-dependent bug of issue #4184. font != editor_body.css('font-family')) { font = font.trim(); // Strip all-enclosing double quotes from fonts so long as // they are the only double quotes present... if (font[0] == '"' && font[font.length-1] == '"' && (font.match(/"/g) || []).length == 2) { font = font.substr(1, font.length-2); } // ...and then replace any other occurrence(s) of double quotes // in fonts with single quotes. // This is the client-side aspect of the fix for // the browser-independent bug of issue #4182. font = font.replace(/"/g, "'"); return '[font=' + font + ']' + content + '[/font]'; } else { return content; } }, html: function (token, attrs, content) {
|
if (typeof attrs.defaultattr == 'string' && attrs.defaultattr != '' && attrs.defaultattr != '{defaultattr}') { return '<font face="' + $.sceditor.escapeEntities(attrs.defaultattr) +
| if (typeof attrs.defaultattr == 'string' && attrs.defaultattr != '' && attrs.defaultattr != '{defaultattr}') { return '<font face="' + $.sceditor.escapeEntities(attrs.defaultattr) +
|
Zeile 284 | Zeile 327 |
---|
} else { return content; }
|
} else { return content; }
|
| } });
$.sceditor.formats.bbcode.set('color', { format: function (element, content) { var color, defaultColor;
var iframe = $('.sceditor-container iframe'); var editor_body = $('body', iframe.contents());
if (element.nodeName.toLowerCase() != 'font' || !(color = $(element).attr('color'))) { color = $(element).css('color'); }
color = _normaliseColour(color); defaultColor = _normaliseColour(editor_body.css('color'));
// Eliminate redundant [color] tags for unformatted text. // Part of the fix for the browser-dependent bug of issue #4184. return color != defaultColor ? '[color=' + color + ']' + content + '[/color]' : content; }, html: function (token, attrs, content) { return '<font color="' + $.sceditor.escapeEntities(_normaliseColour(attrs.defaultattr), true) + '">' + content + '</font>';
|
} });
| } });
|
Zeile 360 | Zeile 430 |
---|
});
$.sceditor.command.set("code", {
|
});
$.sceditor.command.set("code", {
|
_dropDown: function (editor, caller) { var $content;
$content = $( '<div>' +
| _dropDown: function (editor, caller) { var $content;
$content = $( '<div>' +
|
'<div>' + '<label for="code">' + editor._('Code') + ':</label> ' + '<textarea type="text" id="code"></textarea>' +
|
'<div>' + '<label for="code">' + editor._('Code') + ':</label> ' + '<textarea type="text" id="code"></textarea>' +
|
'</div>' + '<div><input type="button" class="button" value="' + editor._('Insert') + '" /></div>' + '</div>' );
| '</div>' + '<div><input type="button" class="button" value="' + editor._('Insert') + '" /></div>' + '</div>' );
|
setTimeout(function () { $content.find('#code').trigger('focus'); }, 100);
| setTimeout(function () { $content.find('#code').trigger('focus'); }, 100);
|
Zeile 381 | Zeile 451 |
---|
var val = $content.find('#code').val(), before = '[code]', end = '[/code]';
|
var val = $content.find('#code').val(), before = '[code]', end = '[/code]';
|
|
|
if (val) { before = before + val + end; end = null;
| if (val) { before = before + val + end; end = null;
|
Zeile 408 | Zeile 478 |
---|
$.sceditor.command.set('email', { _dropDown: function (editor, caller) { var $content;
|
$.sceditor.command.set('email', { _dropDown: function (editor, caller) { var $content;
|
|
|
$content = $( '<div>' + '<div>' +
| $content = $( '<div>' + '<div>' +
|
Zeile 426 | Zeile 496 |
---|
$content.find('.button').on('click', function (e) { var val = $content.find('#email').val(), description = $content.find('#des').val();
|
$content.find('.button').on('click', function (e) { var val = $content.find('#email').val(), description = $content.find('#des').val();
|
|
|
if (val) { // needed for IE to reset the last range $(editor).trigger('focus');
| if (val) { // needed for IE to reset the last range $(editor).trigger('focus');
|
Zeile 434 | Zeile 504 |
---|
if (!editor.getRangeHelper().selectedHtml() || description) { if (!description) description = val;
|
if (!editor.getRangeHelper().selectedHtml() || description) { if (!description) description = val;
|
|
|
editor.insert('[email=' + val + ']' + description + '[/email]'); } else editor.execCommand('createlink', 'mailto:' + val);
| editor.insert('[email=' + val + ']' + description + '[/email]'); } else editor.execCommand('createlink', 'mailto:' + val);
|
Zeile 442 | Zeile 512 |
---|
editor.closeDropDown(true); e.preventDefault();
|
editor.closeDropDown(true); e.preventDefault();
|
});
| });
|
editor.createDropDown(caller, 'insertemail', $content.get(0)); },
| editor.createDropDown(caller, 'insertemail', $content.get(0)); },
|
Zeile 477 | Zeile 547 |
---|
return $.sceditor.escapeEntities(token.val + content + (token.closing ? token.closing.val : '')); } });
|
return $.sceditor.escapeEntities(token.val + content + (token.closing ? token.closing.val : '')); } });
|
|
|
$.sceditor.command.set('video', { _dropDown: function (editor, caller) { var $content, videourl, videotype, videoOpts;
| $.sceditor.command.set('video', { _dropDown: function (editor, caller) { var $content, videourl, videotype, videoOpts;
|
Zeile 486 | Zeile 556 |
---|
videoOpts += '<option value="' + provider.toLowerCase() + '">' + editor._(provider) + '</option>'; }); $content = $(
|
videoOpts += '<option value="' + provider.toLowerCase() + '">' + editor._(provider) + '</option>'; }); $content = $(
|
'<div>' +
| '<div>' +
|
'<div>' + '<label for="videotype">' + editor._('Video Type:') + '</label> ' + '<select id="videotype">' + videoOpts + '</select>' + '</div>' + '<div>' + '<label for="link">' + editor._('Video URL:') + '</label> ' +
|
'<div>' + '<label for="videotype">' + editor._('Video Type:') + '</label> ' + '<select id="videotype">' + videoOpts + '</select>' + '</div>' + '<div>' + '<label for="link">' + editor._('Video URL:') + '</label> ' +
|
'<input type="text" id="videourl" value="http://" />' +
| '<input type="text" id="videourl" placeholder="http://" />' +
|
'</div>' + '<div><input type="button" class="button" value="' + editor._('Insert') + '" /></div>' + '</div>'
| '</div>' + '<div><input type="button" class="button" value="' + editor._('Insert') + '" /></div>' + '</div>'
|
Zeile 505 | Zeile 575 |
---|
if (videourl !== '' && videourl !== 'http://') editor.insert('[video=' + videotype + ']' + videourl + '[/video]');
|
if (videourl !== '' && videourl !== 'http://') editor.insert('[video=' + videotype + ']' + videourl + '[/video]');
|
editor.closeDropDown(true);
| editor.closeDropDown(true);
|
e.preventDefault(); });
| e.preventDefault(); });
|
Zeile 649 | Zeile 719 |
---|
return '<a href="' + $.sceditor.escapeUriScheme($.sceditor.escapeEntities(attrs.defaultattr)) + '">' + content + '</a>'; } });
|
return '<a href="' + $.sceditor.escapeUriScheme($.sceditor.escapeEntities(attrs.defaultattr)) + '">' + content + '</a>'; } });
|
| /** * Converts a number 0-255 to hex. * * Will return 00 if number is not a valid number. * * Copied from the SCEditor's src/formats/bbcode.js file * where it is unfortunately defined as private. * * @param {any} number * @return {string} */ function toHex(number) { number = parseInt(number, 10);
if (isNaN(number)) { return '00'; }
number = Math.max(0, Math.min(number, 255)).toString(16);
return number.length < 2 ? '0' + number : number; }
/** * Normalises a CSS colour to hex #xxxxxx format * * Copied from the SCEditor's src/formats/bbcode.js file * where it is unfortunately defined as private. * * @param {string} colorStr * @return {string} */ function _normaliseColour(colorStr) { var match;
colorStr = colorStr || '#000';
// rgb(n,n,n); if ((match = colorStr.match(/rgb\((\d{1,3}),\s*?(\d{1,3}),\s*?(\d{1,3})\)/i))) { return '#' + toHex(match[1]) + toHex(match[2]) + toHex(match[3]); }
// rgba(n,n,n,f.p); if ((match = colorStr.match(/rgba\((\d{1,3}),\s*?(\d{1,3}),\s*?(\d{1,3}),\s*?(\d*\.?\d+\s*)\)/i))) { return '#' + toHex(match[1]) + toHex(match[2]) + toHex(match[3]); }
// expand shorthand if ((match = colorStr.match(/#([0-f])([0-f])([0-f])\s*?$/i))) { return '#' + match[1] + match[1] + match[2] + match[2] + match[3] + match[3]; }
return colorStr; }
|
});
| });
|