This repository was archived by the owner on Apr 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathservius.html
More file actions
195 lines (194 loc) · 10.5 KB
/
Copy pathservius.html
File metadata and controls
195 lines (194 loc) · 10.5 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="css/tei-html.css">
<link rel="stylesheet" href="js/jquery-ui-1.11.4.custom/jquery-ui.css">
<script type="text/javascript" src="js/CETEI.js"></script>
<script type="text/javascript" src="js/jquery/jquery-1.11.3.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.11.4.custom/jquery-ui.js"></script>
<script type="text/javascript" src="js/appcrit.js"></script>
<script src="js/alpheios-morphlib.js" charset="utf-8"></script>
<script type="text/javascript">
var c = new CETEI();
c.shadowCSS = "css/tei-html.css";
var app = new appcrit(c, "tei-ab", "tei-div[type=textpart]");
c.addBehaviors({"handlers":{
"ab": function(elt) {
if (elt.previousElementSibling.localName == "tei-head") {
elt.insertAdjacentHTML('afterbegin', "<span class=\"head\">" + elt.previousElementSibling.innerHTML + " </span>");
}
},
"choice": function(elt) {
elt.insertAdjacentHTML('afterend', "<br/>");
},
// Overrides the default ptr behavior, displaying a short link
"ptr": function(elt) {
var link = document.createElement("a");
link.innerHTML = elt.getAttribute("target").replace(/https?:\/\/([^\/]+)\/.*/, "$1");
link.href = elt.getAttribute("target");
return link;
},
"gap": ["<span>*</span>"],
"witDetail": function(elt) {
var content = document.createElement("span");
if (elt.hasAttribute("data-empty")) {
if (elt.getAttribute("type") == "correction-altered") {
content.innerHTML = " (p.c.) "
}
if (elt.getAttribute("type") == "correction-original") {
content.innerHTML = " (a.c.) "
}
} else {
content.innerHTML = " (" + elt.innerHTML + ") ";
}
return content;
}
}});
var data = c.getHTML5('Servius.xml', null, function(el){
if (el.hasAttribute("id")) {
if (["tei-listwit", "tei-witness", "tei-bibl", "tei-handnote", "tei-person", "tei-item"].includes(el.localName)) {
var val = $(el).children("tei-abbr[type=siglum]").html();
if (val) {
app.references["#" + el.getAttribute("id")] = val;
} else {
app.references["#" + el.getAttribute("id")] = el.getAttribute("id");
}
}
}
});
data.then(function(TEI){
$("body").append(TEI);
app.loadData(TEI);
if (window.location.hash) {
window.location = window.location;
}
$("#loading").remove();
var section = $("tei-div[type=edition]");
section.find("tei-ab").each(function(i,elt) {
var e = $(elt);
var btns = e.find("span.apps");
var top = 0;
var left = 0;
btns.each(function(i,elt){
$(elt).find("button").each(function(i,elt) {
var btn = $(elt);
var pos = $("#" + app.escapeID(btn.attr("data-app"))).position();
if (top < pos["top"]) {
top = pos["top"];
left = 0;
} else {
left++;
}
btn.css({"position":"absolute","top":top + "px","left":(left*25) + "px"});
});
});
});
var morph = new morphlibrary(document);
morph.activate("lat");
})
</script>
<style media="screen">
*[source=\#DS] {
width: 75%;
border-left: thin solid black;
border-right: thin solid black;
}
tei-ab[source=\#Σ] {
padding-left: 25%;
width: 75%;
}
tei-seg[source=\#Σ] {
padding-left: 25%;
width: 75%;
}
tei-div[source=\#Σ]>tei-ab {
padding-left: 25%;
width: 75%;
}
tei-choice {
display:block;
}
tei-choice>tei-seg {
float: left;
}
tei-choice>tei-seg[source=\#DS] {
width: 50%;
}
tei-choice>tei-seg[source=\#Σ] {
padding-left: 0px;
width: 49%;
}
tei-div {
display:block;
}
tei-div[type=edition] {
text-align: justify;
width: 700px;
}
tei-div[type=textpart]>tei-head {
display: none;
}
tei-quote[type=lemma] {
font-style: normal;
text-transform: uppercase;
}
tei-quote {
font-style: italic;
}
tei-seg {
display: block;
}
tei-ab span.apps {
width: 150px;
right: 250px;
}
</style>
</head>
<body>
<svg class="svg-icon" style="display:none;">
<symbol id="note-icon" viewBox="0 0 20 20">
<path d="M14.999,8.543c0,0.229-0.188,0.417-0.416,0.417H5.417C5.187,8.959,5,8.772,5,8.543s0.188-0.417,0.417-0.417h9.167C14.812,8.126,14.999,8.314,14.999,8.543 M12.037,10.213H5.417C5.187,10.213,5,10.4,5,10.63c0,0.229,0.188,0.416,0.417,0.416h6.621c0.229,0,0.416-0.188,0.416-0.416C12.453,10.4,12.266,10.213,12.037,10.213 M14.583,6.046H5.417C5.187,6.046,5,6.233,5,6.463c0,0.229,0.188,0.417,0.417,0.417h9.167c0.229,0,0.416-0.188,0.416-0.417C14.999,6.233,14.812,6.046,14.583,6.046 M17.916,3.542v10c0,0.229-0.188,0.417-0.417,0.417H9.373l-2.829,2.796c-0.117,0.116-0.71,0.297-0.71-0.296v-2.5H2.5c-0.229,0-0.417-0.188-0.417-0.417v-10c0-0.229,0.188-0.417,0.417-0.417h15C17.729,3.126,17.916,3.313,17.916,3.542 M17.083,3.959H2.917v9.167H6.25c0.229,0,0.417,0.187,0.417,0.416v1.919l2.242-2.215c0.079-0.077,0.184-0.12,0.294-0.12h7.881V3.959z"></path>
</symbol>
<symbol id="rdg-icon" viewBox="0 0 20 20">
<path d="M17.659,3.681H8.468c-0.211,0-0.383,0.172-0.383,0.383v2.681H2.341c-0.21,0-0.383,0.172-0.383,0.383v6.126c0,0.211,0.172,0.383,0.383,0.383h1.532v2.298c0,0.566,0.554,0.368,0.653,0.27l2.569-2.567h4.437c0.21,0,0.383-0.172,0.383-0.383v-2.681h1.013l2.546,2.567c0.242,0.249,0.652,0.065,0.652-0.27v-2.298h1.533c0.211,0,0.383-0.172,0.383-0.382V4.063C18.042,3.853,17.87,3.681,17.659,3.681 M11.148,12.87H6.937c-0.102,0-0.199,0.04-0.27,0.113l-2.028,2.025v-1.756c0-0.211-0.172-0.383-0.383-0.383H2.724V7.51h5.361v2.68c0,0.21,0.172,0.382,0.383,0.382h2.68V12.87z M17.276,9.807h-1.533c-0.211,0-0.383,0.172-0.383,0.383v1.755L13.356,9.92c-0.07-0.073-0.169-0.113-0.27-0.113H8.851v-5.36h8.425V9.807z"></path>
</symbol>
<symbol id="redo-icon" viewBox="0 0 20 20">
<path d="M16.76,7.51l-5.199-5.196c-0.234-0.239-0.633-0.066-0.633,0.261v2.534c-0.267-0.035-0.575-0.063-0.881-0.063c-3.813,0-6.915,3.042-6.915,6.783c0,2.516,1.394,4.729,3.729,5.924c0.367,0.189,0.71-0.266,0.451-0.572c-0.678-0.793-1.008-1.645-1.008-2.602c0-2.348,1.93-4.258,4.303-4.258c0.108,0,0.215,0.003,0.321,0.011v2.634c0,0.326,0.398,0.5,0.633,0.262l5.199-5.193C16.906,7.891,16.906,7.652,16.76,7.51 M11.672,12.068V9.995c0-0.185-0.137-0.341-0.318-0.367c-0.219-0.032-0.49-0.05-0.747-0.05c-2.78,0-5.046,2.241-5.046,5c0,0.557,0.099,1.092,0.292,1.602c-1.261-1.111-1.979-2.656-1.979-4.352c0-3.331,2.77-6.041,6.172-6.041c0.438,0,0.886,0.067,1.184,0.123c0.231,0.043,0.441-0.134,0.441-0.366V3.472l4.301,4.3L11.672,12.068z"></path>
</symbol>
<symbol id="undo-icon" viewBox="0 0 20 20">
<path d="M3.24,7.51c-0.146,0.142-0.146,0.381,0,0.523l5.199,5.193c0.234,0.238,0.633,0.064,0.633-0.262v-2.634c0.105-0.007,0.212-0.011,0.321-0.011c2.373,0,4.302,1.91,4.302,4.258c0,0.957-0.33,1.809-1.008,2.602c-0.259,0.307,0.084,0.762,0.451,0.572c2.336-1.195,3.73-3.408,3.73-5.924c0-3.741-3.103-6.783-6.916-6.783c-0.307,0-0.615,0.028-0.881,0.063V2.575c0-0.327-0.398-0.5-0.633-0.261L3.24,7.51 M4.027,7.771l4.301-4.3v2.073c0,0.232,0.21,0.409,0.441,0.366c0.298-0.056,0.746-0.123,1.184-0.123c3.402,0,6.172,2.709,6.172,6.041c0,1.695-0.718,3.24-1.979,4.352c0.193-0.51,0.293-1.045,0.293-1.602c0-2.76-2.266-5-5.046-5c-0.256,0-0.528,0.018-0.747,0.05C8.465,9.653,8.328,9.81,8.328,9.995v2.074L4.027,7.771z"></path>
</symbol>
<symbol id="reload-icon" viewBox="0 0 20 20">
<path d="M12.319,5.792L8.836,2.328C8.589,2.08,8.269,2.295,8.269,2.573v1.534C8.115,4.091,7.937,4.084,7.783,4.084c-2.592,0-4.7,2.097-4.7,4.676c0,1.749,0.968,3.337,2.528,4.146c0.352,0.194,0.651-0.257,0.424-0.529c-0.415-0.492-0.643-1.118-0.643-1.762c0-1.514,1.261-2.747,2.787-2.747c0.029,0,0.06,0,0.09,0.002v1.632c0,0.335,0.378,0.435,0.568,0.245l3.483-3.464C12.455,6.147,12.455,5.928,12.319,5.792 M8.938,8.67V7.554c0-0.411-0.528-0.377-0.781-0.377c-1.906,0-3.457,1.542-3.457,3.438c0,0.271,0.033,0.542,0.097,0.805C4.149,10.7,3.775,9.762,3.775,8.76c0-2.197,1.798-3.985,4.008-3.985c0.251,0,0.501,0.023,0.744,0.069c0.212,0.039,0.412-0.124,0.412-0.34v-1.1l2.646,2.633L8.938,8.67z M14.389,7.107c-0.34-0.18-0.662,0.244-0.424,0.529c0.416,0.493,0.644,1.118,0.644,1.762c0,1.515-1.272,2.747-2.798,2.747c-0.029,0-0.061,0-0.089-0.002v-1.631c0-0.354-0.382-0.419-0.558-0.246l-3.482,3.465c-0.136,0.136-0.136,0.355,0,0.49l3.482,3.465c0.189,0.186,0.568,0.096,0.568-0.245v-1.533c0.153,0.016,0.331,0.022,0.484,0.022c2.592,0,4.7-2.098,4.7-4.677C16.917,9.506,15.948,7.917,14.389,7.107 M12.217,15.238c-0.251,0-0.501-0.022-0.743-0.069c-0.212-0.039-0.411,0.125-0.411,0.341v1.101l-2.646-2.634l2.646-2.633v1.116c0,0.174,0.126,0.318,0.295,0.343c0.158,0.024,0.318,0.034,0.486,0.034c1.905,0,3.456-1.542,3.456-3.438c0-0.271-0.032-0.541-0.097-0.804c0.648,0.719,1.022,1.659,1.022,2.66C16.226,13.451,14.428,15.238,12.217,15.238"></path>
</symbol>
</svg>
<div id="loading">
<p>✻</p>
</div>
<div id="controls">
<div id="editing">
<ul>
<li><button onclick="app.undo()" title="undo"><svg class="svg-icon">
<use xlink:href="#undo-icon"></use>
</svg></button></li>
<li><button onclick="app.redo()" title="redo"><svg class="svg-icon">
<use xlink:href="#redo-icon"></use>
</svg></button></li>
<li><button onclick="while (app.log.length > 0) {app.undo();}" title="undo all"><svg class="svg-icon">
<use xlink:href="#reload-icon"></use>
</svg></button></li>
</ul>
</div>
<div id="display">
<form class="">
<ul>
<li><input type="checkbox" name="orthographical" value="true"><label for="orthographical">Hide orthographical variants</label></li>
<li><input type="checkbox" name="morphological" value="true"><label for="morphological">Hide morphological variants</label></li>
<li><input type="checkbox" name="lexical" value="true"><label for="lexical">Hide lexical variants</label></li>
</ul>
</form>
</div>
</div>
</body>
</html>