-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
87 lines (72 loc) · 3.81 KB
/
about.html
File metadata and controls
87 lines (72 loc) · 3.81 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/peace.css" rel="stylesheet">
<title>About | PEACE Dashboard</title>
</head>
<body>
<header class="mainhead">
<nav class="navbar navbar-default">
<div id="main-navbar" class="container-fluid">
<div class="nav-container">
<div class="navbar-header">
<a class="navbar-brand" href="/">PEACE</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="conformance.html">Capabilites</a></li>
<li><a href="engines-overview.html">Engines</a></li>
<li class="active"><a href="about.html">About</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<div id="page-expressiveness" class="main-content">
<div class="row">
<div class="col-sm-9 col-md-10">
<div class="container">
<h1>About the PEACE Dashboard</h1>
<p>The PEAcE dashboard is a collaborative effort between the <a href="https://www.uni-bamberg.de/en/pi/">Distributed Systems Group at University of Bamberg</a>, the <a href="http://www.iaas.uni-stuttgart.de/indexE.php">Institute of Architecture of Application Systems at University of Stuttgart</a>, and the <a href="http://design.inf.usi.ch/research/projects/benchflow">Faculty of Informatics at Università della Svizerra italiana</a> to present all the data of workflow engines generated by the <a href="https://github.com/uniba-dsg/betsy">betsy</a> and the <a href="https://github.com/benchflow/benchflow">benchflow</a> project.</p>
<p>
The dashboard itself has been created as part of a student project at the <a href="https://www.uni-bamberg.de/en/pi/">Distributed Systems Group at University of Bamberg</a>. It is built as a simple HTML5 application working on multiple JSON files which can be statically hosted. The data output of either <a href="https://github.com/uniba-dsg/betsy">betsy</a> or <a href="https://github.com/benchflow/benchflow">benchflow</a> can be automatically added to these JSON files through an additional transformation step.
</p>
<h2>Contributors</h2>
<ul>
<li>David Bimamisa</li>
<li>Mathias Müller</li>
<li><a href="https://www.uni-bamberg.de/en/pi/team/harrer-simon/">Simon Harrer</a></li>
</ul>
<h2>Angaben gemäß §5 TMG:</h2>
<p class="contact">
Name Nachname</br>
Anschrift</br>
E-Mail: mail@example.de</br>
</p>
</div>
</div>
</div>
</div>
<footer id="footer" class="foot-container">
<p class="credits">© 2016 Peace. <a href="about.html">About</a></p>
<ul class="social">
<li><a href="#"><span class="entypo-mail"></span></a></li>
<li><a href="https://github.com/peace-project/dashboard"><span class="entypo-github"></span></a></li>
</ul>
</footer>
<script src="js/jquery.min.js"></script>
<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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-84649079-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>