HDFS-15503. File and directory permissions are not able to be modified from WebUI.
This commit is contained in:
parent
eac558380f
commit
82f3ffcd64
@ -108,7 +108,8 @@
|
||||
*/
|
||||
function view_perm_details(e, filename, abs_path, perms) {
|
||||
$('.explorer-perm-links').popover('destroy');
|
||||
e.popover({html: true, content: $('#explorer-popover-perm-info').html(), trigger: 'focus'})
|
||||
setTimeout(function() {
|
||||
e.popover({html: true,sanitize: false, content: $('#explorer-popover-perm-info').html(), trigger: 'focus'})
|
||||
.on('shown.bs.popover', function(e) {
|
||||
var popover = $(this), parent = popover.parent();
|
||||
//Convert octal to binary permissions
|
||||
@ -122,6 +123,7 @@
|
||||
});
|
||||
})
|
||||
.popover('show');
|
||||
}, 100);
|
||||
}
|
||||
|
||||
// Use WebHDFS to set permissions on an absolute path
|
||||
|
@ -108,7 +108,8 @@
|
||||
*/
|
||||
function view_perm_details(e, filename, abs_path, perms) {
|
||||
$('.explorer-perm-links').popover('destroy');
|
||||
e.popover({html: true, content: $('#explorer-popover-perm-info').html(), trigger: 'focus'})
|
||||
setTimeout(function() {
|
||||
e.popover({html: true,sanitize: false, content: $('#explorer-popover-perm-info').html(), trigger: 'focus'})
|
||||
.on('shown.bs.popover', function(e) {
|
||||
var popover = $(this), parent = popover.parent();
|
||||
//Convert octal to binary permissions
|
||||
@ -122,6 +123,7 @@
|
||||
});
|
||||
})
|
||||
.popover('show');
|
||||
}, 100);
|
||||
}
|
||||
|
||||
// Use WebHDFS to set permissions on an absolute path
|
||||
|
Loading…
Reference in New Issue
Block a user