-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipeline-dependencies.html
67 lines (63 loc) · 1.72 KB
/
pipeline-dependencies.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
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font-family: sans-serif;
font-size: 8pt;
color: grey;
}
.node {
stroke: #fff;
stroke-width: 1.5px;
}
.link {
stroke: #999;
stroke-opacity: .6;
}
#graph-link-placeholder {
position: absolute;
right: 0;
top: 0;
width: 25em;
text-align: right;
background-color: white;
}
footer {
position: absolute;
bottom: 0.5em;
left: 0.5em
}
#graph, body {
padding: 0;
margin: 0;
}
#config-xml {
width: 100%;
height: 50%;
}
#xml-form {
margin-top: 4em;
}
</style>
<body>
<div id="graph"> </div>
<div id="graph-link-placeholder"> </div>
<script src='http://stuk.github.io/jszip/dist/jszip.min.js'></script>
<!--script src='jszip.min.js'></script-->
<script src="http://d3js.org/d3.v3.min.js"></script>
<!--script src="d3.v3.min.js"></script-->
<script src="go-dependency-force-layout.js"></script>
<footer><a href="http://mrmanc.github.io/go-dependency-force-layout/">Read more here</a>. Legend: Triangles are source code repositories, circles are pipelines, squares are pipeline templates. Lines indicate dependencies. Developed from <a href="http://bl.ocks.org/mbostock">Mike Bostock's Force Directed Graph examples</a>.</footer>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-48554826-1', 'mrmanc.github.io');
ga('send', 'pageview');
</script>
<div id="xml-form">
<input type=button onclick="parseXMLFromForm()" value=Load />
<textarea rows=10 id="config-xml"></textarea>
</div>
</body>