├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── ftd_tweets.py ├── getobits.py ├── publishsite.py ├── requirements.txt ├── schema.sql ├── site ├── about.md ├── atom.xml ├── entries.json ├── error.html ├── favicon.ico ├── imgs │ ├── cc-by.png │ ├── fpf-logo.png │ └── ftd-logo.png ├── index.html ├── main.css ├── normalize.css ├── robots.txt └── rss.xml └── updatesite.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-generated=true 2 | *.css linguist-vendored=true 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | config.yaml 2 | *.db 3 | *.pdf 4 | *.html 5 | *~ 6 | __pycache__/* 7 | .env 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FOIA The Dead 2 | 3 | FOIA The Dead is a "morbid transparency project" that creates automated public records requests for the subjects of newly published obituaries. Because the Freedom of Information Act limits access to certain private information about living people, the project occasionally uncovers records that would have previously been withheld. 4 | 5 | This repository contains the script that fetches obituaries (currently only from the *New York Times*) and creates a record request based on the information those obituaries contain. The resulting requests were previously sent via email to the FBI, but now are delivered via the [Muckrock](https://www.muckrock.com) API. 6 | 7 | This repository also contains the scripts that publish the project's results at [foiathedead.org](https://foiathedead.org). Those HTML pages are generated with Python, based on information stored in a SQLite database that tracks the project's requests through publication. 8 | 9 | FOIA The Dead is a Special Project of the [Freedom of the Press Foundation](https://freedom.press), and written and maintained by [Parker Higgins](https://twitter.com/xor). 10 | -------------------------------------------------------------------------------- /ftd_tweets.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # Tweets from the FOIA The Dead script. 3 | # Tweets a subset of new requests, and blog post updates with digests. 4 | 5 | import yaml 6 | from twython import Twython 7 | 8 | config = yaml.load(open("config.yaml")) 9 | 10 | twitter_account = config['twitter_account'] 11 | twitter_app_key = config['twitter_app_key'] 12 | twitter_app_secret = config['twitter_app_secret'] 13 | twitter_oauth_token = config['twitter_oauth_token'] 14 | twitter_oauth_token_secret = config['twitter_oauth_token_secret'] 15 | 16 | twitter = Twython(twitter_app_key, twitter_app_secret, twitter_oauth_token, twitter_oauth_token_secret) 17 | 18 | def tweet_request(name,obit_url): 19 | twitter.update_status(status='Just filed a FOIA request for the FBI file of {name}. NY Times obituary: {obit_url}'.format(**locals())) 20 | 21 | def tweet_digest_post(post_title,post_url): 22 | twitter.update_status(status='Blog post: {post_title} {post_url}'.format(**locals())) 23 | -------------------------------------------------------------------------------- /getobits.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # Grabs the last 10 NYT obits, prepares the text of a FOIA 3 | # request for their FBI files, and sends that request to the FBI. 4 | 5 | import os, requests, json, datetime, sqlite3 6 | import yaml, pdfkit, html 7 | import boto3 8 | from datetime import datetime 9 | from slugify import slugify 10 | 11 | config = yaml.load(open("config.yaml")) 12 | 13 | db = config['db'] 14 | conn = sqlite3.connect(db) 15 | 16 | def edit_name(headline): 17 | name_check = "n" 18 | while name_check == "n": 19 | print("\nOK, you can edit the name. Here's what the headline says:\n".format(**locals())) 20 | print("{headline}\n".format(**locals())) 21 | new_name = input("What's the name? ") 22 | name_check = input("\nRoger that. Does {new_name} look good? (Y/n) ".format(**locals())) 23 | return new_name 24 | 25 | def nyt_api_request(key): 26 | """Query NYT API and return recent obits.""" 27 | api_url = "https://api.nytimes.com/svc/search/v2/articlesearch.json?fq=type_of_material:%28%22Obituary%20%28Obit%29%22%29&sort=newest&fl=headline,web_url,snippet,pub_date&api-key=" + key 28 | 29 | res = requests.get(api_url) 30 | res.raise_for_status() 31 | 32 | api_results = json.loads(res.text) 33 | 34 | return api_results['response']['docs'] 35 | 36 | def get_past_requests(): 37 | """Query db and return two lists: past names and headlines.""" 38 | past_requests_tuples = list(conn.execute( 39 | 'select name,obit_headline from requests order by id desc')) 40 | return map(list, zip(*past_requests_tuples)) 41 | 42 | def process_obit(obit, past_names, past_headlines): 43 | obit_source = "The New York Times" 44 | # May be more sources in the future, for now just NYT. 45 | obit_headline = html.unescape(obit['headline']['main']) 46 | 47 | # This line converts NYT's ISO formatted pub_date 48 | # to a human-readable format. 49 | obit_date = datetime.strftime(datetime.strptime(obit['pub_date'],"%Y-%m-%dT%H:%M:%S%z"),"%B %-d, %Y") 50 | pdf_date = datetime.strftime(datetime.strptime(obit['pub_date'],"%Y-%m-%dT%H:%M:%S%z"),"%Y%m%d") 51 | 52 | # guesses the name of the person by the headline up 53 | # until the comma. 54 | # Brittle, but matches NYT syntax mostly without fail so far. 55 | dead_person = obit_headline.split(",")[0] 56 | 57 | obit_url = obit['web_url'] 58 | 59 | doc_request = "A copy of all documents or FBI files pertaining to {dead_person}, an obituary of whom was published in {obit_source} on {obit_date} under the headline \"{obit_headline}\". Please see attached PDF copy of that obituary, which may also be found at {obit_url}.".format(**locals()) 60 | 61 | print("\nPreparing a fax with the following request:\n") 62 | 63 | print(doc_request) 64 | 65 | if dead_person in past_names: 66 | print("\nBut it looks like you've already sent a request for {dead_person}.".format(**locals())) 67 | elif obit_headline in past_headlines: 68 | print("\nBut it looks like you've already sent a request for the obit \"{obit_headline}\".".format(**locals())) 69 | 70 | should_request = input("\nLook good? (Y)es/(e)dit/(s)kip/(q)uit ") 71 | 72 | if should_request == "" or should_request == "y" or should_request == "Y": 73 | 74 | now_string = str(datetime.utcnow()) 75 | 76 | return [dead_person, doc_request, obit_url, 77 | obit_headline, now_string, pdf_date] 78 | 79 | elif should_request == "e": 80 | new_name = edit_name(obit_headline) 81 | doc_request = "A copy of all documents or FBI files pertaining to {new_name}, an obituary of whom was published in {obit_source} on {obit_date} under the headline \"{obit_headline}\". Please see attached PDF copy of that obituary, which may also be found at {obit_url}.".format(**locals()) 82 | now_string = str(datetime.utcnow()) 83 | return [new_name, doc_request, obit_url, 84 | obit_headline, now_string, pdf_date] 85 | 86 | elif should_request == "s": 87 | return None 88 | 89 | elif should_request == "q": 90 | return "q" 91 | 92 | def send_muckrock(request): 93 | mr_url = config['mr_url'] 94 | mr_token = config['mr_token'] 95 | jurisdiction = config['mr_pk'] 96 | agency = config['mr_agency'] 97 | 98 | req_name = request[0] 99 | req_request = request[1] 100 | req_url = request[2] 101 | req_headline = request[3] 102 | req_time = request[4] 103 | req_date = request[5] 104 | 105 | print("\nHandcrafting a PDF of the obituary of {req_name}.".format(**locals())) 106 | 107 | slug = slugify(req_name) 108 | 109 | req_pdf_filename = slug + "-nyt-obit-" + req_date + ".pdf" 110 | 111 | try: 112 | pdfkit.from_url(req_url, 113 | "pdfs/" + req_pdf_filename, 114 | options={'quiet': '', 'disable-javascript': '', 'no-outline': '', 115 | 'no-images': '', 'page-size': 'letter'}) 116 | except OSError as error: 117 | if "code 1" in str(error): 118 | print("\nAn OSError occurred, but it's probably not a big deal.") 119 | else: 120 | print("\n!!! NOT SENDING a request for {req_name}, due to this error:\n {error}".format(**locals())) 121 | return 122 | 123 | s3 = boto3.resource('s3') 124 | 125 | with open('pdfs/' + req_pdf_filename, 'rb') as f: 126 | s3.meta.client.upload_fileobj(f, "ftd-pdfs", 127 | req_pdf_filename, 128 | ExtraArgs = {'ContentType':'application/pdf'}) 129 | 130 | print("\nUploading PDF to S3 as {req_pdf_filename}.".format(**locals())) 131 | 132 | req_pdf_url = config['s3_root'] + req_pdf_filename 133 | 134 | print("\nSending FOIA request for {req_name} file via Muckrock.".format(**locals())) 135 | 136 | mr_data = json.dumps({ 137 | 'jurisdiction': jurisdiction, 138 | 'agency': agency, 139 | 'title': req_name + ", FBI file", 140 | 'document_request': req_request, 141 | 'attachments': [req_pdf_url]}) 142 | 143 | mr_headers = {'Authorization': 'Token {}'.format(mr_token), 144 | 'content-type': 'application/json'} 145 | 146 | r = requests.post(mr_url + 'foia/', 147 | headers = mr_headers, 148 | data = mr_data) 149 | 150 | response = r.json() 151 | 152 | if response['status'] == 'FOI Request submitted': 153 | conn.execute(""" 154 | insert into requests (name, obit_headline, obit_url, requested_at, slug) 155 | values ('{req_name}', '{req_headline}', '{req_url}', '{req_time}','{slug}') 156 | """.format(**locals())) 157 | 158 | conn.commit() 159 | 160 | def main(): 161 | docs = nyt_api_request(config['nyt_api_key']) 162 | 163 | past_names, past_headlines = get_past_requests() 164 | 165 | to_send = [] 166 | 167 | for obit in docs: 168 | request = process_obit(obit, past_names, past_headlines) 169 | 170 | if request == "q": 171 | break 172 | elif request is not None: 173 | to_send.append(request) 174 | 175 | for request in to_send: 176 | send_muckrock(request) 177 | 178 | conn.close() 179 | 180 | print("\nAll done. Pleasure doing business with you.") 181 | 182 | if __name__ == '__main__': 183 | main() 184 | -------------------------------------------------------------------------------- /publishsite.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # Publishes static site created by updatesite.py to Amazon S3. 3 | 4 | import boto3, mimetypes, os 5 | 6 | def main(): 7 | s3 = boto3.resource('s3') 8 | 9 | os.chdir('site') 10 | 11 | contents = [os.path.join(root, leaf) for root, folders, files in os.walk(".") for leaf in files] 12 | keys = [leaf.lstrip("./") for leaf in contents] 13 | 14 | for index in range(len(contents)): 15 | mime = mimetypes.guess_type(keys[index]) 16 | 17 | if mime[0]: 18 | print("Uploading " + keys[index]) 19 | s3.meta.client.upload_file(contents[index], 20 | "foiathedead.org", keys[index], ExtraArgs = 21 | {'ContentType':mime[0]}) 22 | 23 | else: 24 | print("Not uploading " + keys[index] + " because it has a nonstandard mimetype.") 25 | 26 | print("All uploaded.") 27 | 28 | if __name__ == "__main__": 29 | main() 30 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | blessings==1.6 2 | boto3==1.7.81 3 | botocore==1.10.81 4 | bpython==0.15 5 | curtsies==0.2.6 6 | docutils==0.14 7 | dominate==2.3.5 8 | feedgen==0.7.0 9 | greenlet==0.4.10 10 | html2text==2018.1.9 11 | jmespath==0.9.3 12 | lxml==4.2.5 13 | Markdown==3.0.1 14 | oauthlib==1.1.1 15 | pdfkit==0.6.1 16 | pkg-resources==0.0.0 17 | pyaml==15.8.2 18 | Pygments==2.1.3 19 | python-dateutil==2.7.3 20 | python-documentcloud==1.1.0 21 | python-slugify==1.2.5 22 | PyYAML==3.11 23 | requests==2.9.1 24 | requests-oauthlib==0.6.1 25 | rfc3987==1.3.8 26 | s3transfer==0.1.13 27 | six==1.10.0 28 | twython==3.3.0 29 | Unidecode==1.0.22 30 | wcwidth==0.1.7 31 | -------------------------------------------------------------------------------- /schema.sql: -------------------------------------------------------------------------------- 1 | -- Schema for FOIA The Dead requests 2 | 3 | create table requests ( 4 | id integer primary key autoincrement not null, 5 | name text, 6 | obit_headline text, 7 | obit_url text, 8 | requested_at datetime, 9 | documentcloud_id text, 10 | slug text, 11 | short_description text, 12 | long_description text 13 | ); 14 | -------------------------------------------------------------------------------- /site/about.md: -------------------------------------------------------------------------------- 1 | FOIA The Dead is a long-term transparency project that uses the [Freedom of Information Act (FOIA)](https://en.wikipedia.org/wiki/Freedom_of_Information_Act_(United_States)) to request information from the FBI about the recently deceased. 2 | 3 | That law requires certain government agencies to produce records upon a request from the public. One significant exception to that requirement is that, to protect the privacy of individuals, federal agencies may not release information about living people. But after their death, their privacy concerns are diminished, and those records can become available. 4 | 5 | FOIA The Dead was founded to address that transition. When somebody's obituary appears in the _New York Times_, FOIA The Dead sends an automated request to the FBI for their (newly-available) records. In many cases, the FBI responds that it has no files on the individual. But in some cases it does, and can now release those files upon request. When FOIA The Dead receives it, the file gets published for the world to see. 6 | 7 | From October 2017 to July 2022, FOIA The Dead was a special project of the [Freedom of the Press Foundation](https://freedom.press). The Freedom of the Press Foundation has provided institutional support and consulted on the project's development. 8 | 9 | Since March 2017, FOIA The Dead has used MuckRock to submit and track its requests with the FBI. Browse through [MuckRock's FOIA resources](https://www.muckrock.com) or [read about its API](https://www.muckrock.com/api/). 10 | 11 | This project is written and maintained by [Parker Higgins](https://twitter.com/xor). You can [follow it on Twitter](https://twitter.com/foiathedead). Source code is [available on GitHub](https://github.com/thisisparker/ftd/), and most of the site is [available as JSON](https://foiathedead.org/entries.json). Additional thanks to [Elizabeth Yalkut](http://www.elizabethyalkut.com/) for contributing some subject bios. 12 | -------------------------------------------------------------------------------- /site/atom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | https://foiathedead.org 4 | FOIA The Dead 5 | 2019-01-11T20:40:49.274897+00:00 6 | 7 | FOIA The Dead 8 | foia@foiathedead.org 9 | 10 | 11 | python-feedgen 12 | FOIA The Dead is a long-term transparency project using the Freedom of Information Act. It releases FBI records on recently deceased public figures. 13 | 14 | https://foiathedead.org/posts/jacqueline-berrien/ 15 | Jacqueline Berrien 16 | 2019-01-11T20:40:49.277204+00:00 17 | <p>Jacqueline Berrien chaired the Equal Employment Opportunity Commission under President Obama. Her FBI file consists of a background check related to that appointment.</p> 18 | 19 | 20 | 21 | https://foiathedead.org/posts/concepcion-picciotto/ 22 | Concepcion Picciotto 23 | 2019-01-11T20:40:49.277164+00:00 24 | <p>Concepción Picciotto was a peace activist who held a continuous vigil across the street from the White House from 1981 until ten days before her death in 2016. Her FBI file includes documentation of several complaints to the FBI, including self-published pamphlets.</p> 25 | 26 | 27 | 28 | https://foiathedead.org/posts/fred-thompson/ 29 | Fred Thompson 30 | 2019-01-11T20:40:49.277127+00:00 31 | <p>Fred Thompson was an actor, a Tennessee senator from 1994 to 2003, and a 2008 presidential candidate. His FBI file involves investigations of threatening calls and letters received by Thompson's Senate office, and a background check for clearance to classified information as special counsel to the Senate Intelligence Committee.</p> 32 | 33 | 34 | 35 | https://foiathedead.org/posts/robert-parry/ 36 | Robert Parry 37 | 2019-01-11T20:40:49.277088+00:00 38 | <p>Robert Parry was an investigative journalist best known for his groundbreaking coverage of the Iran–Contra Affair while at the Associated Press. His short FBI file documents an investigation into a Students for a Democratic Society (SDS) chapter he founded at his alma mater.</p> 39 | 40 | <p>The Colby College chapter he led was not apparently successful. According to the FBI report, it attracted only two freshmen, and "none of the three members were particularly enthused about the organization."</p> 41 | 42 | 43 | 44 | https://foiathedead.org/posts/cathleen-morawetz/ 45 | Cathleen Morawetz 46 | 2019-01-11T20:40:49.277051+00:00 47 | <p>Cathleen Morawetz was a mathematician and NYU professor whose research on the motion of fluids and waves was relevant to supersonic aircraft wing design. Her file describes a monthlong visit to the Soviet Union in 1963 as part of an Exchange Agreement, as well as FBI efforts to interview her (and apparently share technical information with her) without alerting her to the identity of a particular Bureau informant.</p> 48 | 49 | 50 | 51 | https://foiathedead.org/posts/drue-heinz/ 52 | Drue Heinz 53 | 2019-01-11T20:40:49.277009+00:00 54 | <p>Drue Heinz was a patron of the arts, publisher of <i>The Paris Review</i>, and—for a brief stretch in 1950—an actress. Her FBI file, which mostly refers to her as Doreen Mary Maher, consists of a background check conducted in 1948, apparently in connection to employment with the Voice of America.</p> 55 | 56 | 57 | 58 | https://foiathedead.org/posts/fats-domino/ 59 | Fats Domino 60 | 2019-01-11T20:40:49.276973+00:00 61 | <p>Fats Domino was a pianist, singer, and songwriter who made a name as one of the biggest stars of the early rock-and-roll era. His file consists of a 1965 inquiry into one of his Cadillacs, apparently spotted during an FBI stakeout of a Philadelphia hotel that Martin Luther King was believed to be staying at.</p> 62 | 63 | <p>The document in Domino's file is labeled "SUBJECT: MARTIN LUTHER KING, JR." and refers to an earlier <a href="https://en.wikipedia.org/wiki/Airtel_(FBI)">airtel</a> from the FBI's Philadelphia office. That earlier message is included below for reference, and describes an "extremely discreet spot check at the Franklin Motor Inn," during which Domino's car was spotted and—it seems—mistakenly connected with King. The original document can be found in context in MLK's <a href="https://archive.org/details/fbi_file_mlk">complete FBI file</a>, which runs to over 16,600 pages. The Philadelphia airtel begins on page 49 of file 32.</p> 64 | 65 | 66 | 67 | https://foiathedead.org/posts/c-weston-houck/ 68 | C. Weston Houck 69 | 2019-01-11T20:40:49.276935+00:00 70 | <p>Judge C. Weston Houck presided over a lawsuit brought by Shannon Faulkner against South Carolina's public military college, The Citadel. His ruling in that case ended the Citadel's 152-year-old male-only admissions policy. His FBI file primarily addresses an incident wherein a man upset by that case engaged in behavior that could have been construed as a threat.</p> 71 | 72 | 73 | 74 | https://foiathedead.org/posts/pat-summitt/ 75 | Pat Summitt 76 | 2019-01-11T20:40:49.276894+00:00 77 | <p>Pat Summitt was a University of Tennessee coach who is credited for the rise in prominence of women's college basketball. Her FBI file documents a series of letters intended to threaten and possibly extort her, apparently written by an unhinged fan.</p> 78 | 79 | 80 | 81 | https://foiathedead.org/posts/andrzej-wajda/ 82 | Andrzej Wajda 83 | 2019-01-11T20:40:49.276854+00:00 84 | <p>Andrzej Wajda was a Polish film and theater director who worked during the height of the Cold War. His FBI file primarily addresses a trip to Los Angeles in 1976 (probably for the Academy Awards, where his <i>The Promised Land</i> was nominated for Best Foreign Language Film) in which one member of his group was a subject of FBI monitoring.</p> 85 | 86 | 87 | 88 | https://foiathedead.org/posts/harry-wu/ 89 | Harry Wu 90 | 2019-01-11T20:40:49.276816+00:00 91 | <p>Harry Hongda Wu was an activist and naturalized American citizen who traveled to China repeatedly to document human rights abuses, including the sale of organs, in the prison system there. His file primarily consists of his documenting those abuses.</p> 92 | 93 | 94 | 95 | https://foiathedead.org/posts/robert-e-allen/ 96 | Robert E. Allen 97 | 2019-01-11T20:40:49.276777+00:00 98 | <p>Robert Allen was the chief executive and chairman of AT&T for nearly a decade beginning in 1988—a transitional period for the U.S. telecommunications industry. His FBI file consists of background checks conducted during his AT&T leadership, as he was considered for various federal government jobs.</p> 99 | 100 | 101 | 102 | https://foiathedead.org/posts/mike-davis/ 103 | Mike Davis 104 | 2019-01-11T20:40:49.276737+00:00 105 | <p>Although he was a notable oil industry magnate and received widespread coverage when he married the Denver Post heiress 40 years his senior (after previously working as her chauffeur), Mike Davis was best known at the time of his death as the "World's Grumpiest Boss," after his 1970s-era office memos banning "levity" and even unsolicited greetings circulated online. His FBI file captures yet another facet of his life, documenting over some 200 pages a dramatic $50,000 Las Vegas extortion attempt of which he was the victim, and which involved Frank Sinatra and a number of famous casinos.</p> 106 | 107 | 108 | 109 | https://foiathedead.org/posts/edward-daly/ 110 | Edward Daly 111 | 2019-01-11T20:40:49.276696+00:00 112 | <p>Father Edward Daly was a Roman Catholic bishop from Northern Ireland who achieved prominence for his role at the forefront of the protest march on what became known as "Bloody Sunday." In 1972 he visited New York, where the FBI recorded plans to monitor him and describes an interview the Bureau conducted with him at the Roosevelt Hotel.</p> 113 | 114 | 115 | 116 | https://foiathedead.org/posts/warren-hinckle/ 117 | Warren Hinckle 118 | 2019-01-11T20:40:49.276658+00:00 119 | <p>Warren J. Hinckle, III was a well-known columnist and provocateur best known as the editor of Ramparts magazine and a vocal (and at times gonzo) proponent of left politics. His FBI file pertains chiefly to an investigation into an advertisement placed in 1981 seeking to recruit volunteers for an American brigade of the IRA, and also contains excerpts of his writing on Cuba.</p> 120 | 121 | <p>Muckrock has posted <a href="https://www.muckrock.com/news/archives/2017/sep/26/fbi-warren-hinckle/">a more extensive look</a> into the contents of Hinckle's FBI file.</p> 122 | 123 | 124 | 125 | https://foiathedead.org/posts/trinh-thi-ngo/ 126 | Trinh Thi Ngo 127 | 2019-01-11T20:40:49.276619+00:00 128 | <p>Trinh Thi Ngo broadcast as "Hanoi Hannah" from North Vietnam during the Vietnam War. Her show aimed to damage the morale of American troops. Her short FBI file mentions her only in passing, in a report about a similar show that was believed to be recorded within the U.S.—the show hosts claimed to be in the Watts neighborhood of Los Angeles—and shipped to Vietnam for broadcast there.</p> 129 | 130 | 131 | 132 | https://foiathedead.org/posts/david-bunnell/ 133 | David Bunnell 134 | 2019-01-11T20:40:49.276569+00:00 135 | <p>David Bunnell was one of the founding figures of the computer trade publication industry, involved in founding PC Magazine, Macworld and others. Before that, though, he was involved in New Left politics at the University of Nebraska, where as a student in 1968 he served as the president of the Students for a Democratic Society chapter. His FBI file tracks that group's activities during his tenure there.</p> 136 | 137 | 138 | 139 | https://foiathedead.org/posts/hugh-o-brian/ 140 | Hugh O'Brian 141 | 2019-01-11T20:40:49.276528+00:00 142 | <p>Hugh O'Brian was an American actor best known for his portrayal of Wyatt Earp during the height of the popularity of Western TV shows. His fame led to an invitation from Nobel Prize winning Dr. Albert Schweitzer to a hospital in Gabon, which inspired O'Brian to start a non-profit foundation for youth leadership. His FBI file consists of correspondence between the Bureau and his foundation, which invited multiple FBI directors to speak at events.</p> 143 | 144 | 145 | 146 | https://foiathedead.org/posts/elaine-lustig-cohen/ 147 | Elaine Lustig Cohen 148 | 2019-01-11T20:40:49.276454+00:00 149 | <p>Elaine Lustig Cohen was a painter and graphic designer responsible for the signage on the Seagram's Building, among many other clients. In the late 1960s, the FBI maintained a short file on her—including monitoring her international travel—and her husband, Arthur A. Cohen. The file includes some sensitive personal details about their marriage.</p> 150 | 151 | 152 | 153 | https://foiathedead.org/posts/nina-ponomareva/ 154 | Nina Ponomareva 155 | 2019-01-11T20:40:49.276417+00:00 156 | <p>Nina Ponomoreva was an Olympic discus thrower from the Soviet Union. In 1956 she was involved in a minor diplomatic crisis, when she was accused (and found guilty) of shoplifting hats in the United Kingdom. Her short FBI file consists of newspaper reports of that incident and its fallout.</p> 157 | 158 | 159 | 160 | https://foiathedead.org/posts/sammy-lee/ 161 | Sammy Lee 162 | 2019-01-11T20:40:49.276377+00:00 163 | <p>Sammy Lee was the first Asian-American man to win an Olympic gold medal for the United States. He subsequently worked as a doctor and coach, and was honored by six U.S. presidents. In 1990, he was appointed to the President's Council on Physical Fitness and Sport, and his FBI file mostly pertains to the background check required for that position.</p> 164 | 165 | 166 | 167 | https://foiathedead.org/posts/ahmed-h-zewail/ 168 | Ahmed H. Zewail 169 | 2019-01-11T20:40:49.276338+00:00 170 | <p>Ahmed Zewail was a chemist and Nobel Prize winner who worked in the Obama White House as a science adviser. His file consists of background checks conducted for that position, conducted between 2008 and 2012.</p> 171 | 172 | 173 | 174 | https://foiathedead.org/posts/coca-crystal/ 175 | Coca Crystal 176 | 2019-01-11T20:40:49.276299+00:00 177 | <p>Coca Crystal was a counterculture activist and TV personality associated with New York City. Her file covers meetings she planned, attended, or led in the early 1970s, including one to protest Nixon's inauguration.</p> 178 | 179 | 180 | 181 | https://foiathedead.org/posts/gus-savage/ 182 | Gus Savage 183 | 2019-01-11T20:40:49.276262+00:00 184 | <p>Gus Savage worked as a civil rights activist and spokesman for the Progressive Party before he was elected to Congress to represent the South Side of Chicago. His lengthy FBI file covers that earlier activism, an (unsuccessful) loyalty check during an application for a federal government job, and investigations into threats against him during his time in office.</p> 185 | 186 | 187 | 188 | https://foiathedead.org/posts/robert-bennett/ 189 | Robert Bennett 190 | 2019-01-11T20:40:49.276225+00:00 191 | <p>Years before Robert Foster Bennett served as Senator from Utah, he ran a public relations company that counted Howard Hughes as a client and once employed Watergate burglar E. Howard Hunt. His FBI file pertains to a $50,000 political donation from Hughes to the Nixon re-election effort — a payment that Bennett coordinated with Gordon Liddy.</p> 192 | 193 | 194 | 195 | https://foiathedead.org/posts/ben-h-bagdikian/ 196 | Ben H. Bagdikian 197 | 2019-01-11T20:40:49.276181+00:00 198 | <p>Before reporter Ben Bagdikian covered the Pentagon Papers for the <i>Washington Post</i>, he was the author of a series of critical articles about official secrecy and "loyalty checks" in federal law enforcement. These writings landed him on the bad side of J. Edgar Hoover, which resulted in decades of scrutiny.</p> 199 | 200 | <p>The Bureau subsequently collected and summarized his major writing, including a series of 12 articles on news magazines and their effect on politics. (Those summaries, and the articles they address, are included in this file.)</p> 201 | 202 | <p>But it was his 1961 article about the 37th anniversary of J. Edgar Hoover's appointment as chief that most rankled. Hoover annotated a copy of the article, asking that Bagdikian be removed from all Bureau mailings. He reportedly called the article "utter bunk."</p> 203 | 204 | <p>Bagdikian was likely aware of his reputation within the Bureau, but would have had it confirmed when, in 1975, he filed a Freedom of Information Act request for his own file. That request, and the follow-up communications (including his check for $8.50 and a notarized signature) are also included in this file.</p> 205 | 206 | 207 | 208 | https://foiathedead.org/posts/sam-iacobellis/ 209 | Sam Iacobellis 210 | 2019-01-11T20:40:49.276143+00:00 211 | <p>Sam Iacobellis is the engineer credited with developing the B-1 bomber, an American stealth long-range aircraft that affected the course of the Cold War. His short file contains a report of contact with an official—possibly one from the USSR—and an FBI decision not to interview him afterward.</p> 212 | 213 | 214 | 215 | https://foiathedead.org/posts/norma-mccorvey/ 216 | Norma McCorvey 217 | 2019-01-11T20:40:49.276106+00:00 218 | <p>Norma McCorvey was the plaintiff, under the pseudonym Jane Roe, of the landmark 1973 Supreme Court case ruling state anti-abortion laws unconstitutional. Her FBI file is focused on a 1989 incident, days before she was to participate in an abortion rights rally, in which unknown suspects fired a shotgun at her home and car.</p> 219 | 220 | 221 | 222 | https://foiathedead.org/posts/madeleine-sherwood/ 223 | Madeleine Sherwood 224 | 2019-01-11T20:40:49.276063+00:00 225 | <p>Madeline Sherwood was an actress most notable for her role in the 1960s television series "The Flying Nun." She had previously been married to the playwright Robert Sherwood, whom the FBI believed to be involved with Communism. This file describes an effort to locate her, to interview her, and the decision not to approach her directly.</p> 226 | 227 | 228 | 229 | https://foiathedead.org/posts/jack-t-chick/ 230 | Jack T. Chick 231 | 2019-01-11T20:40:49.276000+00:00 232 | <p>Fundamentalist Christian cartoonist Jack Chick wrote to J. Edgar Hoover in 1971 seeking the FBI's help with his bizarre religious comics. His file consists of that letter and Hoover's response declining to participate. A <a href="https://boingboing.net/2017/03/10/funnybooks-and-feebs.html">longer write-up of this file</a> has been published at Boing Boing.</p> 233 | 234 | 235 | 236 | https://foiathedead.org/posts/walter-kohn/ 237 | Walter Kohn 238 | 2019-01-11T20:40:49.275959+00:00 239 | <p>Nobel laureate Walter Kohn left Austria as a child refugee in 1940, coming to Canada and eventually to the United States to study and teach physics. He was the founding director of the Institute for Theoretical Physics at UC Santa Barbara, helped establish a program for Judaic studies at UC San Diego, and taught at Harvard and Carnegie Mellon. His FBI file consists of an extensive background check for a Department of Energy job in the late 1980s.</p> 240 | 241 | 242 | 243 | https://foiathedead.org/posts/hedy-epstein/ 244 | Hedy Epstein 245 | 2019-01-11T20:40:49.275921+00:00 246 | <p>Hedy Epstein, a Holocaust survivor who served as a translator in the Nuremberg trials before emigrating to the U.S., worked as an activist for various causes over a span of more than five decades. Her FBI file covers those five decades, and the overwhelming majority concerns housing discrimination cases she helped prepare in the 1970s.</p> 247 | 248 | 249 | 250 | https://foiathedead.org/posts/daniel-aaron/ 251 | Daniel Aaron 252 | 2019-01-11T20:40:49.275883+00:00 253 | <p>Daniel Aaron was a literary critic and historian credited with pioneering the field of "American studies." His short FBI file is chiefly concerned with his contribution to a study on the role of Communism in the United States, announced in 1955.</p> 254 | 255 | 256 | 257 | https://foiathedead.org/posts/joseph-medicine-crow/ 258 | Joseph Medicine Crow 259 | 2019-01-11T20:40:49.275840+00:00 260 | <p>Joseph Medicine Crow was a widely renowned Native American historian and anthropologist and the last living person to have heard spoken testimony from people at the Battle of the Little Bighorn. His FBI file consists only of a single-page interview he gave to special agents about a friend, a Jeep accident, and an angry mob weilding two-by-fours.</p> 261 | 262 | 263 | 264 | https://foiathedead.org/posts/haskell-wexler/ 265 | Haskell Wexler 266 | 2019-01-11T20:40:49.275802+00:00 267 | <p>Haskell Wexler was the award-winning filmmaker known for "Medium Cool" (1969) and others. The FBI monitored him before and after his 1976 documentary "Underground," about the radical Weathermen, and attempted to subpoena his raw footage.</p> 268 | 269 | 270 | 271 | https://foiathedead.org/posts/king-bhumibol-aduljadej/ 272 | King Bhumibol Aduljadej 273 | 2019-01-11T20:40:49.275753+00:00 274 | <p>Bhumibol Aduljadej was king of Thailand for 70 years. In 2000, Thai law enforcement requested the FBI’s help in locating a "disrespectful" online impersonator.</p> 275 | 276 | 277 | 278 | https://foiathedead.org/posts/michael-mariotte/ 279 | Michael Mariotte 280 | 2019-01-11T20:40:49.275715+00:00 281 | Michael Mariotte was a prominent anti-nuclear activist throughout the 1980s, 1990s and 2000s. Before that, in 1973, he’d gotten the FBI’s attention as a member of the Youth International Party and a potential protestor at Richard Nixon’s inauguration. 282 | 283 | 284 | 285 | https://foiathedead.org/posts/morley-safer/ 286 | Morley Safer 287 | 2019-01-11T20:40:49.275675+00:00 288 | Morley Safer was a Canadian journalist who came to prominence offering unvarnished coverage of the Vietnam War. After receiving a viewer complain that Safer’s reporting would be &quot;destructive to morale,&quot; FBI prepared a report but declined to investigate further. 289 | 290 | 291 | 292 | https://foiathedead.org/posts/mark-lane/ 293 | Mark Lane 294 | 2019-01-11T20:40:49.275635+00:00 295 | <p>Mark Lane was a leading proponent of the theory that the assassination of John F. Kennedy was a conspiracy. His FBI file concerns travel in 1980 to Lebanon, but concedes that he "has been known to the Bureau since the early 1960s."</p> 296 | 297 | 298 | 299 | https://foiathedead.org/posts/bill-campbell/ 300 | Bill Campbell 301 | 2019-01-11T20:40:49.275598+00:00 302 | <p>Bill Campbell was an executive and advisor for large tech companies such as Apple and Google. His file consists primarily of an FBI interview conducted in 2007 about an options backdating scandal at Apple, where he served on the board.</p> 303 | 304 | 305 | 306 | https://foiathedead.org/posts/william-l-oneill/ 307 | William L. O’Neill 308 | 2019-01-11T20:40:49.275562+00:00 309 | <p>William O’Neill wrote a dozen books about history and radicalism through the 60s, 70s, 80s and 90s. His participation in activism was monitored by the FBI — particularly his involvement in an Fair Play for Cuba event, where he served as master of ceremonies.</p> 310 | 311 | 312 | 313 | https://foiathedead.org/posts/boutros-boutros-ghali/ 314 | Boutros Boutros-Ghali 315 | 2019-01-11T20:40:49.275522+00:00 316 | <p>Boutros Boutros-Ghali served as the U.N. Secretary General in the post-Cold War era after decades as an Egyptian diplomat. His FBI file mostly dates to the beginning of that era, and remains heavily redacted.</p> 317 | 318 | 319 | 320 | https://foiathedead.org/posts/dr-herbert-l-abrams/ 321 | Dr. Herbert L. Abrams 322 | 2019-01-11T20:40:49.275485+00:00 323 | FOIA The Dead has obtained the FBI file for Dr. Herbert L. Abrams. 324 | 325 | 326 | 327 | https://foiathedead.org/posts/lois-weisberg/ 328 | Lois Weisberg 329 | 2019-01-11T20:40:49.275448+00:00 330 | FOIA The Dead has obtained the FBI file for Lois Weisberg. 331 | 332 | 333 | 334 | https://foiathedead.org/posts/robert-stigwood/ 335 | Robert Stigwood 336 | 2019-01-11T20:40:49.275411+00:00 337 | <p>Robert Stigwood was an Australian music and movie producer and executive who achieved international success with acts such as the Bee Gees and Eric Clapton, and films such as "Saturday Night Fever," "Grease," and "Evita." Before his <a href="http://www.nytimes.com/2016/01/05/arts/music/robert-stigwood-entrepreneur-of-rock-and-film-is-dead-at-81.html">death in January 2016</a>, he was frequently ranked among the wealthiest people in Britain.</p> 338 | 339 | <p>In May and June of 1991, around the time that <a href="http://articles.latimes.com/1993-12-11/entertainment/ca-728_1_director-oliver-stone">Disney aborted plans</a> to fund a film version of "Evita" directed by Oliver Stone, the FBI's legal attaché in Canberra, Australia contacted the Bureau's Los Angeles and central headquarters requesting a criminal check on Stigwood after a request from an unknown party.</p> 340 | 341 | <p>The FBI came up empty-handed after performing the requested search and checking the records of the California Department of Justice, the Bureau of Criminal Identification and Information, the Los Angeles Police Department, and the Los Angeles Count Sheriff's Department. Information about that request was furnished to the unknown party.</p> 342 | 343 | <p>From to FBI records:</p> 344 | 345 | <blockquote><p>On 5/29/91, [REDACTED] contacted [FBI's Canberra legal attaché] concerning Stigwood.</p> 346 | 347 | <p>He advised that Robert Stigwood ... is under consideration by [REDACTED] to be [REDACTED].</p> 348 | 349 | <p>Stigwood is a relatively well-known Australian movie producer/director who has spent much of his life in the Hollywood California area.</p> 350 | 351 | <p>Lead at Los Angeles, California: Conduct an indices search for any information concerning Stigwood and advise [legal attaché] Canberra for dissemination to [REDACTED]. A prompt reply would be appreciated.</p></blockquote> 352 | 353 | <p>Redacted records of that correspondence make up the entirety of Stigwood's released FBI file and are reproduced below.</p> 354 | 355 | 356 | 357 | https://foiathedead.org/posts/michael-g-oxley/ 358 | Michael G. Oxley 359 | 2019-01-11T20:40:49.275368+00:00 360 | <p>Representative Mike Oxley, best known for his co-authorship of the anti-fraud law to emerge from the Enron scandal, was one of the <a href="https://www.newsmax.com/John-Gizzi/DEA-FBI-Oxley-Sarbanes/2016/01/05/id/708181/">FBI's staunchest defenders</a> in the halls of Congress throughout his tenure—and especially during the 1990s "Crypto Wars," in which the Bureau <a href="https://partners.nytimes.com/library/cyber/week/092597encrypt.html">tried and failed to require law enforcement backdoors in all U.S. encryption software</a>.</p> 361 | 362 | <p>Oxley was one of two former FBI agents to serve in Congress—the other, Rep. Don Edwards, served as chair of the House Subcommittee on Civil and Constitutional Rights and <a href="http://www.latimes.com/local/obituaries/la-me-don-edwards-20151003-story.html">frequently butted heads with his former employer on policy issues</a>.</p> 363 | 364 | <p>In the years after Oxley's 1971 retirement from the FBI, he remained close with the Bureau's leadership and continued to exchange friendly correspondence. He received letters of thanks from FBI directors each time he defended the agency in the Congressional Record. Today, FOIA The Dead is publishing Oxley's complete FBI file, including the following notable points:</p> 365 | 366 | <ul> 367 | <li><p>In 1971 Oxley received personal commendation from J. Edgar Hoover for his efforts in arresting suspects involved in a bank robbery. According to Roll Call, the <a href="http://www.rollcall.com/news/politics/former-rep-mike-oxley-dies">bank robbery involved the Black Panthers</a>.</p> 368 | 369 | <blockquote><p>The high quality of your efforts incident to the investigation and apprehensions of [REDACTED] and [REDACTED] the subjects of a Bank Robbery case, is indeed worthy of commendation.</p> 370 | 371 | <p>In spite of the difficulties you encountered, you skillfully and with great dispatch effected the arrests of these Bureau fugitives without causing insurmountable problems. I am appreciative.</p></blockquote> 372 | </li> 373 | 374 | <li><p>Also in 1971, Oxley received a $200 "incentive award" authorized by Hoover for working with an informant to apprehend one of the suspects in <a href="http://www.nytimes.com/1971/09/24/archives/city-policeman-wearing-shield-of-slain-partner.html">the killing of NYPD officer Kenneth Nugent</a>. Two of the people charged for that crime were the last people sentenced to death in New York before a State Court <a href="http://www.nytimes.com/1973/06/08/archives/state-court-ends-death-sentences-appeals-bench-finds-wide.html">ruled the law unconstitutional</a>; their sentences were reduced to 25 years to life.</p></li> 375 | <li><p>A section of the FBI's August 1969 pre-employment background check is representative of the Bureau's concerns in the era:</p> 376 | 377 | <blockquote>[REDACTED], A NON-HIPPIE TYPE INDIVIDUAL RESIDING AT [REDACTED], ADVISED THAT [REDACTED] LIVES WITH HIM AT THIS ADDRESS AND IS SINGLE. ... STATED [REDACTED] IS NOT A HIPPIES [sic]. ALTHOUGH HE WEARS LONG HAIR.</blockquote> 378 | 379 | </li></ul> 380 | 381 | 382 | 383 | https://foiathedead.org/posts/dale-bumpers/ 384 | Dale Bumpers 385 | 2019-01-11T20:40:49.275330+00:00 386 | FOIA The Dead has obtained the FBI file for Dale Bumpers. 387 | 388 | 389 | 390 | https://foiathedead.org/posts/walter-j-leonard/ 391 | Walter J. Leonard 392 | 2019-01-11T20:40:49.275292+00:00 393 | <p>Walter Jewell Leonard was best known as the <a href="http://www.nytimes.com/2015/12/17/education/walter-j-leonard-pioneer-of-affirmative-action-in-harvard-admissions-dies-at-86.html">architect of Harvard's influential affirmative action program</a> beginning in 1969. The admissions policy has been emulated by schools around the country and the world. In 1955, he was investigated by the FBI during an application of his own, to serve as a corrections officer in an Atlanta federal prison.</p> 394 | 395 | <p>The overwhelming majority of Leonard's FBI file is the product of that investigation, which included exhaustive background checks into his education, his Coast Guard service, his employment history, and his finances ("All offices note Appli[cant]'s poor credit rating," p. 17). Unsurprisingly, that history reflects the Jim Crow south in which Leonard was raised, including conflicting and ultimately discredited stories about insubordination and even embezzlement at various jobs.</p> 396 | 397 | <p>One example: he worked as a waiter at the restaurant O'Donnell's Sea Grill from 1950-1, and reportedly was fired for refusing to serve another cashier. Further FBI inquiries showed that Leonard was not at fault for the incident—"his discharge was the result of a misunderstanding and [the office manager of the restaurant] now felt that the applicant was not reprehensible." In the FBI's own words in 1966: "Atlanta file shows that LEONARD was discharged from two jobs in Washington, D.C., and had poor credit rating while there; however, there appears to be some question as to whether he was actually discharged or resigned. There also appears to be some question as to whether these actions by the employers were justified or had a sound basis." (p. 68)</p> 398 | 399 | <p>But the records from after the application are even more illuminating about the work that would eventually win him national recognition. He received the prison job but was terminated seven months later, in October 1955. His file includes excerpts from a letter he wrote to the warden at the time.</p> 400 | 401 | <blockquote><p>LEONARD wrote that in connection with the decision by the Board of Supervisors to terminate his services, he wished to appraise the Warden of some "rumors" and "falsehoods." He mentions allegations made to the effect that he was a "spy" for the Bureau of Prisons and that he was placed at Atlanta to "break down segregation" and push for "integration." The letter notes that "these things are out of proportion to common sense." LEONARD continued, "It has been suggested that I have aired views, contrary to institution practice, along racial lines. If I knew who started this absurd propaganda, I would feel inclined to institute a suit for libel. <strong>Even if I had observed some discrimination, I am intelligent enough to realize I don't have the authority to contradict the administration of this institution."</strong> ...</p> 402 | 403 | <p>"I do not want to think that there was a racial angle to the opinion of my supervisors. I have written the Bureau, I have made no mention of this point; wanting to discuss this with you personally. I am not interested in the personal whims, prejudices, or selfish motives of anyone. My purpose is to <u>do</u> and <u>keep</u> a job.</p></blockquote> 404 | 405 | <p>(pp. 72-3. Emphasis added.)</p> 406 | 407 | <p>Of course, some 15 years later Leonard would go on to have the authority at an institution where he was able to correct discrimination.</p> 408 | 409 | <p>Some records from his file from that era are largely redacted. Context suggests that, in 1956, the FBI contacted Leonard to evaluate his suitability as an informant about the activities of members of the Nation of Islam, due to his position as office manager at "Forrest Arms Hotel, ... where three of the Assistant Ministers of the Atlanta Temple reside ... He has been asked to attend their meetings and although he has not yet attended, he stated he will in the near future." (p. 68)</p> 410 | 411 | <p>The question of his informing seems to be mooted when Leonard lost that job and, in August of 1956, Leonard moved to Chicago, as one of millions of African American participants in the greater sociological phenomenon dubbed <a href="https://en.wikipedia.org/wiki/Second_Great_Migration_(African_American)">The Great Migration</a>.</p> 412 | 413 | <p>Finally, in 1979, a review of his file was made in advance of Leonard's <a href="http://www.presidency.ucsb.edu/ws/index.php?pid=32240">presidential appointment by Jimmy Carter</a> to serve on the United States Naval Academy <a href="https://www.usna.edu/PAO/Superintendent/bov.html">Board of Visitors</a>.</p> 414 | 415 | 416 | 417 | https://foiathedead.org/posts/john-trudell/ 418 | John Trudell 419 | 2019-01-11T20:40:49.275254+00:00 420 | FOIA The Dead has obtained the FBI file for John Trudell. 421 | 422 | 423 | 424 | https://foiathedead.org/posts/marcus-klingberg/ 425 | Marcus Klingberg 426 | 2019-01-11T20:40:49.275214+00:00 427 | FOIA The Dead has obtained the FBI file for Marcus Klingberg. 428 | 429 | 430 | 431 | https://foiathedead.org/posts/gene-norman/ 432 | Gene Norman 433 | 2019-01-11T20:40:49.275175+00:00 434 | <h3>Legendary jazz producer investigated for Chicken Dance travel behind Iron Curtain</h3> 435 | 436 | <p>Jazz legend Gene Norman was flagged by the FBI for a pair of 1984 trips to Poland, which was at the time under Cold War era travel restrictions. Norman, born Julian Nabatoff in Brooklyn in 1922, was himself the son of Russian immigrants. He and his travel companions were only able to fly to Poland via Montreal.</p> 437 | 438 | <p>On the Polish trips that garnered FBI attention, he was accompanied by a musician who had recently recorded a Norman-produced hit version of "Dance, Little Bird," more commonly known as "The Chicken Dance." According to FBI records, the trip was at the behest of the Polish state music and entertainment agency Ars Polonia to mark the release of the record in that country.</p> 439 | 440 | <p>That performer's name is redacted in the released FBI files, but context indicates that it was Wisconsin Area Music Industry's Hall of Fame inductee Bob Kames, who <a href="http://archive.jsonline.com/news/milwaukee/29539139.html">became known as "The Chicken Dance King" by the time of his death in 2008</a>. This clip of Kames performing the song with his family band in a 1980s Christmas special likely dates a few years after the Polish travel.</p> 441 | 442 | <div style="position:relative;height:0;padding-bottom:75.0%"><iframe src="https://www.youtube-nocookie.com/embed/qdCk7uzWNhI?rel=0?ecver=2" width="480" height="360" frameborder="0" style="position:absolute;width:100%;height:100%;left:0" allowfullscreen></iframe></div> 443 | 444 | <p>The version they recorded reportedly sold 300,000 copies in Poland. Kames said of its success: "I get 2 cents out from each 35-cent record sold. When they sold 300,000 records, they gave me a gold record. Of course, I can't take the money out of the country."</p> 445 | 446 | 447 | 448 | https://foiathedead.org/posts/willis-carto/ 449 | Willis Carto 450 | 2019-01-11T20:40:49.275136+00:00 451 | <p>Willis Carto was a far-right activist and Holocaust denier whose work was denounced by groups like the Southern Poverty Law Center and the Anti-Defamation League. Matt Novak at Gizmodo has done <a href="https://paleofuture.gizmodo.com/fbi-releases-file-on-willis-carto-neo-nazi-recently-bu-1783195062">an extensive write-up</a> of the contents of Carto's FBI file.</p> 452 | 453 | 454 | 455 | https://foiathedead.org/posts/licio-gelli/ 456 | Licio Gelli 457 | 2019-01-11T20:40:49.275095+00:00 458 | <p>Licio Gelli was a prominent Italian financier and self-professed fascist who was investigated as the head of a secret society (illegal in his native Italy) and later convicted for bank fraud and a host of other crimes.</p> 459 | 460 | 461 | 462 | https://foiathedead.org/posts/e-virgil-conway/ 463 | E. Virgil Conway 464 | 2019-01-11T20:40:49.275048+00:00 465 | <p>Before Virgil Conway was the chairman of New York City MTA, he was a banker—first for the state, and then as chairman and chief executive of Seaman's Bank. At that time, he also served as an SAC Contact to the FBI; his file consists mostly of communications between him and agents in the Bureau and descriptions of events he and other official contacts attended.</p> 466 | 467 | 468 | 469 | https://foiathedead.org/posts/luther-burden/ 470 | Luther Burden 471 | 2019-01-11T20:40:49.274952+00:00 472 | <p>Luther "Ticky" Burden was a <a href="http://www.timesunion.com/local/article/Ticky-Burden-s-rise-fall-and-rise-3897542.php">professional basketball player</a> with the New York Knicks from 1976-77. In 1981, he was convicted of taking part in a bank robbery. In 1984, <a href="http://www.nytimes.com/1984/01/31/sports/retrial-ordered-for-burden-ex-knick.html">that conviction was overturned</a> when the New York State Supreme Court ruled his home had been illegally searched without a warrant. He later pled guilty to <a href="http://www.nytimes.com/1984/07/03/sports/sports-people-burden-pleads-guilty.html">possession of $400</a> of the stolen money. He <a href="http://www.nytimes.com/2015/11/04/sports/basketball/luther-burden-former-knick-who-served-time-for-bank-robbery-dies-at-62.html">died in November 2015</a> in Winston-Salem.</p> 473 | 474 | <p>In July 1980, shortly after his arrest, the FBI wrote to the United States Attorney in Eastern District of New York to report that an Assistant US Attorney had declined to federally prosecute Burden, in favor of local prosecution. That letter, which made up the entirety of Burden's released FBI file, is reproduced below.</p> 475 | 476 | 477 | 478 | -------------------------------------------------------------------------------- /site/error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FOIA The Dead: a morbid transparency project 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 23 |
24 |

Sorry, this page is broken :(

25 |
26 | 30 | 31 | -------------------------------------------------------------------------------- /site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisparker/ftd/b5594f3a9db9ae5653ad23567d6e060ed259b5f2/site/favicon.ico -------------------------------------------------------------------------------- /site/imgs/cc-by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisparker/ftd/b5594f3a9db9ae5653ad23567d6e060ed259b5f2/site/imgs/cc-by.png -------------------------------------------------------------------------------- /site/imgs/fpf-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisparker/ftd/b5594f3a9db9ae5653ad23567d6e060ed259b5f2/site/imgs/fpf-logo.png -------------------------------------------------------------------------------- /site/imgs/ftd-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisparker/ftd/b5594f3a9db9ae5653ad23567d6e060ed259b5f2/site/imgs/ftd-logo.png -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FOIA The Dead: a morbid transparency project 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |

FOIA The Dead has released 5,763 pages of FBI records on 60 public figures. read more »

27 | 28 |
    29 |
  • 30 |

    31 | Grace Lee Boggs 32 |

    Grace Lee Boggs was a human rights advocate whose work spanned the course of seven decades before her death in 2015. In the 1940s she co-founded the Johnson–Forest Tendency, a radical left group associated with Marxist humanism, and in the 1950s she married the Black radical activist James Boggs, and subsequently developed a professional relationship with Malcolm X. Her extensive FBI files cover two investigations: one from 1948-1974, and a separate one from 1953-1975.

    33 |

    34 | Read more » 35 |

    36 |

    New York Times obit: Grace Lee Boggs, Human Rights Advocate for 7 Decades, Dies at 100

    37 |
  • 38 |
  • 39 |

    40 | John Trudell 41 |

    John Trudell (Santee Dakota) was an activist for Native American rights and artist. His FBI file, which as-provided only goes to to 1975 (i.e., it was likely prompted by the February 1973 stand-off between federal agents and Native activists in Wounded Knee, South Dakota, and the subsequent court trials), summarizes his Navy career during the Vietnam War, and his early work with the American Indian Movement.

    42 |

    43 | Read more » 44 |

    45 |

    New York Times obit: John Trudell, Outspoken Advocate for American Indians, Is Dead at 69

    46 |
  • 47 |
  • 48 |

    49 | Lois Weisberg 50 |

    Lois Weisberg was the first Commissioner of Cultural Affairs for the City of Chicago, from 1989 until January 2011. Her FBI file contains notes from an interview about the finances of the Vietnam Veterans Art Group (which has since become the National Veterans Art Museum), which she championed; her recounting of Jaroslav Kořán's visit to Chicago while Mayor of Prague in 1991; and two documents which remain almost entirely redacted.

    51 |

    52 | Read more » 53 |

    54 |

    New York Times obit: Lois Weisberg, Chicago’s Cultural Connector, Dies at 90

    55 |
  • 56 |
  • 57 |

    58 | Vic Gold 59 |

    Vic Gold was a writer and Republican operative who worked as a speechwriter and spokesman for a number of GOP presidents and candidates, including Barry Goldwater, Spiro Agnew, and George H.W. Bush. His file, simultaneously released in the FBI Records Vault, consists primarily of background checks for those positions.

    60 |

    61 | Read more » 62 |

    63 |

    New York Times obit: Vic Gold, Hard-Charging G.O.P. Spokesman and Campaigner, Dies at 88

    64 |
  • 65 |
  • 66 |

    67 | Lois Wheeler Snow 68 |

    Lois Wheeler Snow was an actress and writer who, through her marriage to journalist Edgar Snow, became a prominent figure in China. Although she visited China frequently between 1970 and 1989, her FBI file consists of a single report of a 1975 visit described in the press.

    69 |

    70 | Read more » 71 |

    72 |

    New York Times obit: Lois Wheeler Snow, Critic of Human Rights Abuses in China, Dies at 97

    73 |
  • 74 |
  • 75 |

    76 | Philip George 77 |

    Philip George was a designer responsible for both the celebrated interiors of several prominent Manhattan restaurants and for project managing the construction of the American National Exhibition in Moscow, the site of the 1959 "Kitchen Debate" between Nixon and Kruschev. His FBI file consists of a 1948 background check preceding his work with the Marshall Plan producing a display to promote Americanism, as well as 1963 interviews with FBI agents about his communications with Soviets while in Moscow.

    78 |

    79 | Read more » 80 |

    81 |

    New York Times obit: Philip George, Designer of Elegant Restaurants, Dies at 94

    82 |
  • 83 |
  • 84 |

    85 | Elbert Howard 86 |

    Elbert Howard, widely known as "Big Man," was a founder of and spokesman for the Black Panther Party through the late 1960s and early 1970s. The portion of his FBI file covered in this release documents his international travel and public speaking events, focusing on a trip to Japan. Muckrock has published an extensive write-up of these pages.

    87 |

    88 | Read more » 89 |

    90 |

    New York Times obit: Elbert Howard, a Founder of the Black Panthers, Dies at 80

    91 |
  • 92 |
  • 93 |

    94 | Jacqueline Berrien 95 |

    Jacqueline Berrien chaired the Equal Employment Opportunity Commission under President Obama. Her FBI file consists of a background check related to that appointment.

    96 |

    97 | Read more » 98 |

    99 |

    New York Times obit: Jacqueline Berrien, Head of E.E.O.C., Is Dead at 53

    100 |
  • 101 |
  • 102 |

    103 | Concepcion Picciotto 104 |

    Concepción Picciotto was a peace activist who held a continuous vigil across the street from the White House from 1981 until ten days before her death in 2016. Her FBI file includes documentation of several complaints to the FBI, including self-published pamphlets.

    105 |

    106 | Read more » 107 |

    108 |

    New York Times obit: Concepcion Picciotto, Who Kept Vigil by White House for Three Decades, Dies

    109 |
  • 110 |
  • 111 |

    112 | Fred Thompson 113 |

    Fred Thompson was an actor, a Tennessee senator from 1994 to 2003, and a 2008 presidential candidate. His FBI file involves investigations of threatening calls and letters received by Thompson's Senate office, and a background check for clearance to classified information as special counsel to the Senate Intelligence Committee.

    114 |

    115 | Read more » 116 |

    117 |

    New York Times obit: Fred Thompson, Former Senator, Actor and Presidential Candidate, Dies at 73

    118 |
  • 119 |
  • 120 |

    121 | Robert Parry 122 |

    Robert Parry was an investigative journalist best known for his groundbreaking coverage of the Iran–Contra Affair while at the Associated Press. His short FBI file documents an investigation into a Students for Democratic Society chapter he founded at his alma mater.

    123 |

    124 | Read more » 125 |

    126 |

    New York Times obit: Robert Parry, Investigative Reporter in Washington, Dies at 68

    127 |
  • 128 |
  • 129 |

    130 | Cathleen Morawetz 131 |

    Cathleen Morawetz was a mathematician and NYU professor whose research on the motion of fluids and waves was relevant to supersonic aircraft wing design. Her file describes a monthlong visit to the Soviet Union in 1963 as part of an Exchange Agreement, as well as FBI efforts to interview her (and apparently share technical information with her) without alerting her to the identity of a particular Bureau informant.

    132 |

    133 | Read more » 134 |

    135 |

    New York Times obit: Cathleen Morawetz, Mathematician With Real-World Impact, Dies at 94

    136 |
  • 137 |
138 | 163 | 164 | 165 | 166 | 167 |
168 | 169 | 170 | -------------------------------------------------------------------------------- /site/main.css: -------------------------------------------------------------------------------- 1 | /*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */ 2 | 3 | /* 4 | * What follows is the result of much research on cross-browser styling. 5 | * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal, 6 | * Kroc Camen, and the H5BP dev community and team. 7 | */ 8 | 9 | /* ========================================================================== 10 | Base styles: opinionated defaults 11 | ========================================================================== */ 12 | 13 | html { 14 | color: #222; 15 | font-size: 1em; 16 | line-height: 1.4; 17 | } 18 | 19 | /* 20 | * Remove text-shadow in selection highlight: 21 | * https://twitter.com/miketaylr/status/12228805301 22 | * 23 | * These selection rule sets have to be separate. 24 | * Customize the background color to match your design. 25 | */ 26 | 27 | ::-moz-selection { 28 | background: #b3d4fc; 29 | text-shadow: none; 30 | } 31 | 32 | ::selection { 33 | background: #b3d4fc; 34 | text-shadow: none; 35 | } 36 | 37 | /* 38 | * A better looking default horizontal rule 39 | */ 40 | 41 | hr { 42 | display: block; 43 | height: 1px; 44 | border: 0; 45 | border-top: 1px solid #ccc; 46 | margin: 1em 0; 47 | padding: 0; 48 | } 49 | 50 | /* 51 | * Remove the gap between audio, canvas, iframes, 52 | * images, videos and the bottom of their containers: 53 | * https://github.com/h5bp/html5-boilerplate/issues/440 54 | */ 55 | 56 | audio, 57 | canvas, 58 | iframe, 59 | img, 60 | svg, 61 | video { 62 | vertical-align: middle; 63 | } 64 | 65 | /* 66 | * Remove default fieldset styles. 67 | */ 68 | 69 | fieldset { 70 | border: 0; 71 | margin: 0; 72 | padding: 0; 73 | } 74 | 75 | /* 76 | * Allow only vertical resizing of textareas. 77 | */ 78 | 79 | textarea { 80 | resize: vertical; 81 | } 82 | 83 | /* ========================================================================== 84 | Browser Upgrade Prompt 85 | ========================================================================== */ 86 | 87 | .browserupgrade { 88 | margin: 0.2em 0; 89 | background: #ccc; 90 | color: #000; 91 | padding: 0.2em 0; 92 | } 93 | 94 | /* ========================================================================== 95 | Author's custom styles 96 | ========================================================================== */ 97 | 98 | a { 99 | color: #333; 100 | } 101 | 102 | a:active { 103 | color: #000; 104 | } 105 | 106 | a:visited { 107 | color: #666; 108 | } 109 | 110 | a:hover { 111 | color: #000; 112 | } 113 | 114 | a#about-link { 115 | color: #666 116 | } 117 | 118 | a#about-link:hover { 119 | color: #000; 120 | } 121 | 122 | body { 123 | max-width: 1200px; 124 | padding-left: 2em; 125 | } 126 | 127 | body.post-page { 128 | max-width: 50em; 129 | } 130 | 131 | body.about-page { 132 | max-width: 50em; 133 | } 134 | 135 | .about-page #content { 136 | clear: both; 137 | margin-top: 4em; 138 | } 139 | 140 | #logo { 141 | float: left; 142 | width: 128px; 143 | margin-right: 1em; 144 | } 145 | 146 | h1 a { 147 | text-decoration: none; 148 | } 149 | 150 | h2 a { 151 | text-decoration: none; 152 | } 153 | 154 | h1 a:visited { 155 | color: #333; 156 | } 157 | 158 | h2 a:visited { 159 | color: #333; 160 | } 161 | 162 | #description { 163 | clear: both; 164 | margin-top: 4em; 165 | } 166 | 167 | @media screen and (max-width: 30em) { 168 | body { 169 | padding-left: 1em; 170 | } 171 | } 172 | 173 | ul#results-list { 174 | list-style: none; 175 | padding: 0; 176 | margin: 0 1rem 0 0; 177 | display: grid; 178 | grid-template-columns: repeat(4, [col] 1fr); 179 | grid-gap: 1rem 3rem; 180 | clear: both; 181 | } 182 | @media screen and (max-width:30em) { 183 | ul#results-list li { 184 | grid-column: 1 / span 4; 185 | } 186 | } 187 | @media screen and (min-width:30.1em) and (max-width:80em) { 188 | ul#results-list li { 189 | grid-column: span 2; 190 | } 191 | } 192 | 193 | .DC-embed-document { 194 | margin-bottom: 2em; 195 | } 196 | 197 | ul#pagination { 198 | list-style-type: none; 199 | padding: 0 2em 0 0; 200 | } 201 | 202 | #pagination li { 203 | display: inline-block; 204 | } 205 | 206 | #pagination li a { 207 | text-decoration: none; 208 | color: #000; 209 | padding: 0 1em 0 1em; 210 | } 211 | 212 | #pagination li:hover { 213 | background: #ddd; 214 | } 215 | 216 | .current-page { 217 | background: #ddd; 218 | } 219 | 220 | #page-nav { 221 | text-align: center; 222 | } 223 | 224 | @media screen and (min-width: 30em) { 225 | #footer { 226 | display: flex; 227 | justify-content: space-between; 228 | align-items: center; 229 | margin: 1em 1em 1em 0; 230 | padding-bottom: 2em; 231 | } 232 | } 233 | 234 | #footer { 235 | clear: both; 236 | } 237 | 238 | 239 | #footer img { 240 | height: 31px; 241 | padding: 1em; 242 | } 243 | 244 | /* ========================================================================== 245 | Helper classes 246 | ========================================================================== */ 247 | 248 | /* 249 | * Hide visually and from screen readers 250 | */ 251 | 252 | .hidden { 253 | display: none !important; 254 | } 255 | 256 | /* 257 | * Hide only visually, but have it available for screen readers: 258 | * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility 259 | */ 260 | 261 | .visuallyhidden { 262 | border: 0; 263 | clip: rect(0 0 0 0); 264 | height: 1px; 265 | margin: -1px; 266 | overflow: hidden; 267 | padding: 0; 268 | position: absolute; 269 | width: 1px; 270 | } 271 | 272 | /* 273 | * Extends the .visuallyhidden class to allow the element 274 | * to be focusable when navigated to via the keyboard: 275 | * https://www.drupal.org/node/897638 276 | */ 277 | 278 | .visuallyhidden.focusable:active, 279 | .visuallyhidden.focusable:focus { 280 | clip: auto; 281 | height: auto; 282 | margin: 0; 283 | overflow: visible; 284 | position: static; 285 | width: auto; 286 | } 287 | 288 | /* 289 | * Hide visually and from screen readers, but maintain layout 290 | */ 291 | 292 | .invisible { 293 | visibility: hidden; 294 | } 295 | 296 | /* 297 | * Clearfix: contain floats 298 | * 299 | * For modern browsers 300 | * 1. The space content is one way to avoid an Opera bug when the 301 | * `contenteditable` attribute is included anywhere else in the document. 302 | * Otherwise it causes space to appear at the top and bottom of elements 303 | * that receive the `clearfix` class. 304 | * 2. The use of `table` rather than `block` is only necessary if using 305 | * `:before` to contain the top-margins of child elements. 306 | */ 307 | 308 | .clearfix:before, 309 | .clearfix:after { 310 | content: " "; 311 | /* 1 */ 312 | display: table; 313 | /* 2 */ 314 | } 315 | 316 | .clearfix:after { 317 | clear: both; 318 | } 319 | 320 | /* ========================================================================== 321 | EXAMPLE Media Queries for Responsive Design. 322 | These examples override the primary ('mobile first') styles. 323 | Modify as content requires. 324 | ========================================================================== */ 325 | 326 | @media only screen and (min-width: 35em) { 327 | /* Style adjustments for viewports that meet the condition */ 328 | } 329 | 330 | @media print, 331 | (-webkit-min-device-pixel-ratio: 1.25), 332 | (min-resolution: 1.25dppx), 333 | (min-resolution: 120dpi) { 334 | /* Style adjustments for high resolution devices */ 335 | } 336 | 337 | /* ========================================================================== 338 | Print styles. 339 | Inlined to avoid the additional HTTP request: 340 | http://www.phpied.com/delay-loading-your-print-css/ 341 | ========================================================================== */ 342 | 343 | @media print { 344 | *, 345 | *:before, 346 | *:after, 347 | *:first-letter, 348 | *:first-line { 349 | background: transparent !important; 350 | color: #000 !important; 351 | /* Black prints faster: 352 | http://www.sanbeiji.com/archives/953 */ 353 | box-shadow: none !important; 354 | text-shadow: none !important; 355 | } 356 | 357 | a, 358 | a:visited { 359 | text-decoration: underline; 360 | } 361 | 362 | a[href]:after { 363 | content: " ("attr(href) ")"; 364 | } 365 | 366 | abbr[title]:after { 367 | content: " ("attr(title) ")"; 368 | } 369 | 370 | /* 371 | * Don't show links that are fragment identifiers, 372 | * or use the `javascript:` pseudo protocol 373 | */ 374 | 375 | a[href^="#"]:after, 376 | a[href^="javascript:"]:after { 377 | content: ""; 378 | } 379 | 380 | pre, 381 | blockquote { 382 | border: 1px solid #999; 383 | page-break-inside: avoid; 384 | } 385 | 386 | /* 387 | * Printing Tables: 388 | * http://css-discuss.incutio.com/wiki/Printing_Tables 389 | */ 390 | 391 | thead { 392 | display: table-header-group; 393 | } 394 | 395 | tr, 396 | img { 397 | page-break-inside: avoid; 398 | } 399 | 400 | img { 401 | max-width: 100% !important; 402 | } 403 | 404 | p, 405 | h2, 406 | h3 { 407 | orphans: 3; 408 | widows: 3; 409 | } 410 | 411 | h2, 412 | h3 { 413 | page-break-after: avoid; 414 | } 415 | } 416 | -------------------------------------------------------------------------------- /site/normalize.css: -------------------------------------------------------------------------------- 1 | /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ 2 | 3 | /** 4 | * 1. Set default font family to sans-serif. 5 | * 2. Prevent iOS and IE text size adjust after device orientation change, 6 | * without disabling user zoom. 7 | */ 8 | 9 | html { 10 | font-family: sans-serif; /* 1 */ 11 | -ms-text-size-adjust: 100%; /* 2 */ 12 | -webkit-text-size-adjust: 100%; /* 2 */ 13 | } 14 | 15 | /** 16 | * Remove default margin. 17 | */ 18 | 19 | body { 20 | margin: 0; 21 | } 22 | 23 | /* HTML5 display definitions 24 | ========================================================================== */ 25 | 26 | /** 27 | * Correct `block` display not defined for any HTML5 element in IE 8/9. 28 | * Correct `block` display not defined for `details` or `summary` in IE 10/11 29 | * and Firefox. 30 | * Correct `block` display not defined for `main` in IE 11. 31 | */ 32 | 33 | article, 34 | aside, 35 | details, 36 | figcaption, 37 | figure, 38 | footer, 39 | header, 40 | hgroup, 41 | main, 42 | menu, 43 | nav, 44 | section, 45 | summary { 46 | display: block; 47 | } 48 | 49 | /** 50 | * 1. Correct `inline-block` display not defined in IE 8/9. 51 | * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. 52 | */ 53 | 54 | audio, 55 | canvas, 56 | progress, 57 | video { 58 | display: inline-block; /* 1 */ 59 | vertical-align: baseline; /* 2 */ 60 | } 61 | 62 | /** 63 | * Prevent modern browsers from displaying `audio` without controls. 64 | * Remove excess height in iOS 5 devices. 65 | */ 66 | 67 | audio:not([controls]) { 68 | display: none; 69 | height: 0; 70 | } 71 | 72 | /** 73 | * Address `[hidden]` styling not present in IE 8/9/10. 74 | * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. 75 | */ 76 | 77 | [hidden], 78 | template { 79 | display: none; 80 | } 81 | 82 | /* Links 83 | ========================================================================== */ 84 | 85 | /** 86 | * Remove the gray background color from active links in IE 10. 87 | */ 88 | 89 | a { 90 | background-color: transparent; 91 | } 92 | 93 | /** 94 | * Improve readability of focused elements when they are also in an 95 | * active/hover state. 96 | */ 97 | 98 | a:active, 99 | a:hover { 100 | outline: 0; 101 | } 102 | 103 | /* Text-level semantics 104 | ========================================================================== */ 105 | 106 | /** 107 | * Address styling not present in IE 8/9/10/11, Safari, and Chrome. 108 | */ 109 | 110 | abbr[title] { 111 | border-bottom: 1px dotted; 112 | } 113 | 114 | /** 115 | * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. 116 | */ 117 | 118 | b, 119 | strong { 120 | font-weight: bold; 121 | } 122 | 123 | /** 124 | * Address styling not present in Safari and Chrome. 125 | */ 126 | 127 | dfn { 128 | font-style: italic; 129 | } 130 | 131 | /** 132 | * Address variable `h1` font-size and margin within `section` and `article` 133 | * contexts in Firefox 4+, Safari, and Chrome. 134 | */ 135 | 136 | h1 { 137 | font-size: 2em; 138 | margin: 0.67em 0; 139 | } 140 | 141 | /** 142 | * Address styling not present in IE 8/9. 143 | */ 144 | 145 | mark { 146 | background: #ff0; 147 | color: #000; 148 | } 149 | 150 | /** 151 | * Address inconsistent and variable font size in all browsers. 152 | */ 153 | 154 | small { 155 | font-size: 80%; 156 | } 157 | 158 | /** 159 | * Prevent `sub` and `sup` affecting `line-height` in all browsers. 160 | */ 161 | 162 | sub, 163 | sup { 164 | font-size: 75%; 165 | line-height: 0; 166 | position: relative; 167 | vertical-align: baseline; 168 | } 169 | 170 | sup { 171 | top: -0.5em; 172 | } 173 | 174 | sub { 175 | bottom: -0.25em; 176 | } 177 | 178 | /* Embedded content 179 | ========================================================================== */ 180 | 181 | /** 182 | * Remove border when inside `a` element in IE 8/9/10. 183 | */ 184 | 185 | img { 186 | border: 0; 187 | } 188 | 189 | /** 190 | * Correct overflow not hidden in IE 9/10/11. 191 | */ 192 | 193 | svg:not(:root) { 194 | overflow: hidden; 195 | } 196 | 197 | /* Grouping content 198 | ========================================================================== */ 199 | 200 | /** 201 | * Address margin not present in IE 8/9 and Safari. 202 | */ 203 | 204 | figure { 205 | margin: 1em 40px; 206 | } 207 | 208 | /** 209 | * Address differences between Firefox and other browsers. 210 | */ 211 | 212 | hr { 213 | box-sizing: content-box; 214 | height: 0; 215 | } 216 | 217 | /** 218 | * Contain overflow in all browsers. 219 | */ 220 | 221 | pre { 222 | overflow: auto; 223 | } 224 | 225 | /** 226 | * Address odd `em`-unit font size rendering in all browsers. 227 | */ 228 | 229 | code, 230 | kbd, 231 | pre, 232 | samp { 233 | font-family: monospace, monospace; 234 | font-size: 1em; 235 | } 236 | 237 | /* Forms 238 | ========================================================================== */ 239 | 240 | /** 241 | * Known limitation: by default, Chrome and Safari on OS X allow very limited 242 | * styling of `select`, unless a `border` property is set. 243 | */ 244 | 245 | /** 246 | * 1. Correct color not being inherited. 247 | * Known issue: affects color of disabled elements. 248 | * 2. Correct font properties not being inherited. 249 | * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. 250 | */ 251 | 252 | button, 253 | input, 254 | optgroup, 255 | select, 256 | textarea { 257 | color: inherit; /* 1 */ 258 | font: inherit; /* 2 */ 259 | margin: 0; /* 3 */ 260 | } 261 | 262 | /** 263 | * Address `overflow` set to `hidden` in IE 8/9/10/11. 264 | */ 265 | 266 | button { 267 | overflow: visible; 268 | } 269 | 270 | /** 271 | * Address inconsistent `text-transform` inheritance for `button` and `select`. 272 | * All other form control elements do not inherit `text-transform` values. 273 | * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. 274 | * Correct `select` style inheritance in Firefox. 275 | */ 276 | 277 | button, 278 | select { 279 | text-transform: none; 280 | } 281 | 282 | /** 283 | * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` 284 | * and `video` controls. 285 | * 2. Correct inability to style clickable `input` types in iOS. 286 | * 3. Improve usability and consistency of cursor style between image-type 287 | * `input` and others. 288 | */ 289 | 290 | button, 291 | html input[type="button"], /* 1 */ 292 | input[type="reset"], 293 | input[type="submit"] { 294 | -webkit-appearance: button; /* 2 */ 295 | cursor: pointer; /* 3 */ 296 | } 297 | 298 | /** 299 | * Re-set default cursor for disabled elements. 300 | */ 301 | 302 | button[disabled], 303 | html input[disabled] { 304 | cursor: default; 305 | } 306 | 307 | /** 308 | * Remove inner padding and border in Firefox 4+. 309 | */ 310 | 311 | button::-moz-focus-inner, 312 | input::-moz-focus-inner { 313 | border: 0; 314 | padding: 0; 315 | } 316 | 317 | /** 318 | * Address Firefox 4+ setting `line-height` on `input` using `!important` in 319 | * the UA stylesheet. 320 | */ 321 | 322 | input { 323 | line-height: normal; 324 | } 325 | 326 | /** 327 | * It's recommended that you don't attempt to style these elements. 328 | * Firefox's implementation doesn't respect box-sizing, padding, or width. 329 | * 330 | * 1. Address box sizing set to `content-box` in IE 8/9/10. 331 | * 2. Remove excess padding in IE 8/9/10. 332 | */ 333 | 334 | input[type="checkbox"], 335 | input[type="radio"] { 336 | box-sizing: border-box; /* 1 */ 337 | padding: 0; /* 2 */ 338 | } 339 | 340 | /** 341 | * Fix the cursor style for Chrome's increment/decrement buttons. For certain 342 | * `font-size` values of the `input`, it causes the cursor style of the 343 | * decrement button to change from `default` to `text`. 344 | */ 345 | 346 | input[type="number"]::-webkit-inner-spin-button, 347 | input[type="number"]::-webkit-outer-spin-button { 348 | height: auto; 349 | } 350 | 351 | /** 352 | * 1. Address `appearance` set to `searchfield` in Safari and Chrome. 353 | * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. 354 | */ 355 | 356 | input[type="search"] { 357 | -webkit-appearance: textfield; /* 1 */ 358 | box-sizing: content-box; /* 2 */ 359 | } 360 | 361 | /** 362 | * Remove inner padding and search cancel button in Safari and Chrome on OS X. 363 | * Safari (but not Chrome) clips the cancel button when the search input has 364 | * padding (and `textfield` appearance). 365 | */ 366 | 367 | input[type="search"]::-webkit-search-cancel-button, 368 | input[type="search"]::-webkit-search-decoration { 369 | -webkit-appearance: none; 370 | } 371 | 372 | /** 373 | * Define consistent border, margin, and padding. 374 | */ 375 | 376 | fieldset { 377 | border: 1px solid #c0c0c0; 378 | margin: 0 2px; 379 | padding: 0.35em 0.625em 0.75em; 380 | } 381 | 382 | /** 383 | * 1. Correct `color` not being inherited in IE 8/9/10/11. 384 | * 2. Remove padding so people aren't caught out if they zero out fieldsets. 385 | */ 386 | 387 | legend { 388 | border: 0; /* 1 */ 389 | padding: 0; /* 2 */ 390 | } 391 | 392 | /** 393 | * Remove default vertical scrollbar in IE 8/9/10/11. 394 | */ 395 | 396 | textarea { 397 | overflow: auto; 398 | } 399 | 400 | /** 401 | * Don't inherit the `font-weight` (applied by a rule above). 402 | * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. 403 | */ 404 | 405 | optgroup { 406 | font-weight: bold; 407 | } 408 | 409 | /* Tables 410 | ========================================================================== */ 411 | 412 | /** 413 | * Remove most spacing between table cells. 414 | */ 415 | 416 | table { 417 | border-collapse: collapse; 418 | border-spacing: 0; 419 | } 420 | 421 | td, 422 | th { 423 | padding: 0; 424 | } 425 | -------------------------------------------------------------------------------- /site/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /site/rss.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FOIA The Dead 5 | https://foiathedead.org 6 | FOIA The Dead is a long-term transparency project using the Freedom of Information Act. It releases FBI records on recently deceased public figures. 7 | http://www.rssboard.org/rss-specification 8 | python-feedgen 9 | Fri, 11 Jan 2019 20:40:49 +0000 10 | 11 | Jacqueline Berrien 12 | https://foiathedead.org/posts/jacqueline-berrien/ 13 | <p>Jacqueline Berrien chaired the Equal Employment Opportunity Commission under President Obama. Her FBI file consists of a background check related to that appointment.</p> 14 | https://foiathedead.org/posts/jacqueline-berrien/ 15 | 16 | 17 | Concepcion Picciotto 18 | https://foiathedead.org/posts/concepcion-picciotto/ 19 | <p>Concepción Picciotto was a peace activist who held a continuous vigil across the street from the White House from 1981 until ten days before her death in 2016. Her FBI file includes documentation of several complaints to the FBI, including self-published pamphlets.</p> 20 | https://foiathedead.org/posts/concepcion-picciotto/ 21 | 22 | 23 | Fred Thompson 24 | https://foiathedead.org/posts/fred-thompson/ 25 | <p>Fred Thompson was an actor, a Tennessee senator from 1994 to 2003, and a 2008 presidential candidate. His FBI file involves investigations of threatening calls and letters received by Thompson's Senate office, and a background check for clearance to classified information as special counsel to the Senate Intelligence Committee.</p> 26 | https://foiathedead.org/posts/fred-thompson/ 27 | 28 | 29 | Robert Parry 30 | https://foiathedead.org/posts/robert-parry/ 31 | <p>Robert Parry was an investigative journalist best known for his groundbreaking coverage of the Iran–Contra Affair while at the Associated Press. His short FBI file documents an investigation into a Students for a Democratic Society (SDS) chapter he founded at his alma mater.</p> 32 | 33 | <p>The Colby College chapter he led was not apparently successful. According to the FBI report, it attracted only two freshmen, and "none of the three members were particularly enthused about the organization."</p> 34 | https://foiathedead.org/posts/robert-parry/ 35 | 36 | 37 | Cathleen Morawetz 38 | https://foiathedead.org/posts/cathleen-morawetz/ 39 | <p>Cathleen Morawetz was a mathematician and NYU professor whose research on the motion of fluids and waves was relevant to supersonic aircraft wing design. Her file describes a monthlong visit to the Soviet Union in 1963 as part of an Exchange Agreement, as well as FBI efforts to interview her (and apparently share technical information with her) without alerting her to the identity of a particular Bureau informant.</p> 40 | https://foiathedead.org/posts/cathleen-morawetz/ 41 | 42 | 43 | Drue Heinz 44 | https://foiathedead.org/posts/drue-heinz/ 45 | <p>Drue Heinz was a patron of the arts, publisher of <i>The Paris Review</i>, and—for a brief stretch in 1950—an actress. Her FBI file, which mostly refers to her as Doreen Mary Maher, consists of a background check conducted in 1948, apparently in connection to employment with the Voice of America.</p> 46 | https://foiathedead.org/posts/drue-heinz/ 47 | 48 | 49 | Fats Domino 50 | https://foiathedead.org/posts/fats-domino/ 51 | <p>Fats Domino was a pianist, singer, and songwriter who made a name as one of the biggest stars of the early rock-and-roll era. His file consists of a 1965 inquiry into one of his Cadillacs, apparently spotted during an FBI stakeout of a Philadelphia hotel that Martin Luther King was believed to be staying at.</p> 52 | 53 | <p>The document in Domino's file is labeled "SUBJECT: MARTIN LUTHER KING, JR." and refers to an earlier <a href="https://en.wikipedia.org/wiki/Airtel_(FBI)">airtel</a> from the FBI's Philadelphia office. That earlier message is included below for reference, and describes an "extremely discreet spot check at the Franklin Motor Inn," during which Domino's car was spotted and—it seems—mistakenly connected with King. The original document can be found in context in MLK's <a href="https://archive.org/details/fbi_file_mlk">complete FBI file</a>, which runs to over 16,600 pages. The Philadelphia airtel begins on page 49 of file 32.</p> 54 | https://foiathedead.org/posts/fats-domino/ 55 | 56 | 57 | C. Weston Houck 58 | https://foiathedead.org/posts/c-weston-houck/ 59 | <p>Judge C. Weston Houck presided over a lawsuit brought by Shannon Faulkner against South Carolina's public military college, The Citadel. His ruling in that case ended the Citadel's 152-year-old male-only admissions policy. His FBI file primarily addresses an incident wherein a man upset by that case engaged in behavior that could have been construed as a threat.</p> 60 | https://foiathedead.org/posts/c-weston-houck/ 61 | 62 | 63 | Pat Summitt 64 | https://foiathedead.org/posts/pat-summitt/ 65 | <p>Pat Summitt was a University of Tennessee coach who is credited for the rise in prominence of women's college basketball. Her FBI file documents a series of letters intended to threaten and possibly extort her, apparently written by an unhinged fan.</p> 66 | https://foiathedead.org/posts/pat-summitt/ 67 | 68 | 69 | Andrzej Wajda 70 | https://foiathedead.org/posts/andrzej-wajda/ 71 | <p>Andrzej Wajda was a Polish film and theater director who worked during the height of the Cold War. His FBI file primarily addresses a trip to Los Angeles in 1976 (probably for the Academy Awards, where his <i>The Promised Land</i> was nominated for Best Foreign Language Film) in which one member of his group was a subject of FBI monitoring.</p> 72 | https://foiathedead.org/posts/andrzej-wajda/ 73 | 74 | 75 | Harry Wu 76 | https://foiathedead.org/posts/harry-wu/ 77 | <p>Harry Hongda Wu was an activist and naturalized American citizen who traveled to China repeatedly to document human rights abuses, including the sale of organs, in the prison system there. His file primarily consists of his documenting those abuses.</p> 78 | https://foiathedead.org/posts/harry-wu/ 79 | 80 | 81 | Robert E. Allen 82 | https://foiathedead.org/posts/robert-e-allen/ 83 | <p>Robert Allen was the chief executive and chairman of AT&T for nearly a decade beginning in 1988—a transitional period for the U.S. telecommunications industry. His FBI file consists of background checks conducted during his AT&T leadership, as he was considered for various federal government jobs.</p> 84 | https://foiathedead.org/posts/robert-e-allen/ 85 | 86 | 87 | Mike Davis 88 | https://foiathedead.org/posts/mike-davis/ 89 | <p>Although he was a notable oil industry magnate and received widespread coverage when he married the Denver Post heiress 40 years his senior (after previously working as her chauffeur), Mike Davis was best known at the time of his death as the "World's Grumpiest Boss," after his 1970s-era office memos banning "levity" and even unsolicited greetings circulated online. His FBI file captures yet another facet of his life, documenting over some 200 pages a dramatic $50,000 Las Vegas extortion attempt of which he was the victim, and which involved Frank Sinatra and a number of famous casinos.</p> 90 | https://foiathedead.org/posts/mike-davis/ 91 | 92 | 93 | Edward Daly 94 | https://foiathedead.org/posts/edward-daly/ 95 | <p>Father Edward Daly was a Roman Catholic bishop from Northern Ireland who achieved prominence for his role at the forefront of the protest march on what became known as "Bloody Sunday." In 1972 he visited New York, where the FBI recorded plans to monitor him and describes an interview the Bureau conducted with him at the Roosevelt Hotel.</p> 96 | https://foiathedead.org/posts/edward-daly/ 97 | 98 | 99 | Warren Hinckle 100 | https://foiathedead.org/posts/warren-hinckle/ 101 | <p>Warren J. Hinckle, III was a well-known columnist and provocateur best known as the editor of Ramparts magazine and a vocal (and at times gonzo) proponent of left politics. His FBI file pertains chiefly to an investigation into an advertisement placed in 1981 seeking to recruit volunteers for an American brigade of the IRA, and also contains excerpts of his writing on Cuba.</p> 102 | 103 | <p>Muckrock has posted <a href="https://www.muckrock.com/news/archives/2017/sep/26/fbi-warren-hinckle/">a more extensive look</a> into the contents of Hinckle's FBI file.</p> 104 | https://foiathedead.org/posts/warren-hinckle/ 105 | 106 | 107 | Trinh Thi Ngo 108 | https://foiathedead.org/posts/trinh-thi-ngo/ 109 | <p>Trinh Thi Ngo broadcast as "Hanoi Hannah" from North Vietnam during the Vietnam War. Her show aimed to damage the morale of American troops. Her short FBI file mentions her only in passing, in a report about a similar show that was believed to be recorded within the U.S.—the show hosts claimed to be in the Watts neighborhood of Los Angeles—and shipped to Vietnam for broadcast there.</p> 110 | https://foiathedead.org/posts/trinh-thi-ngo/ 111 | 112 | 113 | David Bunnell 114 | https://foiathedead.org/posts/david-bunnell/ 115 | <p>David Bunnell was one of the founding figures of the computer trade publication industry, involved in founding PC Magazine, Macworld and others. Before that, though, he was involved in New Left politics at the University of Nebraska, where as a student in 1968 he served as the president of the Students for a Democratic Society chapter. His FBI file tracks that group's activities during his tenure there.</p> 116 | https://foiathedead.org/posts/david-bunnell/ 117 | 118 | 119 | Hugh O'Brian 120 | https://foiathedead.org/posts/hugh-o-brian/ 121 | <p>Hugh O'Brian was an American actor best known for his portrayal of Wyatt Earp during the height of the popularity of Western TV shows. His fame led to an invitation from Nobel Prize winning Dr. Albert Schweitzer to a hospital in Gabon, which inspired O'Brian to start a non-profit foundation for youth leadership. His FBI file consists of correspondence between the Bureau and his foundation, which invited multiple FBI directors to speak at events.</p> 122 | https://foiathedead.org/posts/hugh-o-brian/ 123 | 124 | 125 | Elaine Lustig Cohen 126 | https://foiathedead.org/posts/elaine-lustig-cohen/ 127 | <p>Elaine Lustig Cohen was a painter and graphic designer responsible for the signage on the Seagram's Building, among many other clients. In the late 1960s, the FBI maintained a short file on her—including monitoring her international travel—and her husband, Arthur A. Cohen. The file includes some sensitive personal details about their marriage.</p> 128 | https://foiathedead.org/posts/elaine-lustig-cohen/ 129 | 130 | 131 | Nina Ponomareva 132 | https://foiathedead.org/posts/nina-ponomareva/ 133 | <p>Nina Ponomoreva was an Olympic discus thrower from the Soviet Union. In 1956 she was involved in a minor diplomatic crisis, when she was accused (and found guilty) of shoplifting hats in the United Kingdom. Her short FBI file consists of newspaper reports of that incident and its fallout.</p> 134 | https://foiathedead.org/posts/nina-ponomareva/ 135 | 136 | 137 | Sammy Lee 138 | https://foiathedead.org/posts/sammy-lee/ 139 | <p>Sammy Lee was the first Asian-American man to win an Olympic gold medal for the United States. He subsequently worked as a doctor and coach, and was honored by six U.S. presidents. In 1990, he was appointed to the President's Council on Physical Fitness and Sport, and his FBI file mostly pertains to the background check required for that position.</p> 140 | https://foiathedead.org/posts/sammy-lee/ 141 | 142 | 143 | Ahmed H. Zewail 144 | https://foiathedead.org/posts/ahmed-h-zewail/ 145 | <p>Ahmed Zewail was a chemist and Nobel Prize winner who worked in the Obama White House as a science adviser. His file consists of background checks conducted for that position, conducted between 2008 and 2012.</p> 146 | https://foiathedead.org/posts/ahmed-h-zewail/ 147 | 148 | 149 | Coca Crystal 150 | https://foiathedead.org/posts/coca-crystal/ 151 | <p>Coca Crystal was a counterculture activist and TV personality associated with New York City. Her file covers meetings she planned, attended, or led in the early 1970s, including one to protest Nixon's inauguration.</p> 152 | https://foiathedead.org/posts/coca-crystal/ 153 | 154 | 155 | Gus Savage 156 | https://foiathedead.org/posts/gus-savage/ 157 | <p>Gus Savage worked as a civil rights activist and spokesman for the Progressive Party before he was elected to Congress to represent the South Side of Chicago. His lengthy FBI file covers that earlier activism, an (unsuccessful) loyalty check during an application for a federal government job, and investigations into threats against him during his time in office.</p> 158 | https://foiathedead.org/posts/gus-savage/ 159 | 160 | 161 | Robert Bennett 162 | https://foiathedead.org/posts/robert-bennett/ 163 | <p>Years before Robert Foster Bennett served as Senator from Utah, he ran a public relations company that counted Howard Hughes as a client and once employed Watergate burglar E. Howard Hunt. His FBI file pertains to a $50,000 political donation from Hughes to the Nixon re-election effort — a payment that Bennett coordinated with Gordon Liddy.</p> 164 | https://foiathedead.org/posts/robert-bennett/ 165 | 166 | 167 | Ben H. Bagdikian 168 | https://foiathedead.org/posts/ben-h-bagdikian/ 169 | <p>Before reporter Ben Bagdikian covered the Pentagon Papers for the <i>Washington Post</i>, he was the author of a series of critical articles about official secrecy and "loyalty checks" in federal law enforcement. These writings landed him on the bad side of J. Edgar Hoover, which resulted in decades of scrutiny.</p> 170 | 171 | <p>The Bureau subsequently collected and summarized his major writing, including a series of 12 articles on news magazines and their effect on politics. (Those summaries, and the articles they address, are included in this file.)</p> 172 | 173 | <p>But it was his 1961 article about the 37th anniversary of J. Edgar Hoover's appointment as chief that most rankled. Hoover annotated a copy of the article, asking that Bagdikian be removed from all Bureau mailings. He reportedly called the article "utter bunk."</p> 174 | 175 | <p>Bagdikian was likely aware of his reputation within the Bureau, but would have had it confirmed when, in 1975, he filed a Freedom of Information Act request for his own file. That request, and the follow-up communications (including his check for $8.50 and a notarized signature) are also included in this file.</p> 176 | https://foiathedead.org/posts/ben-h-bagdikian/ 177 | 178 | 179 | Sam Iacobellis 180 | https://foiathedead.org/posts/sam-iacobellis/ 181 | <p>Sam Iacobellis is the engineer credited with developing the B-1 bomber, an American stealth long-range aircraft that affected the course of the Cold War. His short file contains a report of contact with an official—possibly one from the USSR—and an FBI decision not to interview him afterward.</p> 182 | https://foiathedead.org/posts/sam-iacobellis/ 183 | 184 | 185 | Norma McCorvey 186 | https://foiathedead.org/posts/norma-mccorvey/ 187 | <p>Norma McCorvey was the plaintiff, under the pseudonym Jane Roe, of the landmark 1973 Supreme Court case ruling state anti-abortion laws unconstitutional. Her FBI file is focused on a 1989 incident, days before she was to participate in an abortion rights rally, in which unknown suspects fired a shotgun at her home and car.</p> 188 | https://foiathedead.org/posts/norma-mccorvey/ 189 | 190 | 191 | Madeleine Sherwood 192 | https://foiathedead.org/posts/madeleine-sherwood/ 193 | <p>Madeline Sherwood was an actress most notable for her role in the 1960s television series "The Flying Nun." She had previously been married to the playwright Robert Sherwood, whom the FBI believed to be involved with Communism. This file describes an effort to locate her, to interview her, and the decision not to approach her directly.</p> 194 | https://foiathedead.org/posts/madeleine-sherwood/ 195 | 196 | 197 | Jack T. Chick 198 | https://foiathedead.org/posts/jack-t-chick/ 199 | <p>Fundamentalist Christian cartoonist Jack Chick wrote to J. Edgar Hoover in 1971 seeking the FBI's help with his bizarre religious comics. His file consists of that letter and Hoover's response declining to participate. A <a href="https://boingboing.net/2017/03/10/funnybooks-and-feebs.html">longer write-up of this file</a> has been published at Boing Boing.</p> 200 | https://foiathedead.org/posts/jack-t-chick/ 201 | 202 | 203 | Walter Kohn 204 | https://foiathedead.org/posts/walter-kohn/ 205 | <p>Nobel laureate Walter Kohn left Austria as a child refugee in 1940, coming to Canada and eventually to the United States to study and teach physics. He was the founding director of the Institute for Theoretical Physics at UC Santa Barbara, helped establish a program for Judaic studies at UC San Diego, and taught at Harvard and Carnegie Mellon. His FBI file consists of an extensive background check for a Department of Energy job in the late 1980s.</p> 206 | https://foiathedead.org/posts/walter-kohn/ 207 | 208 | 209 | Hedy Epstein 210 | https://foiathedead.org/posts/hedy-epstein/ 211 | <p>Hedy Epstein, a Holocaust survivor who served as a translator in the Nuremberg trials before emigrating to the U.S., worked as an activist for various causes over a span of more than five decades. Her FBI file covers those five decades, and the overwhelming majority concerns housing discrimination cases she helped prepare in the 1970s.</p> 212 | https://foiathedead.org/posts/hedy-epstein/ 213 | 214 | 215 | Daniel Aaron 216 | https://foiathedead.org/posts/daniel-aaron/ 217 | <p>Daniel Aaron was a literary critic and historian credited with pioneering the field of "American studies." His short FBI file is chiefly concerned with his contribution to a study on the role of Communism in the United States, announced in 1955.</p> 218 | https://foiathedead.org/posts/daniel-aaron/ 219 | 220 | 221 | Joseph Medicine Crow 222 | https://foiathedead.org/posts/joseph-medicine-crow/ 223 | <p>Joseph Medicine Crow was a widely renowned Native American historian and anthropologist and the last living person to have heard spoken testimony from people at the Battle of the Little Bighorn. His FBI file consists only of a single-page interview he gave to special agents about a friend, a Jeep accident, and an angry mob weilding two-by-fours.</p> 224 | https://foiathedead.org/posts/joseph-medicine-crow/ 225 | 226 | 227 | Haskell Wexler 228 | https://foiathedead.org/posts/haskell-wexler/ 229 | <p>Haskell Wexler was the award-winning filmmaker known for "Medium Cool" (1969) and others. The FBI monitored him before and after his 1976 documentary "Underground," about the radical Weathermen, and attempted to subpoena his raw footage.</p> 230 | https://foiathedead.org/posts/haskell-wexler/ 231 | 232 | 233 | King Bhumibol Aduljadej 234 | https://foiathedead.org/posts/king-bhumibol-aduljadej/ 235 | <p>Bhumibol Aduljadej was king of Thailand for 70 years. In 2000, Thai law enforcement requested the FBI’s help in locating a "disrespectful" online impersonator.</p> 236 | https://foiathedead.org/posts/king-bhumibol-aduljadej/ 237 | 238 | 239 | Michael Mariotte 240 | https://foiathedead.org/posts/michael-mariotte/ 241 | Michael Mariotte was a prominent anti-nuclear activist throughout the 1980s, 1990s and 2000s. Before that, in 1973, he’d gotten the FBI’s attention as a member of the Youth International Party and a potential protestor at Richard Nixon’s inauguration. 242 | https://foiathedead.org/posts/michael-mariotte/ 243 | 244 | 245 | Morley Safer 246 | https://foiathedead.org/posts/morley-safer/ 247 | Morley Safer was a Canadian journalist who came to prominence offering unvarnished coverage of the Vietnam War. After receiving a viewer complain that Safer’s reporting would be &quot;destructive to morale,&quot; FBI prepared a report but declined to investigate further. 248 | https://foiathedead.org/posts/morley-safer/ 249 | 250 | 251 | Mark Lane 252 | https://foiathedead.org/posts/mark-lane/ 253 | <p>Mark Lane was a leading proponent of the theory that the assassination of John F. Kennedy was a conspiracy. His FBI file concerns travel in 1980 to Lebanon, but concedes that he "has been known to the Bureau since the early 1960s."</p> 254 | https://foiathedead.org/posts/mark-lane/ 255 | 256 | 257 | Bill Campbell 258 | https://foiathedead.org/posts/bill-campbell/ 259 | <p>Bill Campbell was an executive and advisor for large tech companies such as Apple and Google. His file consists primarily of an FBI interview conducted in 2007 about an options backdating scandal at Apple, where he served on the board.</p> 260 | https://foiathedead.org/posts/bill-campbell/ 261 | 262 | 263 | William L. O’Neill 264 | https://foiathedead.org/posts/william-l-oneill/ 265 | <p>William O’Neill wrote a dozen books about history and radicalism through the 60s, 70s, 80s and 90s. His participation in activism was monitored by the FBI — particularly his involvement in an Fair Play for Cuba event, where he served as master of ceremonies.</p> 266 | https://foiathedead.org/posts/william-l-oneill/ 267 | 268 | 269 | Boutros Boutros-Ghali 270 | https://foiathedead.org/posts/boutros-boutros-ghali/ 271 | <p>Boutros Boutros-Ghali served as the U.N. Secretary General in the post-Cold War era after decades as an Egyptian diplomat. His FBI file mostly dates to the beginning of that era, and remains heavily redacted.</p> 272 | https://foiathedead.org/posts/boutros-boutros-ghali/ 273 | 274 | 275 | Dr. Herbert L. Abrams 276 | https://foiathedead.org/posts/dr-herbert-l-abrams/ 277 | FOIA The Dead has obtained the FBI file for Dr. Herbert L. Abrams. 278 | https://foiathedead.org/posts/dr-herbert-l-abrams/ 279 | 280 | 281 | Lois Weisberg 282 | https://foiathedead.org/posts/lois-weisberg/ 283 | FOIA The Dead has obtained the FBI file for Lois Weisberg. 284 | https://foiathedead.org/posts/lois-weisberg/ 285 | 286 | 287 | Robert Stigwood 288 | https://foiathedead.org/posts/robert-stigwood/ 289 | <p>Robert Stigwood was an Australian music and movie producer and executive who achieved international success with acts such as the Bee Gees and Eric Clapton, and films such as "Saturday Night Fever," "Grease," and "Evita." Before his <a href="http://www.nytimes.com/2016/01/05/arts/music/robert-stigwood-entrepreneur-of-rock-and-film-is-dead-at-81.html">death in January 2016</a>, he was frequently ranked among the wealthiest people in Britain.</p> 290 | 291 | <p>In May and June of 1991, around the time that <a href="http://articles.latimes.com/1993-12-11/entertainment/ca-728_1_director-oliver-stone">Disney aborted plans</a> to fund a film version of "Evita" directed by Oliver Stone, the FBI's legal attaché in Canberra, Australia contacted the Bureau's Los Angeles and central headquarters requesting a criminal check on Stigwood after a request from an unknown party.</p> 292 | 293 | <p>The FBI came up empty-handed after performing the requested search and checking the records of the California Department of Justice, the Bureau of Criminal Identification and Information, the Los Angeles Police Department, and the Los Angeles Count Sheriff's Department. Information about that request was furnished to the unknown party.</p> 294 | 295 | <p>From to FBI records:</p> 296 | 297 | <blockquote><p>On 5/29/91, [REDACTED] contacted [FBI's Canberra legal attaché] concerning Stigwood.</p> 298 | 299 | <p>He advised that Robert Stigwood ... is under consideration by [REDACTED] to be [REDACTED].</p> 300 | 301 | <p>Stigwood is a relatively well-known Australian movie producer/director who has spent much of his life in the Hollywood California area.</p> 302 | 303 | <p>Lead at Los Angeles, California: Conduct an indices search for any information concerning Stigwood and advise [legal attaché] Canberra for dissemination to [REDACTED]. A prompt reply would be appreciated.</p></blockquote> 304 | 305 | <p>Redacted records of that correspondence make up the entirety of Stigwood's released FBI file and are reproduced below.</p> 306 | https://foiathedead.org/posts/robert-stigwood/ 307 | 308 | 309 | Michael G. Oxley 310 | https://foiathedead.org/posts/michael-g-oxley/ 311 | <p>Representative Mike Oxley, best known for his co-authorship of the anti-fraud law to emerge from the Enron scandal, was one of the <a href="https://www.newsmax.com/John-Gizzi/DEA-FBI-Oxley-Sarbanes/2016/01/05/id/708181/">FBI's staunchest defenders</a> in the halls of Congress throughout his tenure—and especially during the 1990s "Crypto Wars," in which the Bureau <a href="https://partners.nytimes.com/library/cyber/week/092597encrypt.html">tried and failed to require law enforcement backdoors in all U.S. encryption software</a>.</p> 312 | 313 | <p>Oxley was one of two former FBI agents to serve in Congress—the other, Rep. Don Edwards, served as chair of the House Subcommittee on Civil and Constitutional Rights and <a href="http://www.latimes.com/local/obituaries/la-me-don-edwards-20151003-story.html">frequently butted heads with his former employer on policy issues</a>.</p> 314 | 315 | <p>In the years after Oxley's 1971 retirement from the FBI, he remained close with the Bureau's leadership and continued to exchange friendly correspondence. He received letters of thanks from FBI directors each time he defended the agency in the Congressional Record. Today, FOIA The Dead is publishing Oxley's complete FBI file, including the following notable points:</p> 316 | 317 | <ul> 318 | <li><p>In 1971 Oxley received personal commendation from J. Edgar Hoover for his efforts in arresting suspects involved in a bank robbery. According to Roll Call, the <a href="http://www.rollcall.com/news/politics/former-rep-mike-oxley-dies">bank robbery involved the Black Panthers</a>.</p> 319 | 320 | <blockquote><p>The high quality of your efforts incident to the investigation and apprehensions of [REDACTED] and [REDACTED] the subjects of a Bank Robbery case, is indeed worthy of commendation.</p> 321 | 322 | <p>In spite of the difficulties you encountered, you skillfully and with great dispatch effected the arrests of these Bureau fugitives without causing insurmountable problems. I am appreciative.</p></blockquote> 323 | </li> 324 | 325 | <li><p>Also in 1971, Oxley received a $200 "incentive award" authorized by Hoover for working with an informant to apprehend one of the suspects in <a href="http://www.nytimes.com/1971/09/24/archives/city-policeman-wearing-shield-of-slain-partner.html">the killing of NYPD officer Kenneth Nugent</a>. Two of the people charged for that crime were the last people sentenced to death in New York before a State Court <a href="http://www.nytimes.com/1973/06/08/archives/state-court-ends-death-sentences-appeals-bench-finds-wide.html">ruled the law unconstitutional</a>; their sentences were reduced to 25 years to life.</p></li> 326 | <li><p>A section of the FBI's August 1969 pre-employment background check is representative of the Bureau's concerns in the era:</p> 327 | 328 | <blockquote>[REDACTED], A NON-HIPPIE TYPE INDIVIDUAL RESIDING AT [REDACTED], ADVISED THAT [REDACTED] LIVES WITH HIM AT THIS ADDRESS AND IS SINGLE. ... STATED [REDACTED] IS NOT A HIPPIES [sic]. ALTHOUGH HE WEARS LONG HAIR.</blockquote> 329 | 330 | </li></ul> 331 | https://foiathedead.org/posts/michael-g-oxley/ 332 | 333 | 334 | Dale Bumpers 335 | https://foiathedead.org/posts/dale-bumpers/ 336 | FOIA The Dead has obtained the FBI file for Dale Bumpers. 337 | https://foiathedead.org/posts/dale-bumpers/ 338 | 339 | 340 | Walter J. Leonard 341 | https://foiathedead.org/posts/walter-j-leonard/ 342 | <p>Walter Jewell Leonard was best known as the <a href="http://www.nytimes.com/2015/12/17/education/walter-j-leonard-pioneer-of-affirmative-action-in-harvard-admissions-dies-at-86.html">architect of Harvard's influential affirmative action program</a> beginning in 1969. The admissions policy has been emulated by schools around the country and the world. In 1955, he was investigated by the FBI during an application of his own, to serve as a corrections officer in an Atlanta federal prison.</p> 343 | 344 | <p>The overwhelming majority of Leonard's FBI file is the product of that investigation, which included exhaustive background checks into his education, his Coast Guard service, his employment history, and his finances ("All offices note Appli[cant]'s poor credit rating," p. 17). Unsurprisingly, that history reflects the Jim Crow south in which Leonard was raised, including conflicting and ultimately discredited stories about insubordination and even embezzlement at various jobs.</p> 345 | 346 | <p>One example: he worked as a waiter at the restaurant O'Donnell's Sea Grill from 1950-1, and reportedly was fired for refusing to serve another cashier. Further FBI inquiries showed that Leonard was not at fault for the incident—"his discharge was the result of a misunderstanding and [the office manager of the restaurant] now felt that the applicant was not reprehensible." In the FBI's own words in 1966: "Atlanta file shows that LEONARD was discharged from two jobs in Washington, D.C., and had poor credit rating while there; however, there appears to be some question as to whether he was actually discharged or resigned. There also appears to be some question as to whether these actions by the employers were justified or had a sound basis." (p. 68)</p> 347 | 348 | <p>But the records from after the application are even more illuminating about the work that would eventually win him national recognition. He received the prison job but was terminated seven months later, in October 1955. His file includes excerpts from a letter he wrote to the warden at the time.</p> 349 | 350 | <blockquote><p>LEONARD wrote that in connection with the decision by the Board of Supervisors to terminate his services, he wished to appraise the Warden of some "rumors" and "falsehoods." He mentions allegations made to the effect that he was a "spy" for the Bureau of Prisons and that he was placed at Atlanta to "break down segregation" and push for "integration." The letter notes that "these things are out of proportion to common sense." LEONARD continued, "It has been suggested that I have aired views, contrary to institution practice, along racial lines. If I knew who started this absurd propaganda, I would feel inclined to institute a suit for libel. <strong>Even if I had observed some discrimination, I am intelligent enough to realize I don't have the authority to contradict the administration of this institution."</strong> ...</p> 351 | 352 | <p>"I do not want to think that there was a racial angle to the opinion of my supervisors. I have written the Bureau, I have made no mention of this point; wanting to discuss this with you personally. I am not interested in the personal whims, prejudices, or selfish motives of anyone. My purpose is to <u>do</u> and <u>keep</u> a job.</p></blockquote> 353 | 354 | <p>(pp. 72-3. Emphasis added.)</p> 355 | 356 | <p>Of course, some 15 years later Leonard would go on to have the authority at an institution where he was able to correct discrimination.</p> 357 | 358 | <p>Some records from his file from that era are largely redacted. Context suggests that, in 1956, the FBI contacted Leonard to evaluate his suitability as an informant about the activities of members of the Nation of Islam, due to his position as office manager at "Forrest Arms Hotel, ... where three of the Assistant Ministers of the Atlanta Temple reside ... He has been asked to attend their meetings and although he has not yet attended, he stated he will in the near future." (p. 68)</p> 359 | 360 | <p>The question of his informing seems to be mooted when Leonard lost that job and, in August of 1956, Leonard moved to Chicago, as one of millions of African American participants in the greater sociological phenomenon dubbed <a href="https://en.wikipedia.org/wiki/Second_Great_Migration_(African_American)">The Great Migration</a>.</p> 361 | 362 | <p>Finally, in 1979, a review of his file was made in advance of Leonard's <a href="http://www.presidency.ucsb.edu/ws/index.php?pid=32240">presidential appointment by Jimmy Carter</a> to serve on the United States Naval Academy <a href="https://www.usna.edu/PAO/Superintendent/bov.html">Board of Visitors</a>.</p> 363 | https://foiathedead.org/posts/walter-j-leonard/ 364 | 365 | 366 | John Trudell 367 | https://foiathedead.org/posts/john-trudell/ 368 | FOIA The Dead has obtained the FBI file for John Trudell. 369 | https://foiathedead.org/posts/john-trudell/ 370 | 371 | 372 | Marcus Klingberg 373 | https://foiathedead.org/posts/marcus-klingberg/ 374 | FOIA The Dead has obtained the FBI file for Marcus Klingberg. 375 | https://foiathedead.org/posts/marcus-klingberg/ 376 | 377 | 378 | Gene Norman 379 | https://foiathedead.org/posts/gene-norman/ 380 | <h3>Legendary jazz producer investigated for Chicken Dance travel behind Iron Curtain</h3> 381 | 382 | <p>Jazz legend Gene Norman was flagged by the FBI for a pair of 1984 trips to Poland, which was at the time under Cold War era travel restrictions. Norman, born Julian Nabatoff in Brooklyn in 1922, was himself the son of Russian immigrants. He and his travel companions were only able to fly to Poland via Montreal.</p> 383 | 384 | <p>On the Polish trips that garnered FBI attention, he was accompanied by a musician who had recently recorded a Norman-produced hit version of "Dance, Little Bird," more commonly known as "The Chicken Dance." According to FBI records, the trip was at the behest of the Polish state music and entertainment agency Ars Polonia to mark the release of the record in that country.</p> 385 | 386 | <p>That performer's name is redacted in the released FBI files, but context indicates that it was Wisconsin Area Music Industry's Hall of Fame inductee Bob Kames, who <a href="http://archive.jsonline.com/news/milwaukee/29539139.html">became known as "The Chicken Dance King" by the time of his death in 2008</a>. This clip of Kames performing the song with his family band in a 1980s Christmas special likely dates a few years after the Polish travel.</p> 387 | 388 | <div style="position:relative;height:0;padding-bottom:75.0%"><iframe src="https://www.youtube-nocookie.com/embed/qdCk7uzWNhI?rel=0?ecver=2" width="480" height="360" frameborder="0" style="position:absolute;width:100%;height:100%;left:0" allowfullscreen></iframe></div> 389 | 390 | <p>The version they recorded reportedly sold 300,000 copies in Poland. Kames said of its success: "I get 2 cents out from each 35-cent record sold. When they sold 300,000 records, they gave me a gold record. Of course, I can't take the money out of the country."</p> 391 | https://foiathedead.org/posts/gene-norman/ 392 | 393 | 394 | Willis Carto 395 | https://foiathedead.org/posts/willis-carto/ 396 | <p>Willis Carto was a far-right activist and Holocaust denier whose work was denounced by groups like the Southern Poverty Law Center and the Anti-Defamation League. Matt Novak at Gizmodo has done <a href="https://paleofuture.gizmodo.com/fbi-releases-file-on-willis-carto-neo-nazi-recently-bu-1783195062">an extensive write-up</a> of the contents of Carto's FBI file.</p> 397 | https://foiathedead.org/posts/willis-carto/ 398 | 399 | 400 | Licio Gelli 401 | https://foiathedead.org/posts/licio-gelli/ 402 | <p>Licio Gelli was a prominent Italian financier and self-professed fascist who was investigated as the head of a secret society (illegal in his native Italy) and later convicted for bank fraud and a host of other crimes.</p> 403 | https://foiathedead.org/posts/licio-gelli/ 404 | 405 | 406 | E. Virgil Conway 407 | https://foiathedead.org/posts/e-virgil-conway/ 408 | <p>Before Virgil Conway was the chairman of New York City MTA, he was a banker—first for the state, and then as chairman and chief executive of Seaman's Bank. At that time, he also served as an SAC Contact to the FBI; his file consists mostly of communications between him and agents in the Bureau and descriptions of events he and other official contacts attended.</p> 409 | https://foiathedead.org/posts/e-virgil-conway/ 410 | 411 | 412 | Luther Burden 413 | https://foiathedead.org/posts/luther-burden/ 414 | <p>Luther "Ticky" Burden was a <a href="http://www.timesunion.com/local/article/Ticky-Burden-s-rise-fall-and-rise-3897542.php">professional basketball player</a> with the New York Knicks from 1976-77. In 1981, he was convicted of taking part in a bank robbery. In 1984, <a href="http://www.nytimes.com/1984/01/31/sports/retrial-ordered-for-burden-ex-knick.html">that conviction was overturned</a> when the New York State Supreme Court ruled his home had been illegally searched without a warrant. He later pled guilty to <a href="http://www.nytimes.com/1984/07/03/sports/sports-people-burden-pleads-guilty.html">possession of $400</a> of the stolen money. He <a href="http://www.nytimes.com/2015/11/04/sports/basketball/luther-burden-former-knick-who-served-time-for-bank-robbery-dies-at-62.html">died in November 2015</a> in Winston-Salem.</p> 415 | 416 | <p>In July 1980, shortly after his arrest, the FBI wrote to the United States Attorney in Eastern District of New York to report that an Assistant US Attorney had declined to federally prosecute Burden, in favor of local prosecution. That letter, which made up the entirety of Burden's released FBI file, is reproduced below.</p> 417 | https://foiathedead.org/posts/luther-burden/ 418 | 419 | 420 | 421 | -------------------------------------------------------------------------------- /updatesite.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # Creates a set of static HTML documents from source material in 3 | # the FOIA The Dead database. 4 | 5 | import dominate 6 | import html2text 7 | import json 8 | import markdown 9 | import os 10 | import sys 11 | import sqlite3 12 | import time 13 | import urllib 14 | import yaml 15 | from documentcloud import DocumentCloud 16 | from dominate.tags import * 17 | from dominate.util import text 18 | from feedgen.feed import FeedGenerator 19 | 20 | config = yaml.safe_load(open("config.yaml")) 21 | dc = DocumentCloud(config['dc_user'],config['dc_password']) 22 | 23 | home = "https://foiathedead.org" 24 | 25 | def create_boilerplate_html(): 26 | h = dominate.document() 27 | h.title = "FOIA The Dead: a morbid transparency project" 28 | 29 | logo_url = urllib.parse.urljoin(home, "imgs/ftd-logo.png") 30 | 31 | with h.head: 32 | meta(charset="utf-8") 33 | meta( 34 | name="viewport", 35 | content="width=device-width, initial-scale=1") 36 | link( 37 | rel="stylesheet", 38 | href= urllib.parse.urljoin(home, "normalize.css")) 39 | link( 40 | rel="stylesheet", 41 | href= urllib.parse.urljoin(home, "main.css")) 42 | 43 | meta(name="twitter:card", content="summary") 44 | meta(name="twitter:site", content="@FOIAtheDead") 45 | meta(name="twitter:image", content=logo_url) 46 | 47 | meta(property="og:image", content=logo_url) 48 | 49 | h.body.add( 50 | div(id=name) for name in ["header","content","footer"]) 51 | 52 | h.body[0].add(a(img(src=logo_url, id="logo"),href=home)) 53 | 54 | h.body[2].add(div(id="copyright")) 55 | 56 | cc_by_img_url = urllib.parse.urljoin(home, "imgs/cc-by.png") 57 | 58 | with h.body.getElementById('copyright'): 59 | text('Creative Commons License'.format(cc_by_img_url), escape = False) 60 | 61 | return h 62 | 63 | def create_numbered_page(entries): 64 | pagecount = sum([entry['pages'] for entry in entries]) 65 | entrycount = len(entries) 66 | 67 | h = create_boilerplate_html() 68 | 69 | with h.head: 70 | meta( 71 | name="description", 72 | content="A transparency project requesting and releasing the FBI files of notable individuals found in the obituary pages.") 73 | 74 | meta(name="twitter:title", content="FOIA The Dead") 75 | meta( 76 | name="twitter:description", 77 | content="A transparency project requesting and releasing the FBI files of notable individuals found in the obituary pages.") 78 | 79 | meta(property="og:url", content=home) 80 | meta(property="og:title", content=h.title) 81 | meta( 82 | property="og:description", 83 | content="A transparency project requesting and releasing the FBI files of notable individuals found in the obituary pages.") 84 | 85 | link(rel="alternate", type="application/rss+xml", href=urllib.parse.urljoin(home, "rss.xml")) 86 | 87 | comment("Looking to scrape this page? Almost everything is available in entries.json.") 88 | 89 | about_url = urllib.parse.urljoin(home, "about") 90 | 91 | headline = h1( 92 | "FOIA The Dead has released {pagecount:,} pages of FBI records on {entrycount} public figures. ".format(**locals()), 93 | id="headline", __pretty = False) 94 | about_link = a("read more »", href=about_url, 95 | id="about-link") 96 | 97 | h.body[0].add(headline).add(about_link) 98 | 99 | return h 100 | 101 | def create_homepage(entries): 102 | print("Updating homepage.") 103 | 104 | pagegroups = [entries[i:i+12] for i in range(0, len(entries), 12)] 105 | 106 | pagegroup_count = len(pagegroups) 107 | 108 | pagenum = 1 109 | 110 | for group in pagegroups: 111 | h = create_numbered_page(entries) 112 | l = h.body[1].add(ul(id="results-list")) 113 | for entry in group: 114 | post_link = urllib.parse.urljoin( 115 | "posts/", entry['slug']) 116 | if pagenum != 1: 117 | post_link = "../" + post_link 118 | tile = l.add(li(h2(a(entry['name'], href=post_link)))) 119 | obit_link = a( 120 | entry['headline'], href=entry['obit_url']) 121 | 122 | with tile: 123 | if entry['short_desc']: 124 | text(entry['short_desc'], escape = False) 125 | p(a("Read more »", href=post_link)) 126 | p("New York Times obit: ", 127 | __pretty = False).add(obit_link) 128 | 129 | nav = h.body[1].add(div(id="page-nav")) 130 | 131 | pagination = nav.add(ul(id="pagination")) 132 | 133 | page_links = [home] 134 | page_links.extend([urllib.parse.urljoin(home, str(page)) for page in range(2, pagegroup_count + 1)]) 135 | 136 | pagination.add(li(a("«", href=home))) 137 | 138 | for index in range(len(page_links)): 139 | number = index + 1 140 | page = pagination.add(li(a(number, href=page_links[index]))) 141 | if number == pagenum: 142 | with page: 143 | attr(cls="current-page") 144 | 145 | pagination.add(li(a("»", href=page_links[-1]))) 146 | 147 | firstpage = True if pagenum == 1 else False 148 | 149 | if firstpage: 150 | filename = "site/index.html" 151 | else: 152 | os.makedirs("site/{}".format(pagenum), exist_ok=True) 153 | filename = "site/{}/index.html".format(pagenum) 154 | 155 | with open(filename, "w") as f: 156 | f.write(h.render()) 157 | 158 | pagenum += 1 159 | 160 | def populate_posts(entries): 161 | print("Updating posts.") 162 | for entry in entries: 163 | populate_post(entry) 164 | 165 | def populate_post(entry): 166 | h = create_boilerplate_html() 167 | h.title = entry['name'] + ": FOIA The Dead" 168 | 169 | with h.head: 170 | meta(name="twitter:title", content=h.title) 171 | meta( 172 | name="twitter:description", 173 | content=entry['twitter_desc']) 174 | 175 | post_url = urllib.parse.urljoin( 176 | home, "posts/" + entry['slug'] + "/index.html") 177 | 178 | meta(property="og:url", content=post_url) 179 | meta(property="og:title", content=h.title) 180 | meta(property="og:description", content=entry['fb_desc']) 181 | 182 | h.body['class'] = "post-page" 183 | 184 | h.body[0].add(h1(a("FOIA The Dead", href=home))) 185 | h.body[0].add(h2(entry['name'])) 186 | 187 | dc_embed = '
'.format(entry['documentcloud_id'],entry['name']) 188 | 189 | with h.body[1]: 190 | 191 | with div(id="description"): 192 | if entry['long_desc']: 193 | text(entry['long_desc'], escape=False) 194 | elif entry['short_desc']: 195 | text(entry['short_desc'], escape=False) 196 | 197 | obit_link = a(entry['headline'], href=entry['obit_url']) 198 | p("New York Times obit: ", __pretty = False).add(obit_link) 199 | 200 | text(dc_embed, escape=False) 201 | 202 | os.makedirs("site/posts/" + entry['slug'], exist_ok=True) 203 | path = os.path.join("site/posts/", entry['slug'], "index.html") 204 | with open(path, "w") as f: 205 | f.write(h.render()) 206 | 207 | def create_error_page(): 208 | print("Updating error page.") 209 | 210 | h = create_boilerplate_html() 211 | 212 | h.body[0].add(h1(a("FOIA The Dead", href=home))) 213 | 214 | h.body[1].add(h2( 215 | "Sorry, this page is broken :(", id="error-text")) 216 | 217 | with open("site/error.html", "w") as f: 218 | f.write(h.render()) 219 | 220 | def create_about_page(): 221 | print("Updating about page.") 222 | 223 | h = create_boilerplate_html() 224 | 225 | h.title = "About FOIA The Dead" 226 | 227 | with h.head: 228 | meta(name="twitter:title", content=h.title) 229 | meta( 230 | name="twitter:description", 231 | content="FOIA The Dead is a long-term transparency project using the Freedom of Information Act. It releases FBI records on recently deceased public figures.") 232 | 233 | about_url = urllib.parse.urljoin(home, "about/") 234 | 235 | meta(property="og:url", content=about_url) 236 | meta(property="og:title", content=h.title) 237 | meta( 238 | property="og:description", 239 | content="FOIA The Dead is a long-term transparency project using the Freedom of Information Act. It releases FBI records on recently deceased public figures.") 240 | 241 | h.body['class'] = "about-page" 242 | 243 | h.body[0].add(h1(a("FOIA The Dead", href=home))) 244 | h.body[0].add(h2("About this project")) 245 | 246 | with open("site/about.md","r") as f: 247 | about_text = f.read() 248 | 249 | about_html = markdown.markdown(about_text) 250 | 251 | with h.body[1]: 252 | text(about_html, escape=False) 253 | 254 | with open("site/about/index.html", "w") as f: 255 | f.write(h.render()) 256 | 257 | def create_feeds(entries): 258 | print("Updating feeds.") 259 | 260 | fg = FeedGenerator() 261 | fg.title('FOIA The Dead') 262 | fg.author(name='FOIA The Dead', email='foia@foiathedead.org') 263 | fg.link(href=home, rel='alternate') 264 | fg.id(home) 265 | fg.description("FOIA The Dead is a long-term transparency project using the Freedom of Information Act. It releases FBI records on recently deceased public figures.") 266 | 267 | for entry in reversed(entries): 268 | fe = fg.add_entry() 269 | fe.title(entry['name']) 270 | fe.link(href=urllib.parse.urljoin(home, "posts/" + entry['slug'] + "/")) 271 | fe.guid(urllib.parse.urljoin(home, "posts/" + entry['slug'] + "/"), permalink=True) 272 | if entry['long_desc']: 273 | fe.content(entry['long_desc']) 274 | elif entry['short_desc']: 275 | fe.content(entry['short_desc']) 276 | else: 277 | fe.content("FOIA The Dead has obtained the FBI file for {}.".format(entry['name'])) 278 | 279 | fg.atom_file('site/atom.xml', pretty=True) 280 | fg.rss_file('site/rss.xml', pretty=True) 281 | 282 | def create_entries_list(cursor): 283 | if not os.path.exists("site/entries.json"): 284 | with open("site/entries.json","w") as f: 285 | json.dump([],f) 286 | 287 | with open("site/entries.json", "r") as f: 288 | entries = json.load(f) 289 | 290 | db_entries = [] 291 | 292 | for values in cursor.execute('select name, slug, obit_headline, obit_url, documentcloud_id, short_description, long_description from requests where documentcloud_id is not null order by id desc'): 293 | keys = ['name', 'slug', 'headline', 'obit_url', 294 | 'documentcloud_id', 'short_desc', 'long_desc'] 295 | db_entry = dict(zip(keys,values)) 296 | 297 | if db_entry['name'] not in ( 298 | [entry['name'] for entry in entries]): 299 | entries.insert(0, add_new_entry(db_entry)) 300 | 301 | with open("site/entries.json", "w") as f: 302 | json.dump(entries, f, indent=4, sort_keys=True) 303 | 304 | return entries 305 | 306 | def add_new_entry(entry): 307 | entry['documentcloud_url'] = urllib.parse.urljoin( 308 | "https://www.documentcloud.org/documents/", 309 | entry['documentcloud_id']) 310 | 311 | entry['pages'] = get_pagecount(entry['documentcloud_id']) 312 | 313 | html_parser = html2text.HTML2Text(bodywidth=0) 314 | html_parser.ignore_links = True 315 | 316 | if entry['short_desc']: 317 | entry['twitter_desc'] = html_parser.handle( 318 | entry['short_desc']).strip() 319 | else: 320 | entry['twitter_desc'] = "FBI file and information about {}.".format(entry['name']) 321 | 322 | entry['fb_desc'] = entry['twitter_desc'] 323 | 324 | return entry 325 | 326 | def get_pagecount(doc): 327 | print("Fetching pagecount for {}.".format(doc)) 328 | time.sleep(1) 329 | return dc.documents.get(doc).pages 330 | 331 | def main(hp=True, about=True, posts=False, error=False): 332 | db = config['db'] 333 | conn = sqlite3.connect(db) 334 | c = conn.cursor() 335 | 336 | entries = create_entries_list(c) 337 | 338 | if len(sys.argv) < 2: 339 | print("""By default this program will just update the list of entries tracked by the site. To update actual pages, add any of the following flags: 340 | --home 341 | --feeds 342 | --about 343 | --posts 344 | --error""") 345 | 346 | if "--home" in sys.argv: 347 | create_homepage(entries) 348 | 349 | if "--feeds" in sys.argv: 350 | create_feeds(entries) 351 | 352 | if "--about" in sys.argv: 353 | create_about_page() 354 | 355 | if "--posts" in sys.argv: 356 | populate_posts(entries) 357 | 358 | if "--error" in sys.argv: 359 | create_error_page() 360 | 361 | if __name__ == '__main__': 362 | main() 363 | --------------------------------------------------------------------------------