-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththr_fuzzyMetadataSearch.html
More file actions
73 lines (70 loc) · 2.81 KB
/
thr_fuzzyMetadataSearch.html
File metadata and controls
73 lines (70 loc) · 2.81 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
<!DOCTYPE html>
<html>
<head>
<title>FuzzyMetadataSearch</title>
<meta charset="UTF-8">
<script type="text/javascript" src=".\ClientGlobalContext.js.aspx"></script>
<script type="text/javascript" src=".\lib_\thr_jquery.js"> </script>
<script type="text/javascript" src=".\lib_\thr_bootstrap.js"> </script>
<script type="text/javascript" src=".\lib_\thr_selectize.js"> </script>
<script type="text/javascript" src=".\lib_\thr_SDK.MetaData.js"> </script>
<script type="text/javascript" src=".\lib_\thr_SDK.Publish.js"> </script>
<script type="text/javascript" src=".\lib_\thr_findSolutions.js"> </script>
<link rel="stylesheet" href=".\lib_\thr_bootstrap.css"> </script>
<link rel="stylesheet" href=".\lib_\thr_selectize.default.css"> </script>
<!--<link rel="stylesheet" href=".\thr_layout.css"> </script>-->
<script type="text/javascript" src=".\thr_downloadMetadata.js"> </script>
</head>
<body>
<div class="col-md-offset-3 col-md-6 col-xs-offset-1 col-xs-10">
<h1>Fuzzy Metadata Search</h1>
<br>
<div id="firstTime" style="display: none;">
<div class="dropdown" >
<button id="solutionDropdown" class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Choose your Solution
<span class="caret"></span>
</button>
<ul id="solutionDrowdownContent" class="dropdown-menu">
</ul>
</div>
<br>
<button id="DownloadMetadataButton" class="btn btn-success btn-block" type="button" disabled="true" onclick="downloadMetadataButton()">
Start Downloading Metadata
</button>
<br>
<div id="waiting">
<div class="alert alert-info">
<strong>Please wait.</strong> This action takes approximately 1 minute.<br> The metadata has to be downloaded only once. <br>The page will reload once the download has finished.
</div>
<div align="center" class="spinner"> </div>
</div>
</div>
<div id="secondTime" style="display: none;">
<div>
<select id="fuzzyAttributes" class="demo" placeholder="Select ...">
<option></option>
</select>
</div>
<br>
<div >
<button class="btn btn-success" onclick="publishSolution()" >Publish Solution</button>
</div>
<div align="center" id="publishSpinner" class="spinner" style="display: none;"> </div>
<div class="footer navbar-fixed-bottom">
<div class="col-md-offset-3 col-md-6 col-xs-offset-1 col-xs-10">
<div class="row">
<div class="col-xs-6">
<bottom class="btn btn-info btn-block" onclick="reloadMetadataButton()">Reload Metadata</bottom>
</div>
<div class="col-xs-6" align="right">
<br>
<a href="mailto:tim_holzherr@bluewin.ch"><small style="color:gray;"> Developed by Tim Holzherr</small></a>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script type="text/javascript" src=".\thr_fuzzyMetadataSearch.js"></script>
</html>