This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
issue-side.html
58 lines (56 loc) · 2.57 KB
/
issue-side.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>JIRA project issues</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-black.css">
</head>
<body class="w3-theme-light">
<table cellspacing='0' cellpadding='0' border='0' height="100" width="100">
<tr>
<td></td>
</tr>
</table>
<h3 class="w3-text-light-green">Issues:</h3>
<div class="w3-margin-left">
<a href="/eucalyptus-jira/index.html" target="_top">Index</a>
<br/>
<a href="/eucalyptus-jira/index.html?project=gui" target="_top">Console</a>
<a href="/eucalyptus-jira/index.html?project=gui&status=10001&status=10003&status=1&status=10000" target="_top">[open]</a>
<br/>
<a href="/eucalyptus-jira/index.html?project=doc" target="_top">Documentation</a>
<a href="/eucalyptus-jira/index.html?project=doc&status=10001&status=10003&status=1&status=10000" target="_top">[open]</a>
<br/>
<a href="/eucalyptus-jira/index.html?project=euca" target="_top">Eucalyptus</a>
<a href="/eucalyptus-jira/index.html?project=euca&status=10001&status=10003&status=1&status=10000" target="_top">[open]</a>
<br/>
<a href="/eucalyptus-jira/index.html?project=tools" target="_top">Tools</a>
<a href="/eucalyptus-jira/index.html?project=tools&status=10001&status=10003&status=1&status=10000" target="_top">[open]</a>
<br/>
</div>
<script type="text/x-jsrender" id="issue-list-template">
<table cellspacing='2' cellpadding='2' border='0'>
<tr>
<td>
<h3 class="w3-text-light-green">Project issues:</h3>
</td>
</tr>
{{for issues}}
<tr>
<td>
<a href="{{>#data}}.html" target="_top" class="w3-margin-left">{{>#data}}</a>
</td>
</tr>
{{/for}}
</table>
</script>
<div id="issue-list-target"></div>
<script src="../../template/jquery-3.2.1.min.js"></script> <!-- fetch json -->
<script src="../../template/jsrender.min.js"></script> <!-- templating -->
<script type="text/javascript">
$.getJSON("issues.json", function(issuesJson){
$("#issue-list-target").html($.templates("#issue-list-template").render(issuesJson));
});
</script>
</body>
</html>