-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmrv.html
27 lines (27 loc) · 1.21 KB
/
mrv.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>MRV MARC Record Viewer</title>
<link rel="stylesheet" type="text/css" href="mrv.css">
<link rel="stylesheet" type="text/css" href="mrv_aleph.css">
<script src="mrv.js"></script>
</head>
<body>
<h1>MRV MARC Record Viewer</h1>
<p>A simple online tool for viewing MARC records in .mrc format. See <a href="http://www.aurochs.org/aurlog/2012/10/02/mrv-marc-record-viewer/">Aurlog</a> for a brief write-up. The code is available on <a href="https://github.com/Orangeaurochs/MRV-MARC-Record-Viewer">GitHub</a>.</p>
<form id="mrc_input_form" name="mrc_input_form">
<p>Copy and paste the contents of an .mrc file below:</p>
<p><textarea cols="100" rows="5" id="mrc_input_textarea"></textarea></p>
<p><input type="button" value="Submit" onclick="view_marc()"></p>
<p>
<input type="reset" value="Clear">
<input type="button" value="Submit" onclick="view_marc()">
</p>
</form>
<p id="report"></p>
<p id="index"></p>
<ol id="records_list"></ol>
</p>
</body>
</html>