This repository was archived by the owner on Jan 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (60 loc) · 2.17 KB
/
index.html
File metadata and controls
62 lines (60 loc) · 2.17 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
<!--
Created by Terry Brady, Georgetown University Library
This code is an optional add-on for DSpace.
https://github.com/DSpace-Labs/DSpace-REST-Reports
-->
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>
<!-- sortable.js can be obtained at http://www.kryogenix.org/code/browser/sorttable/ -->
<!-- <script src="../rest-aux/sorttable.js"></script> -->
<script src="restReport.js"></script>
<script src="restCollReport.js"></script>
<script src="spin.js"></script>
<link rel="stylesheet" type="text/css" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css"></link>
<link rel="stylesheet" type="text/css" href="restClient.css"></link>
<title>DSpace REST QC Client</title>
</head>
<body>
<a href="query.html">Query Tool</a>
<hr/>
<h1>DSpace REST QC Client</h1>
<div id='metadatadiv'>
<h3>Filters</h3>
<div>
<div>
<button disabled="disabled" class="activate showCollections">Show Collections</button>
</div>
<div id='filterdiv'>
</div>
<div>
<button disabled="disabled" class="activate showCollections">Show Collections</button>
</div>
</div>
<h3>Collection Report</h3>
<div>
<div><a class="this-search" href="#">URL to current search</a></div>
<div id="report">..</div>
</div>
<h3>Item Results</h3>
<div id="itemResults">
<h3>Additional data to return</h3>
<div id="queries-aux">
<button id="refresh-fields">Refresh Items</button>
<div id="show-fields"></div>
</div>
<h3>Results</h3>
<div id='itemdiv'>
<h3></h3>
<div><a class="this-search" href="#">URL to current search</a></div>
<div><button id="prev">Prev Page</button><button id="next">Next Page</button><button id="export">Export for Metadata Update</button></div>
<input type="hidden" id="ifilter"/>
<input type="hidden" id="icollection"/>
<table id="itemtable" class="sortable"></table>
</div>
</div>
</div>
</body>
</html>