-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (54 loc) · 1.62 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>BIBFRAME to MARC via XSLT</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/style.css" />
<script type="text/javascript" src="SaxonJS2.rt.js"></script>
</head>
<body>
<script type="text/javascript">
function handleFile(input) {
FileURL = URL.createObjectURL(input[0]);
SaxonJS.transform(
{
stylesheetLocation: "main.sef.json",
sourceLocation: FileURL,
destination: "serialized",
},
"async"
).then((output) => {
console.log(output.principalResult);
//put the output in the textarea
document.getElementById("output").value = output.principalResult;
});
}
</script>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>BIBFRAME to MARCXML using <a href="https://github.com/lcnetdev/bibframe2marc">bibframe2marc</a></h1>
<p>Upload a BIBFRAME RDF/XML file to convert it to MARC XML.</p>
<form>
<input
type="file"
id="file"
name="file"
onchange="handleFile(this.files)"
/>
</form>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Output</h2>
<textarea id="output" rows="20" cols="100"></textarea>
</div>
</div>
</div>
</body>
</html>