-
Notifications
You must be signed in to change notification settings - Fork 0
/
tei-template.xml
113 lines (113 loc) · 5.38 KB
/
tei-template.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="UTF-8"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xml:id="{{ file_name }}"
xml:base="https://id.acdh.oeaw.ac.at/auden-musulin-papers">
<teiHeader>
<fileDesc>
<titleStmt>
<title level="s">Auden Musulin Papers: A Digital Edition of W. H. Auden´s Letters to Stella Musulin (FWF P 33754)</title>
<title level="a">{{ title }}</title>
<author>{{ sender }}</author>
<editor>
<name>Mayer, Sandra</name>
<name>Frühwirth, Timo</name>
</editor>
<funder>
<name>FWF Austrian Science Fund</name>
<address>
<street>Sensengasse 1</street>
<postCode>1090 Vienna</postCode>
<placeName>
<country>A</country>
<settlement>Vienna</settlement>
</placeName>
</address>
</funder>
</titleStmt>
<editionStmt>
<edition>AMP</edition>
<respStmt>
<resp>Transcription and commentary</resp>
<name>Mayer, Sandra</name>
<name>Frühwirth, Timo</name>
</respStmt>
</editionStmt>
<publicationStmt>
<publisher>Austrian Centre for Digital Humanities and Cultural Heritage</publisher>
<pubPlace>Vienna</pubPlace>
<date when="2021">2021</date>
<availability>
<licence target="https://creativecommons.org/licenses/by/4.0/deed.en">
<p>You are free to: Share — copy and redistribute the material in any medium or format; adapt — remix, transform, and build upon the material
for any purpose, even commercially.</p>
<p>The licensor cannot revoke these freedoms as long as you follow the license terms. Under the following terms:</p>
<p>Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.</p>
<p>Notices:</p>
<p>You do not have to comply with the license for elements of the material in the public domain or where your use is permitted by an applicable exception or limitation. No warranties are given. The license may not give you all of the permissions necessary for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you use the material.</p>
</licence>
<p>Copyright literary texts W. H. Auden Estate of W. H. Auden.</p>
</availability>
</publicationStmt>
<seriesStmt>
<p>Machine-Readable Transcriptions of the Auden Musulin Papers</p>
</seriesStmt>
<sourceDesc>
<listWit>
<witness n="1">
<msDesc>
<msIdentifier>
<country>A</country>
<settlement>St. Pölten</settlement>
<repository>State Collections of Lower Austria</repository>
<collection>Stella Musulin (Depot)</collection>
<idno>{{ idno }}</idno>
</msIdentifier>
<history>
<origin><origDate{% if parsed_date %} when-iso="{{ parsed_date.strftime('%Y-%m-%d') }}" {% endif %}>{{ written_date }}</origDate></origin>
</history>
</msDesc>
</witness>
</listWit>
</sourceDesc>
</fileDesc>
<profileDesc>
<langUsage>
<language ident="{{ lang_code }}">{{ language }}</language>
</langUsage>
{% if is_letter %}
<correspDesc>
<correspAction type="sent">
<persName ref="#{{ sender_id }}">{{ sender }}</persName>
<placeName ref="#{{ sender_id_place }}">{{ sender_place }}</placeName>
<date {% if parsed_date %} when-iso="{{ parsed_date.strftime('%Y-%m-%d') }}" {% endif %}>{{ written_date }}</date>
</correspAction>
<correspAction type="received">
<persName ref="#{{ receiver_id }}">{{ receiver }}</persName>
<placeName ref="#{{ receiver_id_place }}">{{ receiver_place }}</placeName>
<date></date>
</correspAction>
</correspDesc>
{% endif %}
</profileDesc>
<revisionDesc status="draft">
<change who="pandorfer" when="{{ current_date }}">template populated with script "create_templates.py"</change>
</revisionDesc>
</teiHeader>
<facsimile>
{%- for x in pages %}
<surface ulx="0" uly="0" lrx="{{ x.width }}" lry="{{ x.height }}">
<graphic url="{{ x.url }}"/>
</surface>
{%- endfor %}
</facsimile>
<text type="letter">
<body>
<div xml:id="transcription">
{%- for x in pages %}
<pb facs="{{ x.url }}" type="{{ x.p_type }}"/>
{%- endfor %}
</div>
</body>
</text>
</TEI>