Skip to content

Commit

Permalink
Merge branch 'MDL-55012-master' of git://github.com/damyon/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
danpoltawski committed Jul 18, 2016
2 parents 2dbaaa9 + 91445c6 commit 151aaa2
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1528,14 +1528,6 @@ EditorClean.prototype = {

// Run some more rules that care about quotes and whitespace.
rules = [
// Get all style attributes so we can work on them.
{regex: /(<[^>]*?style\s*?=\s*?")([^>"]*)(")/gi, replace: function(match, group1, group2, group3) {
// Remove MSO-blah, MSO:blah style attributes.
group2 = group2.replace(/(?:^|;)[\s]*MSO[-:](?:&[\w]*;|[^;"])*/gi,"");
// Remove backgroud color style.
group2 = group2.replace(/background-color:.*?;/gi,"");
return group1 + group2 + group3;
}},
// Get all class attributes so we can work on them.
{regex: /(<[^>]*?class\s*?=\s*?")([^>"]*)(")/gi, replace: function(match, group1, group2, group3) {
// Remove MSO classes.
Expand All @@ -1548,6 +1540,9 @@ EditorClean.prototype = {
{regex: /<a [^>]*?name\s*?=\s*?"OLE_LINK\d*?"[^>]*?>\s*?<\/a>/gi, replace: ""}
];

// Clean all style attributes from the text.
content = this._cleanStyles(content);

// Apply the rules.
content = this._filterContentWithRules(content, rules);

Expand All @@ -1560,6 +1555,33 @@ EditorClean.prototype = {
return content;
},

/**
* Clean all inline styles from pasted text.
*
* This code intentionally doesn't use YUI Nodes. YUI was quite a bit slower at this, so using raw DOM objects instead.
*
* @method _cleanStyles
* @private
* @param {String} content The content to clean
* @return {String} The cleaned HTML
*/
_cleanStyles: function(content) {
var holder = document.createElement('div');
holder.innerHTML = content;
var elementsWithStyle = holder.querySelectorAll('[style]');
var i = 0;

for (i = 0; i < elementsWithStyle.length; i++) {
elementsWithStyle[i].removeAttribute('style');
}

var elementsWithClass = holder.querySelectorAll('[class]');
for (i = 0; i < elementsWithClass.length; i++) {
elementsWithClass[i].removeAttribute('class');
}

return holder.innerHTML;
},
/**
* Clean empty or un-unused spans from passed HTML.
*
Expand Down
Loading

0 comments on commit 151aaa2

Please sign in to comment.