From 7f017855907ebea1c6578b3ae78f91e7c83f8769 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Thu, 16 Feb 2012 02:59:44 +0530 Subject: [PATCH] dont show username for own and featured lists, fixes #456 check for canEditFeaturedList to enable edit link, fixes #447 --- static/js/pandora/folderList.js | 17 ++++++++++------- static/js/pandora/info.js | 10 ++++++---- 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/static/js/pandora/folderList.js b/static/js/pandora/folderList.js index db02cdf6..257f1334 100644 --- a/static/js/pandora/folderList.js +++ b/static/js/pandora/folderList.js @@ -1,8 +1,8 @@ // vim: et:ts=4:sw=4:sts=4:ft=javascript 'use strict'; pandora.ui.folderList = function(id) { - // FIXME: use canEditFeaturedLists capability, not 'admin' var i = Ox.getIndexById(pandora.site.sectionFolders[pandora.user.ui.section], id), + canEditFeaturedLists = pandora.site.capabilities.canEditFeaturedLists[pandora.user.level], that; if (pandora.user.ui.section == 'items') { var columns, items; @@ -10,7 +10,7 @@ pandora.ui.folderList = function(id) { columns = [ { clickable: function(data) { - return data.user == pandora.user.username; + return data.user == pandora.user.username || (id == 'featured' && canEditFeaturedLists); }, format: function(value, data) { return $('').attr({ @@ -25,7 +25,10 @@ pandora.ui.folderList = function(id) { id: 'user', operator: '+', tooltip: function(data) { - return data.user == pandora.user.username ? 'Edit Icon' : ''; + return data.user == pandora.user.username + || (id == 'featured' && canEditFeaturedLists) + ? 'Edit Icon' + : ''; }, visible: true, width: 16 @@ -104,7 +107,7 @@ pandora.ui.folderList = function(id) { height: '10px', padding: '3px', opacity: value == 'private' ? 0.25 : 1 - }) + }); }, id: 'status', operator: '+', @@ -240,7 +243,7 @@ pandora.ui.folderList = function(id) { pageLength: 1000, //selected: pandora.getListData().folder == id ? [pandora.user.ui._list] : [], sort: [{key: 'position', operator: '+'}], - sortable: id != 'featured' || pandora.user.level == 'admin' + sortable: id != 'featured' || canEditFeaturedLists }) .css({ left: 0, @@ -276,7 +279,7 @@ pandora.ui.folderList = function(id) { }); }); } - } else if (id == 'favorite' || (id == 'featured' && pandora.user.level == 'admin')) { + } else if (id == 'favorite' || (id == 'featured' && canEditFeaturedLists)) { // this makes the button trigger a change event, // which is already being handled in folders.js pandora.$ui.manageListsButton[id].options({value: true}); @@ -321,7 +324,7 @@ pandora.ui.folderList = function(id) { Ox.Request.clearCache(); // fixme: remove that.reloadList(); }); - } else if (id == 'featured' && pandora.user.level == 'admin') { + } else if (id == 'featured' && canEditFeaturedLists) { that.options({selected: []}); pandora.api.editList({ id: data.ids[0], diff --git a/static/js/pandora/info.js b/static/js/pandora/info.js index d6e78253..1cdd3582 100644 --- a/static/js/pandora/info.js +++ b/static/js/pandora/info.js @@ -137,7 +137,8 @@ pandora.ui.info = function() { pandora.ui.listInfo = function() { var list = pandora.user.ui._list, - editable = list.split(':')[0] == pandora.user.username, + canEditFeaturedLists = pandora.site.capabilities.canEditFeaturedLists[pandora.user.level], + editable = list.split(':')[0] == pandora.user.username || canEditFeaturedLists, that = $('