1
0
mirror of https://github.com/google/nomulus synced 2026-02-04 12:02:30 +00:00

Rename some overlooked uses of "white-list" and "blacklist" (#960)

* Rename some overlooked uses of "white-list" and "blacklist"
This commit is contained in:
Ben McIlwain
2021-02-08 16:01:18 -05:00
committed by GitHub
parent 0e74df82df
commit d73e557acc
3 changed files with 7 additions and 7 deletions

View File

@@ -938,7 +938,7 @@ soy.$$HTML5_VOID_ELEMENTS_ = new RegExp(
*/
soy.$$stripHtmlTags = function(value, opt_tagAllowList) {
if (!opt_tagAllowList) {
// If we have no white-list, then use a fast track which elides all tags.
// If we have no allowlist, then use a fast track which elides all tags.
return String(value)
.replace(soy.esc.$$HTML_TAG_REGEX_, '')
// This is just paranoia since callers should normalize the result
@@ -1003,7 +1003,7 @@ soy.$$stripHtmlTags = function(value, opt_tagAllowList) {
// Now html contains no tags or less-than characters that could become
// part of a tag via a replacement operation and tags only contains
// approved tags.
// Reinsert the white-listed tags.
// Reinsert the allowlisted tags.
html = html.replace(/\[(\d+)\]/g, function(_, index) {
if (attrs[index] && tags[index]) {
return tags[index].substr(0, tags[index].length - 1) + attrs[index] + '>';