Search This Blog

Sunday, November 1, 2009

Globe and mail review of "The Ideal of Justice"

http://www.theglobeandmail.com/books/review-the-idea-of-justice-by-amartya-sen/article1335538/
From Saturday's Books section
What is justice?

Amartya Sen
$('#lead-photo').hover(function() {
$('#lead-caption').slideDown(300);
}, function() {
$('#lead-caption').slideUp(300);
});
Amartya Sen's opus is a plea for open-minded engagement and a real debate about the issues that matter most in this world
Share with friends
Close
Email

Please enter a valid e-mail address
Please enter a comma delimited list of valid e-mail addresses
Other ways of sharing:


Add to Delicious
Submit post to Digg.com
Seed this post at Newsvine
Print or License
Close
Print this page
License this story
Recommend


Article

Comments


$(document).ready(function(){
art.dividers = $('#article-tabs li.divider');
art.allCommentsRetrieved = false;
art.type = "news";
art.tinyFlash = ""; if (location.hash) {
$('#article-tabs li a').each(function(i) {
if (this.href.split('#')[1] == location.hash.split('#')[1]) {
art.defaultSelected = i;
art.tabContext = this.href.split('#')[1];
art.intialTabContext = art.tabContext;
}
});
if (art.intialTabContext == "video") {
$('#article-rail .boxr').each(function(i,box) {
box.id == "coAd" ? $(box).show() : $(box).hide();
});
}
} else {
if (art.type == 'picturecollection') {
art.tabContext = 'photos';
} else if (art.type == 'flash') {
art.tabContext = 'interactive';
} else if (art.type == 'videotabbed') {
art.tabContext = 'video';
} else {
art.tabContext = 'article';
}
art.defaultSelected = 0;
}
art.isInitialWideStateRequest = function(content) {
return ((content == 'photos' (content == 'interactive' && art.tinyFlash != "true")) && (art.intialTabContext != 'undefined' && art.intialTabContext != null));
}
art.initiateWideTabRequest = function(content, height) {
height = height + 35;
var wideName = content + '-ctr';
$('#'+wideName).addClass('selected').css({paddingTop: height+'px'});
$('#article-rail').css({paddingTop: height+20+'px'});
$('#article-relations').css({paddingTop: height+'px'});
art.intialTabContext = null;
}
art.controlComments = function(content) {
// This is needed so the comments do NOT display twice on the comments tab
if(content=='comments') {
globalPluckLocation = "comments";
if (!art.allCommentsRetrieved) {
globe.pluck.getComments(1,null, globalPluckOrder);
art.allCommentsRetrieved = true;
}
$('#latest-comments').hide();
} else {
globalPluckLocation = content;
$('#latest-comments').show();
}
}
art.tabbify = function() {
var selected = $('#article-tabs li.ui-tabs-selected')[0];
$(art.dividers).removeClass("right-selected").removeClass("left-selected");
$(selected).prev().addClass("left-selected");
$(selected).next().addClass("right-selected");
}
art.growTabs = function(content) {
$('.wide-container').removeClass('selected').css({paddingTop: 0});
var contentHeight = $('#'+content).height();
var padding = contentHeight+35;
var widePdgTop = padding + 'px';
var wideName = content + '-ctr';
if (content == "interactive" && art.tinyFlash == "true") {
return;
} else {
$('#'+wideName).addClass('selected').css({paddingTop: widePdgTop});
$('#article-relations').css({paddingTop: widePdgTop});
$('#article-rail').css({paddingTop: padding+20+'px'});
}
}
art.getGalleryImages = function(collectionId) {
if (!art.galleryImages) {
art.galleryImages = new Array();
var gimg = $("#gallery-image");
var url = "http://www.theglobeandmail.com/template/ver1-0/ajax/pictureCollectionImages.jsp";
var params = {
articleId: collectionId,
start: 0,
version: 'gm-f'
//cacheTime: '15m'
};
$.ajax({
type: 'GET',
url: url,
data: params,
dataType: 'json',
success: function(json) {
$.each(json.images, function(i, image) {
art.galleryImages.push(image);
art.galleryImages[i][0] = new Image();
art.galleryImages[i][0].src = image.src;
}); // end each
setTimeout(function() {
$('#photo-meta p.caption', gimg).text(art.galleryImages[0].caption);
$('#photo-meta p.credit em', gimg).text(art.galleryImages[0].credit);
$('#photo-count', gimg).text('1 of '+art.galleryImages.length);
$('img', gimg).attr({
src: art.galleryImages[0][0].src,
alt: art.galleryImages[0].alt,
width: art.galleryImages[0].width,
height: art.galleryImages[0].height
});
$('#galleryLoading', gimg).fadeOut(200, function() {
$(this).remove();
$(gimg).removeClass('loading').addClass('gimg-0');
$('#gallery-controls').fadeIn(1000);
$('#photo-meta',gimg).fadeIn(1000);
$('img',gimg).fadeIn(1000);
});
}, 200);
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
$('#galleryLoading')
.css({'background-image': 'none', 'width': '60%', 'text-align': 'left'})
.html("This gallery's images aren't loading properly. We're looking into it.Sorry for the inconvenience.");
console.log('Gallery error status: '+textStatus+ ' Error thrown: '+errorThrown);
}
});
}
}
art.showTab = function(event, ui, content, wideTab) {
var content = ui.tab.hash.split('#')[1]; // ie. photos, article, comments, interactive
art.controlComments(content);
if (art.type == "flash" && art.tinyFlash == "true") {
return;
}
var contentHeight = $('#'+content).height();
if (art.type == 'picturecollection') { contentHeight+=45; } else { contentHeight+=35; }
if ($.browser.msie
&& $.browser.version=='6.0'
&& (art.type=='picturecollection' art.type=='flash')) {
var fixIE6 = true;
}
if (content == wideTab) {
$('.wide-container').addClass('selected');
if (fixIE6) {
$('#article-content').css({overflow: 'visible'});
} else {
$('#article-rail').css({paddingTop: contentHeight+'px'});
}
$('#article-relations .relation:first').css({borderTopColor: '#fff'});
} else {
if (fixIE6) {
$('#article-content').css({overflow: 'hidden'});
}
$('.wide-container').removeClass('selected');
$('#article-relations .relation:first').css({borderTopColor: ''});
}
if (art.type == 'picturecollection') {
art.getGalleryImages(1335538);
}
}
art.resetWideTabs = function(removePadding) {
if (removePadding) {
$('#article-content .wide-container').removeClass('selected').css({paddingTop: 0});
$('#article-content #article-relations').css({paddingTop: 0});
} else {
$('#article-content .wide-container').removeClass('selected');
}
// since the container has had it's position reset to static (rather than absolute
// when related to a news article, there's no need to remove padding on #article-relations)
$('#article-rail').css({paddingTop: 0});
}
art.registerOmniTab = function(tab) {
// omniture
if (art.tabContext == tab) { return; }
art.tabContext = tab;
var hierarchy = s.hier1.split(':');
hierarchy.pop();
hierarchy.push(tab);
var newHierarchy = '';
$.each(hierarchy, function(i,val) {
if (i!=0) {
newHierarchy+=':'+val;
} else {
newHierarchy+=val;
}
});
s.hier1=newHierarchy;
s.pageName = newHierarchy.replace(/:/g, "-");
s.pageName = s.pageName.replace("globe-", "");
s.eVar9 = s.pageName;
void(s.t());
}
$('#article-tabs').tabs({
//fx: { opacity: 'show', duration: 20},
selected: art.defaultSelected,
select: function(event, ui) {
var content = ui.tab.hash.split('#')[1]; // ie. photos, article, comments, custom
var boxes = $('#article-rail .boxr');
if (content == 'article'
content == 'comments'
content == 'video'
content == 'twitter'
content == 'custom') {
if (content == 'video') {
// show the coad and hide the box
boxes.each(function(i,box) {
box.id == "coAd" ? $(box).show() : $(box).hide();
});
} else {
if (art.type != "videotabbed") {
boxes.each(function(i,box) {
box.id != "coAd" ? $(box).show() : $(box).hide();
});
}
}
art.resetWideTabs(true);
art.controlComments(content);
// adv.reload();
} else {
boxes.each(function(i,box) {
box.id != "coAd" ? $(box).show() : $(box).hide();
});
art.growTabs(content);
//adv.reloadAll();
}
art.tabbify();
art.registerOmniTab(content);
//art.reloadAdSpot('boxr');
}, // end select
show: function(event, ui) {
var content = ui.tab.hash.split('#')[1]; // ie. photos, article, comments, custo
if (art.isInitialWideStateRequest(content)) {
var h = $('#'+content).height();
art.initiateWideTabRequest(content,h);
art.tabbify();
} else {
if (content == "interactive" && art.tinyFlash == "true") {
art.resetWideTabs(true);
}
art.controlComments(content);
art.tabbify();
}
} // end show
});// end tabs
});
Paula Newberg
Published on Friday, Oct. 23, 2009 3:15PM EDT Last updated on Saturday, Oct. 31, 2009 2:53AM EDT
Every so often, a philosophical work comes along that is perfect for its moment. In the mid-Cold War, mid-Vietnam War period, John Rawls published A Theory of Justice, which tried to steer an course between competing moral precepts and political uncertainties. A Theory of Justice spawned generations of philosophers, many of whom have brought even greater clarity to the complex political worlds in which we organize and practice our ethics.
Almost 40 years later, Amartya Sen has returned to the subject of justice with another broad look at political argument, civic engagement and human rights. The Idea of Justice – not a theory this time, but an exploration of the ample dimensions of the field – is grand in the best sense of the word, taking on difficult subjects, and respectfully following centuries of philosophical debate while imaginatively rethinking them.

