Added newe XML

This commit is contained in:
Simon Martens
2021-09-28 14:10:28 +02:00
parent 1283abd7e9
commit 53d4ef75ae
36 changed files with 1890 additions and 32812 deletions

View File

@@ -27,11 +27,12 @@
<ItemGroup> <ItemGroup>
<Folder Include="Interfaces\" /> <Folder Include="Interfaces\" />
<Folder Include="wwwroot\pdf\" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<!-- extends watching group to include *.xml files --> <!-- extends watching group to include *.xml files -->
<Watch Include="**\*.xml" Exclude="obj\**\*;bin\**\*" /> <Watch Include="**\*.xml" Exclude="obj\**\*;bin\**\*" />
</ItemGroup> </ItemGroup>

File diff suppressed because it is too large Load Diff

View File

@@ -5,6 +5,7 @@
@using System.Threading; @using System.Threading;
@using System.Linq: @using System.Linq:
@using System.Xml.Linq; @using System.Xml.Linq;
@using System.IO;
@model HaLive.Pages.BriefeModel @model HaLive.Pages.BriefeModel
@inject IReaderService readerService @inject IReaderService readerService
@@ -24,7 +25,7 @@
var next = meta == lib.MetasByDate.Last() ? null : lib.MetasByDate.ItemRef(lib.MetasByDate.IndexOf(meta) + 1); var next = meta == lib.MetasByDate.Last() ? null : lib.MetasByDate.ItemRef(lib.MetasByDate.IndexOf(meta) + 1);
var prev = meta == lib.MetasByDate.First() ? null : lib.MetasByDate.ItemRef(lib.MetasByDate.IndexOf(meta) - 1); var prev = meta == lib.MetasByDate.First() ? null : lib.MetasByDate.ItemRef(lib.MetasByDate.IndexOf(meta) - 1);
var hands = lib.Hands.ContainsKey(id) ? lib.Hands[id] : null; var hands = lib.Hands.ContainsKey(id) ? lib.Hands[id] : null;
var filename = "" + "_" + meta.Autopsic + "_HamannBriefe.pdf"; // TODO var filename = "HKB_" + meta.Autopsic + ".pdf";
// State // State
var currline = "-1"; var currline = "-1";
@@ -402,6 +403,8 @@
<div class="col"> <div class="col">
<div class="widehead letterbar"> <div class="widehead letterbar">
<div class="flexcol"> <div class="flexcol">
@if (System.IO.File.Exists("./wwwroot/pdf/" + filename))
{
<div style="align-self: flex-end" class="printbutton"> <div style="align-self: flex-end" class="printbutton">
<span class="label"> <span class="label">
<a class="hlink" href="/pdf/@filename"> <a class="hlink" href="/pdf/@filename">
@@ -411,6 +414,19 @@
</a> </a>
</span> </span>
</div> </div>
}
else
{
<div style="align-self: flex-end" class="printbutton">
<span class="label">
<a class="hlink disabled" href="#">
PDF&nbsp;<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="currentColor" class="bi bi-arrow-down-circle" viewBox="0 0 14 18">
<path fill-rule="evenodd" d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8.5 4.5a.5.5 0 0 0-1 0v5.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V4.5z"/>
</svg>
</a>
</span>
</div>
}
<div class="lettercard flexrow"> <div class="lettercard flexrow">
<div class="nnumber letcount"> <div class="nnumber letcount">
@meta.Autopsic @meta.Autopsic

View File

