Skip to content

Commit 44f877c

Browse files
author
OpenShift Bot
committed
bump(github.com/openshift/origin-web-console): d3402a50e89c5d476f9a41f6e4ac964eaeceddd0
1 parent ccb2405 commit 44f877c

File tree

1 file changed

+19
-17
lines changed

1 file changed

+19
-17
lines changed

pkg/assets/bindata.go

+19-17
Original file line numberDiff line numberDiff line change
@@ -6006,27 +6006,29 @@ a !== b && (localStorage.setItem("monitoring.eventsidebar.collapsed", c.renderOp
60066006
}));
60076007
} ]), angular.module("openshiftConsole").controller("MembershipController", [ "$filter", "$location", "$routeParams", "$scope", "$timeout", "$uibModal", "AuthService", "AuthorizationService", "DataService", "ProjectsService", "MembershipService", "RoleBindingsService", "RolesService", function(a, b, c, d, e, f, g, h, i, j, k, l, m) {
60086008
var n, o = c.project, p = a("humanizeKind"), q = a("annotation"), r = [], s = {
6009-
errorReason:_.template('Reason: "<%- httpErr %>"'),
60106009
notice:{
6011-
yourLastRole:_.template('Removing the role "<%- roleName %>" may completely remove your ability to see this project.')
6010+
yourLastRole:_.template('Removing the role "<%= roleName %>" may completely remove your ability to see this project.')
60126011
},
60136012
warning:{
60146013
serviceAccount:_.template("Removing a system role granted to a service account may cause unexpected behavior.")
60156014
},
60166015
remove:{
60176016
areYouSure:{
6017+
html:{
60186018
subject:_.template("Are you sure you want to remove <strong><%- roleName %></strong> from the <%- kindName %> <strong><%- subjectName %></strong>?"),
60196019
self:_.template("Are you sure you want to remove <strong><%- roleName %></strong> from <strong><%- subjectName %></strong> (you)?")
6020+
}
60206021
},
6021-
success:_.template('The role "<%- roleName %>" was removed from "<%- subjectName %>".'),
6022-
error:_.template('The role "<%- roleName %>" was not removed from "<%- subjectName %>".')
6022+
success:_.template('The role "<%= roleName %>" was removed from "<%= subjectName %>".'),
6023+
error:_.template('The role "<%= roleName %>" was not removed from "<%= subjectName %>".')
60236024
},
60246025
update:{
60256026
subject:{
6026-
success:_.template('The role "<%- roleName %>" was given to "<%- subjectName %>".'),
6027-
error:_.template('The role "<%- roleName %>" was not given to "<%- subjectName %>".')
6028-
}
6027+
success:_.template('The role "<%= roleName %>" was given to "<%= subjectName %>".'),
6028+
error:_.template('The role "<%= roleName %>" was not given to "<%= subjectName %>".')
60296029
}
6030+
},
6031+
errorReason:_.template('Reason: "<%= httpErr %>"')
60306032
}, t = function(a, b, c, e, f) {
60316033
f = f || d, f.alerts[a] = {
60326034
type:b,
@@ -6049,12 +6051,12 @@ errorNotification:!1
60496051
d.disableAddForm = !0, l.create(b, c, o, n).then(function() {
60506052
u(), v(), t("rolebindingCreate", "success", s.update.subject.success({
60516053
roleName:b.metadata.name,
6052-
subjectName:_.escape(c.name)
6054+
subjectName:c.name
60536055
}));
60546056
}, function(d) {
60556057
u(), t("rolebindingCreateFail", "error", s.update.subject.error({
60566058
roleName:b.metadata.name,
6057-
subjectName:_.escape(c.name)
6059+
subjectName:c.name
60586060
}), s.errorReason({
60596061
httpErr:a("getErrorDetails")(d)
60606062
}));
@@ -6063,12 +6065,12 @@ httpErr:a("getErrorDetails")(d)
60636065
d.disableAddForm = !0, l.addSubject(b, c, e, n).then(function() {
60646066
u(), v(), t("rolebindingUpdate", "success", s.update.subject.success({
60656067
roleName:b.roleRef.name,
6066-
subjectName:_.escape(c.name)
6068+
subjectName:c.name
60676069
}));
60686070
}, function(d) {
60696071
u(), t("rolebindingUpdateFail", "error", s.update.subject.error({
60706072
roleName:b.roleRef.name,
6071-
subjectName:_.escape(c.name)
6073+
subjectName:c.name
60726074
}), s.errorReason({
60736075
httpErr:a("getErrorDetails")(d)
60746076
}));
@@ -6118,18 +6120,18 @@ return a ? e + (q(a, "description") || b) :b;
61186120
var A = function(a, b, c, e) {
61196121
var f = {
61206122
alerts:{},
6121-
detailsMarkup:s.remove.areYouSure.subject({
6123+
detailsMarkup:s.remove.areYouSure.html.subject({
61226124
roleName:c,
61236125
kindName:p(b),
6124-
subjectName:_.escape(a)
6126+
subjectName:a
61256127
}),
61266128
okButtonText:"Remove",
61276129
okButtonClass:"btn-danger",
61286130
cancelButtonText:"Cancel"
61296131
};
6130-
return _.isEqual(a, e) && (f.details = s.remove.areYouSure.self({
6132+
return _.isEqual(a, e) && (f.detailsMarkup = s.remove.areYouSure.html.self({
61316133
roleName:c,
6132-
subjectName:_.escape(a)
6134+
subjectName:a
61336135
}), k.isLastRole(d.user.metadata.name, d.roleBindings) && t("currentUserLastRole", "error", s.notice.yourLastRole({
61346136
roleName:c
61356137
}), null, f)), _.isEqual(b, "ServiceAccount") && _.startsWith(c, "system:") && t("editingServiceAccountRole", "error", s.warning.serviceAccount(), null, f), f;
@@ -6161,12 +6163,12 @@ return i;
61616163
l.removeSubject(c, g, d.roleBindings, n).then(function() {
61626164
h ? b.url("./") :(v(), t("rolebindingUpdate", "success", s.remove.success({
61636165
roleName:g,
6164-
subjectName:_.escape(c)
6166+
subjectName:c
61656167
})));
61666168
}, function(b) {
61676169
t("rolebindingUpdateFail", "error", s.remove.error({
61686170
roleName:g,
6169-
subjectName:_.escape(c)
6171+
subjectName:c
61706172
}), s.errorReason({
61716173
httpErr:a("getErrorDetails")(b)
61726174
}));

0 commit comments

Comments
 (0)