forked from iswunistuttgart/opcua-cs-graph
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
108 lines (97 loc) · 4.3 KB
/
index.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-102889108-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-102889108-2');
</script>
<!-- END Google Analytics -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<title>OPC UA Companion Specification Graph</title>
<!-- Example based on http://bl.ocks.org/mbostock/3887118 -->
<!-- Tooltip example from http://www.d3noob.org/2013/01/adding-tooltips-to-d3js-graph.html -->
<!-- Coding style based on http://gist.github.com/mbostock/5977197 -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="https://d3js.org/d3-path.v1.min.js"></script>
<header>
<!-- Fixed navbar -->
<nav class="navbar navbar-expand-md navbar-dark g-dark">
<a class="navbar-brand" href="#"><img src="assets/isw-trans.gif" height="30" alt="ISW"/></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="https://github.com/iswunistuttgart/opcua-cs-graph">Github <span
class="sr-only">Github</span></a>
</li>
</ul>
</div>
</nav>
</header>
<div class="row"></div>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4">OPC UA Companion Specification Graph</h1>
<p class="lead">The graph to discover dependencies between the OPC UA Companion Specification.</p>
</div>
</div>
<div class="container" id="outerContainer">
<div id="graphContainer">
<svg id="graph">
<marker
id="arrowUsed"
markerUnits="strokeWidth"
markerWidth="12"
markerHeight="12"
viewBox="0 0 12 12"
refX="6"
refY="6"
orient="auto">
<path d="M2,2 L2,11 L10,6 L2,2" style="fill: #999;"></path>
</marker>
</svg>
<div id="info"></div>
</div>
</div>
<div class="row"></div>
<footer class=footer>
<div class=container>
<ul class=footer-links>
<li><a href="#">Impressum</a></li>
<li><a href="#">Privacy policy</a></li>
<li><a href="https://github.com/iswunistuttgart/opcua-cs-graph">Github</a></li>
<li><a href="#">About</a></li>
<li><a href="https://github.com/iswunistuttgart/opcua-cs-graph#authors">Authors</a></li>
</ul>
<p>Published under GNU General Public License v3.0 by
<a href="https://www.isw.uni-stuttgart.de"> Institute for Control Engineering of
Machine Tools and Manufacturing Units (ISW) </a>
Universität Stuttgart, 2018</p>
</footer>
<script src="index.js"></script>
</body>
</html>