
2022 Silver Gavels go to book by Anita Hill, documentary about trailblazer Pauli Murray
May 18, 2022, 11:00 am CDT
- !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs'); Tweet
- lang: en_US
-
Image from Shutterstock.
Looking for your next read, TV show or podcast? Start with one of the eight winners of the ABA’s 2022 Silver Gavel Awards for Media and the Arts.
The ABA on Wednesday announced the Silver Gavel Awards, which recognize outstanding work that fosters the public’s understanding of law and the legal system. This year, the 18-member Standing Committee on Gavel Awards also selected four honorable mentions from the 29 finalists announced in March.
“The American Bar Association conducts an extensive review of the entrants and undertakes a deliberative process to select Silver Gavel winners and Honorable Mentions,” Sharon Stern Gerstman, chair of the Standing Committee on Gavel Awards, said in a press release. “We congratulate all of the 2022 awardees for their dedication and excellent work toward advancing the American public’s understanding of the law and the justice system.”
The Silver Gavel Awards have been presented each year since 1958. Eligible categories include books, commentaries, documentaries, drama and literature, magazines, multimedia, newspapers, radio and television, but not every category receives an award every year.
Gender violence, civil rights, legal history, cold cases, discrimination, civics and the pursuit of justice are among the topics highlighted by the 2022 awardees, according to the press release.
ABA President Reginald Turner will present the Silver Gavels and honorable mentions on July 12 at the National Press Club in Washington, D.C. Alan C. Miller, a Pulitzer Prize-winning journalist and founder and CEO of the News Literacy Project, will give the keynote speech. The ceremony will also be livestreamed.
Here is the complete list of winners:
BOOKSSilver Gavel: Believing—Our Thirty-Year Journey to End Gender Violence by Anita Hill; Viking Books
COMMENTARYSilver Gavel: “Punitive Excess”: Brennan Center for Justice; Lauren-Brooke Eisen, director, justice program; Daniel Okrent, senior fellow
DOCUMENTARIESSilver Gavel: My Name is Pauli Murray: Amazon; Betty West and Julie Cohen, directors; Talleah Bridges McMahon, producer; Claudia Raschke, DP; Cinque Northern, editor
MAGAZINESSilver Gavel: “Black Legal History in Oklahoma: May 2021 Oklahoma Bar Journal”: Oklahoma Bar Association/Oklahoma Bar Journal; John Morris Williams, executive director/editor in chief; Lori Rasmussen, communications director; Melissa DeLacerda, chairperson; Lauren Rimmer, communications specialist; Carol Manning, communications director
Honorable Mention: “Legal Roadblocks to Police Accountability”: Gateway Journalism Review/Pulitzer Center; William Freivogel, publisher/grantee; Kallie Cox and Orli Sheffey, reporters; Steve Edwards, illustrator; Abbey La Tour, design chief/photographer; Jackie Spinner, editor
MULTIMEDIASilver Gavel: “Un(re)solved”: Frontline; Tamara Shogaolu, creative director
NEWSPAPERSSilver Gavel: “The Real Damage”: The Washington Post; Hannah Dreier, national enterprise reporter; Andrew Ba Tran, investigative data reporter
Honorable Mention: “Unsettled—Cashing in on Accident Victims”: Star Tribune; Jeffrey Meitrodt, investigative reporter; Nicole Norfleet and Adam Belz, reporters; Jeff Wheeler, photojournalist; C.J. Sinner, director of graphics & data visuals; Thomas Oide, digital designer
RADIOSilver Gavel: “Civics 101: Supreme Court Series”: Civics 101; Nick Capodice, host; Hannah McCarthy, host/producer; Jacqui Fulton, producer; Erika Janik, executive producer
Honorable Mention: “On Our Watch”: National Public Radio/KQED; Liana Simstrom, supervising producer/project manager; Sukey Lewis, host/reporter; Sandhya Dirks, producer/reporter; Nicole Beemsterboer, Alex Emslie and Leila Day, editors; Huo Jingnan, data editor; Adelina Lancianese, producer; Nina Sparling and Cynthia Betubiza, assistant producers
TELEVISIONSilver Gavel: “A Promise to Ahmaud”: 48 Hours; Omar Villafranca, correspondent
Honorable Mention: “60 Minutes: Attack on the Judiciary”; CBS News 60 Minutes; Bill Owens, executive producer; Tanya Simon, executive editor; Bill Whitaker, correspondent; Heather Abbott, producer; LaCrai Mitchell, associate producer; Craig Crawford, editor
See also:
ABAJournal.com: “2021 Silver Gavel Awards honor works on court secrecy, racial justice, women’s rights”
ABAJournal.com: “Silver Gavel Awards honor works on jailing pregnant women, judicial indiscretion”
$( document ).ready(function() { var slidesFetched = false; var handleGalleryClick = function() { var $oldItem = $('.gallery_container'); $('.gallery_container .arrows a').click(function(e) { e.preventDefault(); $arrow = $(this); if (! slidesFetched) { $arrow.closest('.gallery_slide').css('opacity', '0.3'); var url = $(this).attr('href').replace('/gallery/', '/gallery/slides/'); $.get(url, function(data) { var $slides = $(data); $slides = $slides.filter('.gallery_container'); $('.gallery_container').replaceWith($slides); $slides = $('.gallery_container'); $slides.find('.arrows a').click(function(e2) { e2.preventDefault(); var $slideWrapper = $(this).closest('.gallery_container'); var $arrowContainer = $(this).closest('.arrows'); if ($arrowContainer.hasClass('previous')) { $slideWrapper.removeClass('active'); $slideWrapper.prev().addClass('active'); } else if ($arrowContainer.hasClass('next')) { $slideWrapper.removeClass('active'); $slideWrapper.next().addClass('active'); } changeSlide($('.cell-'+$(this).attr('data-slideid'))); }); changeSlide($('.cell-'+$arrow.attr('data-slideid'))); slidesFetched = true; }); } changeSlide($('.cell-'+$(this).attr('data-slideid'))); return false; }); var changeSlide = function($cell) { $('.slide-'+$cell.attr('data-slideid')).addClass('active').siblings().removeClass('active'); $cell.addClass('active').siblings().removeClass('active'); moveFilmstripCells($cell); // Hide filmstrip arrows if we're on the first/last slide. if ($('.gallery_container.active').find('.arrows.previous').length > 0) { $('#filmstrip_container .arrows.previous').css('visibility', 'visible'); } else { $('#filmstrip_container .arrows.previous').css('visibility', 'hidden'); } if ($('.gallery_container.active').find('.arrows.next').length > 0) { $('#filmstrip_container .arrows.next').css('visibility', 'visible'); } else { $('#filmstrip_container .arrows.next').css('visibility', 'hidden'); } }; var $cells = $('#filmstrip_container .cell'); var totalCells = $cells.length; var totalVisibleCells = $cells.filter('.visible').length; var pivotPoint = Math.floor(totalVisibleCells / 2); var moveFilmstripCells = function($activeCell) { var $visibleCells = $cells.filter('.visible'); var activeCellIndex = $cells.index($activeCell); var activeCellVisibleIndex = $visibleCells.index($activeCell); var firstVisibleCellIndex = $cells.index($cells.filter('.visible:first')); var lastVisibleCellIndex = $cells.index($cells.filter('.visible:last')); var cellsToMove = 0; var startingPoint = 0; // Do nothing if active cell is at the pivot point. if (activeCellVisibleIndex == pivotPoint) return; // Active cell is left of the pivot point. if (activeCellVisibleIndex < pivotPoint) { // Do nothing if the cell's index and visible index are identical, because that means // we don't have room to shift. if (activeCellIndexES by OMG
Euro-Savings.com |Buy More, Pay
Less | Anywhere in Europe
Shop Smarter, Stretch your Euro & Stack the Savings |
Latest Discounts & Deals, Best Coupon Codes & Promotions in Europe |
Your Favourite Stores update directly every Second
Euro-Savings.com or ES lets you buy more and pay less anywhere in Europe. Shop Smarter on ES Today. Sign-up to receive Latest Discounts, Deals, Coupon Codes & Promotions. With Direct Brand Updates every second, ES is Every Shopper’s Dream come true! Stretch your dollar now with ES. Start saving today!
Originally posted on: https://www.abajournal.com/news/article/2022-silver-gavels-go-to-book-by-anita-hill-documentary-about-trailblazer-pauli-murray/?utm_source=feeds&utm_medium=rss&utm_campaign=site_rss_feeds