This repository has been archived by the owner on Sep 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
79 lines (79 loc) · 4.13 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
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
<html>
<head>
<title>Artudis Utils Dashboard</title>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.2.0/normalize.css" rel="stylesheet">
<meta charset="utf-8" />
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#5bbad5">
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16">
<script type="text/javascript" src="main.js" defer></script>
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<img src="logo.svg">
<div>
<h1>Artudis Utils Dashboard</h1>
<p>A set of tools for the Artudis IR.</p>
</div>
</header>
<div id="all-tools-wrapper">
<div class="tool-wrapper">
<h2>What is your Artudis base URL?</h2>
<input id="baseURL" type="url" value="https://ir.library.carleton.ca">
</div>
<div class="tool-wrapper">
<h2>Run checks on Person-export.json</h2>
<div class="checkbox-group">
<label for="person_nonamealternative">'No Alternative Name' Check</label>
<input type="checkbox" id="person_nonamealternative" name="person_nonamealternative">
<label for="person_noorcid">'No ORCID' Check</label>
<input type="checkbox" id="person_noorcid" name="person_noorcid">
</div>
<div class="download-input-wrapper">
<a class="download-link" href="https://ir.library.carleton.ca/ppl/manage" target="_blank">Download from Artudis</a>
<input id="person-input" type="file" accept=".json">
</div>
<div id="person-output" class="output"></div>
</div>
<div class="tool-wrapper">
<h2>Run checks on Organisation-export.json</h2>
<div class="download-input-wrapper">
<a class="download-link" href="https://ir.library.carleton.ca/org/manage" target="_blank">Download from Artudis</a>
<input id="org-input" type="file" accept=".json">
</div>
<div id="org-output" class="output"></div>
</div>
<div class="tool-wrapper">
<h2>Run checks on Collection-export.json</h2>
<div class="download-input-wrapper">
<a class="download-link" href="https://ir.library.carleton.ca/col/manage" target="_blank">Download from Artudis</a>
<input id="col-input" type="file" accept=".json">
</div>
<div id="col-output" class="output"></div>
</div>
<div class="tool-wrapper">
<h2>Run checks on Publication-export.json</h2>
<div class="download-input-wrapper">
<a class="download-link" href="https://ir.library.carleton.ca/pub/manage" target="_blank">Download from Artudis</a>
<input id="pub-input" type="file" accept=".json">
</div>
<div id="pub-output" class="output"></div>
</div>
<div class="tool-wrapper">
<h2>Run checks on Concept-export.json</h2>
<div class="download-input-wrapper">
<a class="download-link" href="https://ir.library.carleton.ca/concept/manage" target="_blank">Download from Artudis</a>
<input id="concept-input" type="file" accept=".json">
</div>
<div id="concept-output" class="output"></div>
</div>
</div>
<footer>
A project by Carleton University Library. <a href="https://github.com/artudis-utils/dashboard">Github Repo</a>
</footer>
</body>
</html>