@@ -181,17 +181,22 @@
@foreach (var l in Model.Result.ElementAt(Model.cleanpage)) @foreach (var l in Model.Result.ElementAt(Model.cleanpage))
{ {
var filename = "HKB_" + l.Key + ".pdf";
<section> <section>
<div class="year" style="top: 240px; z-index: 900;"> <div class="year" style="top: 240px; z-index: 900;">
@l.Key <span class="printbutton"> @l.Key
<span class="label"> @if (System.IO.File.Exists("./wwwroot/pdf/" + filename))
<a class="hlink" href="#">PDF {
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="currentColor" class="bi bi-arrow-down-circle" viewBox="0 0 14 18"> <span class="printbutton">
<path fill-rule="evenodd" d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8.5 4.5a.5.5 0 0 0-1 0v5.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V4.5z"/> <span class="label">
</svg> <a class="hlink" href="./pdf/@filename">PDF
</a> <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="currentColor" class="bi bi-arrow-down-circle" viewBox="0 0 14 18">
</span> <path fill-rule="evenodd" d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8.5 4.5a.5.5 0 0 0-1 0v5.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V4.5z"/>
</span> </svg>
</a>
</span>
</span>
}
<hr></div> <hr></div>
@foreach (var entry in l) @foreach (var entry in l)
{ {

View File

@@ -104,7 +104,7 @@
<div class="widehead"> <div class="widehead">
<div class="flexcol"> <div class="flexcol">
<div style="align-self: flex-end" class="printbutton"> <div style="align-self: flex-end" class="printbutton">
<a class="" href="/pdf/Bibelstellen-Register_HamannBriefe.pdf"> <a class="" href="/pdf/HKB_Bibelstellen-Register.pdf">
PDF PDF
</a> </a>
</div> </div>

View File

@@ -106,7 +106,7 @@
<div class="widehead"> <div class="widehead">
<div class="flexcol"> <div class="flexcol">
<div style="align-self: flex-end" class="printbutton"> <div style="align-self: flex-end" class="printbutton">
<a class="" href="/pdf/Forschungsbibliographie_HamannBriefe.pdf"> <a class="" href="/pdf/HKB_Forschungsbibliographie.pdf">
PDF PDF
</a> </a>
</div> </div>

View File

@@ -101,7 +101,7 @@
<div class="widehead"> <div class="widehead">
<div class="flexcol"> <div class="flexcol">
<div style="align-self: flex-end" class="printbutton"> <div style="align-self: flex-end" class="printbutton">
<a class="" href="/pdf/Register_HamannBriefe.pdf"> <a class="" href="/pdf/HKB_Register.pdf">
PDF PDF
</a> </a>
</div> </div>

View File

@@ -387,6 +387,7 @@ a:hover {
/* color: var(--hamannDunkelGrau); */ /* color: var(--hamannDunkelGrau); */
font-family: Playfair; font-family: Playfair;
font-size: 0.9rem; font-size: 0.9rem;
line-height: 1rem;
} }
.hand .aq { .hand .aq {

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -8,7 +8,7 @@
Korrekturvorschlag ZH 2. Aufl. (1988): <del>anstatt &#x2003;<added>?&#x2003;?</added>&#x2003;Labyrinth</del> Korrekturvorschlag ZH 2. Aufl. (1988): <del>anstatt &#x2003;<added>?&#x2003;?</added>&#x2003;Labyrinth</del>
</editreason> </editreason>
<editreason index="2"> <editreason index="2">
Geändert nach Druckbogen (1940); ZH: <zh>X</zh> Geändert nach Druckbogen (1940); ZH: <zh>X</zh> (in ZH „X“ in Fraktur; gemeint ist gr. „Chi“)
</editreason> </editreason>
<editreason index="3"> <editreason index="3">
Streichung bis Absatzende emendiert. In ZH bleibt unklar, wann die Streichung endet. Streichung bis Absatzende emendiert. In ZH bleibt unklar, wann die Streichung endet.
@@ -1633,10 +1633,7 @@
Korrekturvorschlag ZH 1. Aufl. (1979): <emph>lies:</emph> Ep<added>h</added>esus Korrekturvorschlag ZH 1. Aufl. (1979): <emph>lies:</emph> Ep<added>h</added>esus
</editreason> </editreason>
<editreason index="465"> <editreason index="465">
Streichung in ZH nicht geschlossen. Korrigiert nach Druckbogen 1940 (Streichung in ZH nicht geschlossen).
</editreason>
<editreason index="466">
Geändert nach Druckbogen (1940); ZH: <zh><aq>lib.V.</aq></zh>
</editreason> </editreason>
<editreason index="467"> <editreason index="467">
Geändert nach Druckbogen (1940); ZH: <zh>UnsereHülfe</zh> Geändert nach Druckbogen (1940); ZH: <zh>UnsereHülfe</zh>
@@ -16613,25 +16610,25 @@
Geändert nach den Druckbogen von 1943; ZH: <zh>Bestimmung</zh> Geändert nach den Druckbogen von 1943; ZH: <zh>Bestimmung</zh>
</editreason> </editreason>
<editreason index="5892"> <editreason index="5892">
Geändert nach der Handschrift; ZH: <zh>unsrer</zh> Geändert nach den Druckbogen von 1943; ZH: <zh>unsrer</zh>
</editreason> </editreason>
<editreason index="5893"> <editreason index="5893">
Geändert nach der Handschrift; ZH: <zh></zh> Geändert nach den Druckbogen von 1943; ZH: <zh><ul>Sohn</ul></zh>
</editreason> </editreason>
<editreason index="5894"> <editreason index="5894">
Geändert nach der Handschrift; ZH: <zh></zh> Geändert nach den Druckbogen von 1943; ZH: <zh><aq><ul>qui paroissent nullement fondées</ul></aq></zh>
</editreason> </editreason>
<editreason index="5895"> <editreason index="5895">
Geändert nach der Handschrift; ZH: <zh></zh> Geändert nach den Druckbogen von 1943; ZH: <zh><aq><ul>pretensions ridicules et inconsequentes</ul></aq></zh>
</editreason> </editreason>
<editreason index="5896"> <editreason index="5896">
Geändert nach der Handschrift; ZH: <zh></zh> Geändert nach dem Druck bei Roth; ZH: <zh><aq>prima Donna</aq></zh>
</editreason> </editreason>
<editreason index="5897"> <editreason index="5897">
Geändert nach der Handschrift; ZH: <zh></zh> Geändert nach den Druckbogen von 1943; ZH: <zh><ul>und</ul></zh>
</editreason> </editreason>
<editreason index="5898"> <editreason index="5898">
Geändert nach der Handschrift; ZH: <zh></zh> Die Passage ist in den Druckbögen von 1943 offensichtlich korrupt und voller Fehler; Henkel hat sie nach Sinnkriterien weiträumig korrigiert. Da es keine bessere Quelle gibt, geht der Text hier nach Henkel.
</editreason> </editreason>
<editreason index="5899"> <editreason index="5899">
Geändert nach der Handschrift; ZH: <zh></zh> Geändert nach der Handschrift; ZH: <zh></zh>

View File

@@ -682,7 +682,7 @@
</letterDesc> </letterDesc>
<letterDesc ref="34"> <letterDesc ref="34">
<autopsic value="34" /> <autopsic value="34" />
<date value="vmtl. Ende 1754" /> <date value="Vmtl. Ende 1754" />
<sort value="1754-12-01" /> <sort value="1754-12-01" />
<location ref="-1" /> <location ref="-1" />
<senders> <senders>
@@ -1621,7 +1621,7 @@
</letterDesc> </letterDesc>
<letterDesc ref="80"> <letterDesc ref="80">
<autopsic value="80" /> <autopsic value="80" />
<date value="vmtl. Mai 1756" /> <date value="Vmtl. Mai 1756" />
<sort value="1756-05-22" /> <sort value="1756-05-22" />
<location ref="-1" /> <location ref="-1" />
<senders> <senders>
@@ -2963,7 +2963,7 @@
</letterDesc> </letterDesc>
<letterDesc ref="147"> <letterDesc ref="147">
<autopsic value="147" /> <autopsic value="147" />
<date value="vmtl. Juni 1759" /> <date value="Vmtl. Juni 1759" />
<sort value="1759-06-06" /> <sort value="1759-06-06" />
<location ref="-1" /> <location ref="-1" />
<senders> <senders>
@@ -3184,7 +3184,7 @@
</letterDesc> </letterDesc>
<letterDesc ref="158"> <letterDesc ref="158">
<autopsic value="158" /> <autopsic value="158" />
<date value="vmtl. August 1759" /> <date value="Vmtl. August 1759" />
<sort value="1759-08-19" /> <sort value="1759-08-19" />
<location ref="-1" /> <location ref="-1" />
<senders> <senders>
@@ -3464,7 +3464,7 @@
</letterDesc> </letterDesc>
<letterDesc ref="172"> <letterDesc ref="172">
<autopsic value="172" /> <autopsic value="172" />
<date value="vmtl. 1759" /> <date value="Vmtl. 1759" />
<sort value="1759-12-17" /> <sort value="1759-12-17" />
<location ref="-1" /> <location ref="-1" />
<senders> <senders>
@@ -3764,7 +3764,7 @@
</letterDesc> </letterDesc>
<letterDesc ref="187"> <letterDesc ref="187">
<autopsic value="187" /> <autopsic value="187" />
<date value="vmtl. Ende Juli 1760" /> <date value="Vmtl. Ende Juli 1760" />
<sort value="1760-07-20" /> <sort value="1760-07-20" />
<location ref="-1" /> <location ref="-1" />
<senders> <senders>
@@ -4245,7 +4245,7 @@
</letterDesc> </letterDesc>
<letterDesc ref="211"> <letterDesc ref="211">
<autopsic value="211" /> <autopsic value="211" />
<date value="vmtl. 1761" /> <date value="Vmtl. 1761" />
<sort value="1761-08-08" /> <sort value="1761-08-08" />
<location ref="-1" /> <location ref="-1" />
<senders> <senders>
@@ -4385,7 +4385,7 @@
</letterDesc> </letterDesc>
<letterDesc ref="218"> <letterDesc ref="218">
<autopsic value="218" /> <autopsic value="218" />
<date value="vmtl. 1762" /> <date value="Vmtl. 1762" />
<sort value="1762-01-01" /> <sort value="1762-01-01" />
<location ref="-1" /> <location ref="-1" />
<senders> <senders>
@@ -8588,7 +8588,7 @@
</letterDesc> </letterDesc>
<letterDesc ref="428"> <letterDesc ref="428">
<autopsic value="427" /> <autopsic value="427" />
<date value="vmtl. Januar 1775" /> <date value="Vmtl. Januar 1775" />
<sort value="1775-01-05" /> <sort value="1775-01-05" />
<location ref="-1" /> <location ref="-1" />
<senders> <senders>
@@ -10651,7 +10651,7 @@
</letterDesc> </letterDesc>
<letterDesc ref="531"> <letterDesc ref="531">
<autopsic value="525" /> <autopsic value="525" />
<date value="vmtl. im Februar 1778" /> <date value="Vmtl. im Februar 1778" />
<sort value="1778-02-23" /> <sort value="1778-02-23" />
<location ref="-1" /> <location ref="-1" />
<senders> <senders>
@@ -11113,7 +11113,7 @@
</letterDesc> </letterDesc>
<letterDesc ref="554"> <letterDesc ref="554">
<autopsic value="548" /> <autopsic value="548" />
<date value="vmtl. Mitte oder Ende März 1779" /> <date value="Vmtl. Mitte oder Ende März 1779" />
<sort value="1779-03-25" /> <sort value="1779-03-25" />
<location ref="-1" /> <location ref="-1" />
<senders> <senders>
@@ -21502,7 +21502,7 @@
</letterDesc> </letterDesc>
<letterDesc ref="1073"> <letterDesc ref="1073">
<autopsic value="1066" /> <autopsic value="1066" />
<date value="vmtl. 20. Mai 1787" /> <date value="Vmtl. 20. Mai 1787" />
<sort value="1787-05-20" /> <sort value="1787-05-20" />
<location ref="-1" /> <location ref="-1" />
<senders> <senders>

View File

@@ -6119,12 +6119,10 @@ ZH III 470, Nr. 509a.</letterTradition>
<letterTradition autopsic="522" ref="528"> <letterTradition autopsic="522" ref="528">
<app>Provenienz:</app><line type="break"/> <app>Provenienz:</app><line type="break"/>
Druck ZH nach den unpublizierten Druckbogen von 1943. Original verschollen. Letzter bekannter Aufbewahrungsort: Staats- und Universitätsbibliothek Königsberg, Msc. 2552 [Roths Hamanniana], II 1.<line type="break"/> Druck ZH nach den unpublizierten Druckbogen von 1943. Original verschollen. Letzter bekannter Aufbewahrungsort: Staats- und Universitätsbibliothek Königsberg, Msc. 2552 [Roths Hamanniana], II 1.<line type="break"/>
In den beiden noch vorhandenen Druckbogen-Konvoluten von 1943 fehlt jeweils S. 2 (HKB 522 [2/134] „von meiner Schwangerschaft“ bis „coquin parvenu“). Schon Henkel edierte diese nach dem Druck bei Roth; Text auch hier nach Friedrich Roth (Hg.): Hamanns Schriften. 8 Bde. Berlin, Leipzig 18211843, V 270272.<line type="break"/>
<app>Bisherige Drucke:</app><line type="break"/> <app>Bisherige Drucke:</app><line type="break"/>
Friedrich Roth (Hg.): Hamanns Schriften. 8 Bde. Berlin, Leipzig 18211843, V 268273.<line type="break"/> Friedrich Roth (Hg.): Hamanns Schriften. 8 Bde. Berlin, Leipzig 18211843, V 268273.<line type="break"/>
ZH IV 13, Nr. 522.<line type="break"/> ZH IV 13, Nr. 522.</letterTradition>
<app>Zusätze ZH:</app><line type="break"/>
<note>Zu HKB 522 (2/134):</note><line type="break"/>
ZH stand vmtl. die entsprechende Seite des Originals nicht mehr zur Verfügung; der Text dieser Stelle wurde nach dem Druck von Roth ediert.</letterTradition>
<letterTradition autopsic="523" ref="529"> <letterTradition autopsic="523" ref="529">
<app>Provenienz:</app><line type="break"/> <app>Provenienz:</app><line type="break"/>
Unbekannt. Druck ZH nach Friedrich Roth (Hg.): Hamanns Schriften. 8 Bde. Berlin, Leipzig 18211843, V 273282.<line type="break"/> Unbekannt. Druck ZH nach Friedrich Roth (Hg.): Hamanns Schriften. 8 Bde. Berlin, Leipzig 18211843, V 273282.<line type="break"/>
@@ -7451,7 +7449,7 @@ ZH IV 234241, Nr. 606.<line type="break"/>
<app>Zusätze ZH:</app><line type="break"/> <app>Zusätze ZH:</app><line type="break"/>
<ZHText> <ZHText>
<page index="480" autopsic="480" /> <page index="480" autopsic="480" />
<line index="19" autopsic="19" tab="1" /><note>Zu HKB 606 (240/20): Zusatz Hamanns, über</note> <aq>Cheruski</aq><note>:</note> <line index="19" autopsic="19" /><note>Zu HKB 606 (240/20): Zusatz Hamanns, über</note> <aq>Cheruski</aq><note>:</note>
<line index="20" autopsic="20" /><aq>Rczewusky</aq></ZHText></letterTradition> <line index="20" autopsic="20" /><aq>Rczewusky</aq></ZHText></letterTradition>
<letterTradition autopsic="607" ref="613"> <letterTradition autopsic="607" ref="613">
<app>Provenienz:</app><line type="break"/> <app>Provenienz:</app><line type="break"/>

File diff suppressed because it is too large Load Diff