-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoutput_demo.html
More file actions
48 lines (48 loc) · 1.67 KB
/
Copy pathoutput_demo.html
File metadata and controls
48 lines (48 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" ></script>
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" />
<link rel="stylesheet" type="text/css" href="/refstack.css">
<link rel="stylesheet" type="text/css" href="/report_page.css">
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
<script src="/js/jquery.cookie.js"></script>
<script src="/js/spin.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/mustache.js/0.8.1/mustache.min.js"></script>
<script>
window.result_source = '{{result_source}}';
</script>
<script src="/js/helpers.js"></script>
<script src="/js/refstack.js"></script>
<script>
render_page = function(){
render_defcore_report_page();
};
$(document).ready(function() {
loading_spin();
render_page();
})
</script>
</head>
<body>
<h1>DefCore test report</h1>
<p></p>
<div>
<label for="schema_selector">Capabilities schema: </label>
<br>
<select id="schema_selector">
<option selected="selected" value="havanacore.json" >Havana core</option>
<option value="icehouse_mockup.json" >Icehouse autogenerated</option>
</select>
</div>
<p></p>
<div id="test_props">
</div>
<p></p>
<div id="test_results"></div>
<p></p>
<div>Copyright OpenStack Foundation, 2014. Apache 2.0 License.</div>
</body>
</html>