From f006558686c50868f9d72b7c14656d53413bd65f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zsombor=20F=C3=B6ldi?= Date: Wed, 7 Aug 2024 13:12:49 +0000 Subject: [PATCH] Update Newsletter 17 --- src/about/ui/news.tsx | 5 ++-- src/about/ui/newsletter/017.md.ts | 42 +++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 3 deletions(-) create mode 100644 src/about/ui/newsletter/017.md.ts diff --git a/src/about/ui/news.tsx b/src/about/ui/news.tsx index 782a8662d..980b69b2c 100644 --- a/src/about/ui/news.tsx +++ b/src/about/ui/news.tsx @@ -1,5 +1,6 @@ import React, { useEffect, useState } from 'react' import ReactMarkdown from 'react-markdown' +import newsletter17 from 'about/ui/newsletter/017.md' import newsletter16 from 'about/ui/newsletter/016.md' import newsletter15 from 'about/ui/newsletter/015.md' import newsletter14 from 'about/ui/newsletter/014.md' @@ -27,6 +28,7 @@ interface Newsletter { } export const newsletters: readonly Newsletter[] = [ + { content: newsletter17, date: new Date('08/07/2024'), number: 17 }, { content: newsletter16, date: new Date('05/14/2024'), number: 16 }, { content: newsletter15, date: new Date('02/04/2024'), number: 15 }, { content: newsletter14, date: new Date('11/06/2023'), number: 14 }, @@ -49,9 +51,6 @@ const message = `**Get the most out of eBL!** We will be hosting regular Zoom sessions to showcase its features and tools. These sessions will include a Q&A – please feel free to submit questions in advance per [e-mail](mailto:${process.env.REACT_APP_INFO_EMAIL}). -The second session is scheduled for May 31st at 6:00 PM CET. This time we shall focus on the Editors' work. -If you would like to attend, please register at the -[link](https://lmu-munich.zoom-x.de/meeting/register/u5cldemhqDwtGtR-CKF5V1fnntrrTsYbLXEf). ` const newsUrl = '/about/news/' diff --git a/src/about/ui/newsletter/017.md.ts b/src/about/ui/newsletter/017.md.ts new file mode 100644 index 000000000..c1e7028a6 --- /dev/null +++ b/src/about/ui/newsletter/017.md.ts @@ -0,0 +1,42 @@ +const newsletter = ` +# eBL Newsletter 17 + +## 7 August 2024 + +### Fragmentarium + +- Records for all tablets from Ur have been created, including photographs + of approximately **5,000** tablets previously loaned to the British Museum and + now housed in the Iraq Museum. Notable discoveries among them include a + school colophon model specifying that an apprentice should “crumble” a + tablet into a container after writing it + ([U.3018](https://www.ebl.lmu.de/fragmentarium/U.3018)) and a variant version + of the Sumerian King List + ([U.33271](https://www.ebl.lmu.de/fragmentarium/U.33271)). +- Folios + - Notebook IX of G. Smith (Bilinguals) has been added + - Folios by Jussi Aro (courtesy of Sanna Aro-Valjus) have been added. They + contain finished copies of some 50 extispicy texts, mostly Old Babylonian + manuscripts and Neo-Assyrian extispicy reports. +- The new **Permissions** tab in the text editor allows control over who can + access an edition. For example, checking \`Restrict it to users with CAIC + permissions\` limits access to CAIC project members. This enables private + editing until the editor is ready to publish the edition. +- Editors are kindly requested to add the label \`@colophon\` to their editions, + since this enables the automatic retrieval of all colophons in the database. + +### About + +- A new display of signs in sign search has been implemented: Now similar + beginnings and endings are suggested for Neo-Babylonian and Neo-Assyrian + scripts. See also the new section “Sign Order” in About > Signs. + +### Corpus + +- New text added: III.13, + [Macranthropic Hymn to Ninurta](https://www.ebl.lmu.de/corpus/L/3/13) + (with two new manuscripts). +- The eBL Lab notes in last year’s *Kaskal* have been published + (see [here](https://www.torrossa.com/it/resources/an/5774281)).` + +export default newsletter