I really like my Mass Media book; not only does it have cases that I'm actually want to read, but Diamond isn't forcing us to read all the extra stuff. We just finished "defamation" and now we've moved onto "privacy" issues. The first case (Haynes v. Alfred A Knopf, Inc., 8 F.3d 1222 (7th Cir. 1993)) is about a man who sued because Nicholas Lemann wrote a book using the man's ex-wife's life story to illustrate his points about the effects of blacks moving to the North in the mid 20th century. The husband said the book depicted his "sex life" and "ridicules" his "lovemaking", which is libelous and an invasion of privacy. The court finds no sexual acts or other intimate details described in the book, saying "Entering one's bedroom with a bottle in one hand and a cigarette in the other is not foreplay." Now that's the kind of rule of law I can get behind.
// Values that can be used in other PHP code on the page $paginate_num_pages = 0; $paginate_num_sections = 0; $paginate_page_selector = 'page'; $paginate_current_page = $_GET['page']; // Pin page selector to a valid number (or 'all') if($paginate_current_page=='') $paginate_current_page = '1'; if($paginate_current_page != 'all') { if($paginate_current_page == 'first') $paginate_current_page = 1; elseif($paginate_current_page == 'last') $paginate_current_page = 0; elseif($paginate_current_page < 1) $paginate_current_page = 1; elseif($paginate_current_page > 0) $paginate_current_page = 0; $paginate_sections = array( 0 ); $paginate_top_section = $paginate_sections[$paginate_current_page-1]+1; $paginate_bottom_section = $paginate_sections[$paginate_current_page]; } else { $paginate_top_section = 1; $paginate_bottom_section = 0; } $paginate_self = '&' . $_SERVER['QUERY_STRING'] . '&'; $paginate_self = preg_replace("/&page=[^&]*&/", "&", $paginate_self); $paginate_self = substr($paginate_self, 1, strlen($paginate_self) - 1); if($paginate_self == '&') $paginate_self = ''; else $paginate_self = htmlentities($paginate_self); $paginate_self = basename($_SERVER['PHP_SELF']) . "?${paginate_self}page"; ?> Posted by Kristina at September 14, 2004 05:48 PM