-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode_systems.html
92 lines (82 loc) · 3.96 KB
/
code_systems.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
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head> <title>TSDemoboard CodeSystems</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
<script src="fhir.js"></script>
<script src="code_system.js"></script>
<link rel="stylesheet" type="text/css" href="fhir.css" media="screen">
</head>
<body>
<center><h1>Query a FHIR Terminology Server for <em>CodeSystems</em> </h1></center>
</p>
<center>
<table>
<tr>
<td colspan=2> <em>Enter a Server to use: </em> </td>
<td colspan=1><label for="server">Server:</label></td>
<td>
<select name="server" id="server">
<option value="http://20.119.216.32:8080/fhir">TIMS 8080/fhir</option>
<option value="http://20.119.216.32:8001/fhir">TIMS 8001</option>
<option value="http://127.0.0.1:8080/fhir">local 8080</option>
<option value="http://127.0.0.1:8001/fhir">local 8001</option>
<option value="http://tx.hl7.org">Tx.Hl7.org</option>
<option value="http://hapi.fhir.org">hapi.fhir.org</option>
<option value="http://loinc.fhir.org">loinc.fhir.org</option>
</select>
</td>
</tr>
<tr>
<td colspan=2>  </td>
<td></td>
<td colspan=2>
<button type="submit" onClick="query_loaded_codesystems(document.getElementById('server').value)">Show Loaded CodeSystems (pop-up, slow)</button>
</td>
</tr>
<tr> <td colspan=3>  </td> </tr>
<tr>
<td colspan=2><em>Specify a CodeSystem name to lookup. </em> </td>
<td colspan=1><label for="name">CodeSystem name:</label></td>
<td><input type="text" id="code-system-name" name="name"></td>
</tr>
<tr>
<td colspan=3><em>Click to search.</em> </td>
<td><button type="submit"
onClick="getCodeSystemByName(
document.getElementById('server').value,
document.getElementById('code-system-name').value)"
>Search for CodeSystem</button></td>
</tr>
<tr>
<td> </td>
<td colspan=1><em>Results:</em></td>
<td colspan=2> <output type="text" id="output-codesystem" name="output-codesystem"></td>
</tr>
<tr>
<td colspan=2> </td>
<td colspan=1>
</td>
<td colspan=1> </td>
</tr>
<tr>
<td colspan=1> </td>
<td colspan=1>
</td>
<td colspan=2>
</td>
</tr>
<tr><td colspan=5>Sample Phenopackets ValueSet: Karyotypic Sex</td></tr>
<tr><td colspan=5> </td></tr>
</table>
</center>
<p>
Many servers linked here use <a href="https://hapifhir.io/">HAPI-FHIR</a>,
licensed under the <a href="https://hapifhir.io/hapi-fhir/license.html">Apache Software License 2.0.</a>
</p>
</body>
</html>