The Idea of Justice, by Amartya Sen, Belknap Press/Harvard University Press, 468 pages, $35.95
Sen stands firmly within the traditions of Anglo-American philosophy, honouring the need for political debate and public reasoning and moving beyond tradition to consider new ways to understand the foundations of political life. His intellectual interlocutors are respected companions (and often, it seems, frequent dinner partners) in search of understanding the overlapping political, economic and philosophical worlds we all now inhabit.
The Idea of Justice incorporates many of the concerns that have defined Sen's career. From his early work on inequality to more recent writings on development, identity and social violence, he has rigorously redefined the ways that the disciplines of the social sciences intersect. This latest book refines his past writings in a new context – albeit one that he has developed over many years – and will undoubtedly set many future agendas for social research.
The meaning of justice and its relationship to social norms remains a fertile field for inquiry, in no small measure because the absence of justice, and the violation of rights that it entails, is often understood to be the rationale for political conflict. The fundamental questions that motivated Rawls's work continue to inform our politics: How do we understand what justice is, how do we share and communicate it across communities, and how can we secure it?
“ This is globalism in its best form, an implicit call to ground political action in common purpose ”
At the root of Sen's volume is a strikingly simple premise: “Open-minded engagement in public reasoning is quite central to the pursuit of justice.” This is an argument for political process as an essential element of human interaction. Even more, it is an argument for political pluralism, and for deep debate about issues of profound importance to public life.
Sen's concern for reasoned engagement is at once empirical and conceptual. A Nobel Prize-winning economist with deep knowledge of the causes and consequences of poverty on social and political life, he discusses the components of a theory of justice with unusual breadth and sensitivity. When he dissects the relationships of liberty to equality, he brings decades of economic research to bear on both sides of the equation.
The Idea of Justice marries economic and political analysis to moral reasoning, and this is among the most important elements of this volume. His colleagues and predecessors might seek clarity through hypothetical argument, but Sen brings to his subject the methods and knowledge gained from a long career teaching the methods of the social sciences. His work on the ways that a free press has prevented famine is but one example of the empiricism that sets his work apart from so many others. Throughout this volume, he consistently takes on questions of economic distribution, individual initiative and state responsibility as fundamental elements of political philosophy.
Like many others whose work he cites with generosity and occasional friendly disagreement – including Brian Barry, Steven Lukes, Thomas Nagel, Thomas Pogge and Martha Nussbaum – Sen is intrigued by the intersection of values and argument. His plea for public reasoning is an argument for encouraging differences of opinion and diversity of judgment.
This is not meant, however, to justify moral relativism, but to understand how rights and democracy can function across the globe. In this sense, Sen's thesis is essentially cosmopolitan and universalist: He writes from within a world that challenges, daily, prevailing concepts of state sovereignty and individual citizenship.
The Idea of Justice focuses on rights to underscore this compelling argument. “The notion of human rights builds on our shared humanity,” Sen writes. “These rights are not derived from the citizenship of any country, or the membership of any nation, but are presumed to be claims or entitlements of every human being.”
From this premise, Sen goes even further: He deciphers the concept and practice of democracy not in terms of the institutions of a democratic state, but in terms of its “capacity to enrich reasoned engagement.” Democracy “has to be judged not just by the institutions that formally exist, but by the extent to which different voices from diverse sections can actively be heard.”
These notions – that states are not the sole repositories of human rights, and the capacity to participate democratically is a necessary condition for satisfying claims to justice – are global in premise and reach. This is globalism in its best form, an implicit call to ground political action in common purpose. “The protective power of democracy” is, in Sen's concept, the basis for seeking and maintaining a shared sense of justice.
Surely this is an idea of justice meant for a political age facing profound challenges of climate change, health, resources and, yes, justice. No doubt a raft of politicians wedded to the traditions of sovereignty would approach Sen's arguments skeptically. But the global commons is the forum for our future security; recognizing this, The Idea of Justice transcends political convention, expansively and elegantly. Read it front to back as a logical rethinking of classical political theory; read it back to front as an agenda of pressing, shared concerns..
Either way, this is a volume worth its considerable weight and length. In an era typified by increasingly contentious politics, violent challenges to states and societies, and elusive (and often ignored) norms for global political engagement, The Idea of Justice is a call for civility in the best sense of the word, and a model of gracious intellectual engagement.
Paula Newberg is the Marshall B. Coyne Director of the Institute for the Study of Diplomacy at Georgetown University.

No comments:

Post a Comment