forked from jruizgit/rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.html
executable file
·136 lines (113 loc) · 2.66 KB
/
admin.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<html>
<head>
<title>Ruleset Admin</title>
</head>
<style>
path.link {
fill: none;
stroke: #aaa;
stroke-width: 1.5px;
cursor: pointer;
}
path.link.selected {
stroke-dasharray: 10,10;
}
.linkDisplay {
font: 11px arial;
fill: #aaa;
dy: ".90em";
letter-spacing: 1.5;
cursor: pointer;
}
.node {
fill-opacity: 0;
stroke: steelblue;
stroke-width: 1px;
cursor: pointer;
}
.sequenceNode {
fill-opacity: 0;
stroke: steelblue;
stroke-width: 1.5px;
cursor: pointer;
}
.id {
font: 12px arial;
dy: ".35em";
}
.axis line {
fill: none;
stroke: #000;
stroke-width: 1px;
shape-rendering: crispEdges;
}
.domain {
fill: none;
opacity: 1;
stroke: #000;
stroke-width: 1px;
}
.timeMarker {
stroke: #000;
stroke-width: 1px;
}
.axis text {
font-size: 12px;
}
.label {
fill: #777;
}
.time.label {
font: 500 40px "Helvetica Neue";
fill: #ddd;
}
.time.label.active {
fill: #aaa;
}
.popup {
fill: white;
stroke: black;
stroke-width: 1px;
}
.flowPopup {
fill: white;
stroke: steelblue;
stroke-width: 1px;
}
.popupBack {
fill: #aaa;
}
.popupProperty {
font: 12px arial;
dy: ".35em";
text-anchor: right;
font-weight: bold;
}
.popupValue {
font: 12px arial;
dy: ".35em";
text-anchor: right;
}
</style>
<body>
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js?3.1.9"></script>
<script type="text/javascript" src="/durableVisual.js"></script>
<script type="text/javascript">
var url = window.location.pathname;
var query = getQueryVariables(window.location.search);
var state = rulesetState(url);
rulesetGraph(url, state).createVisual(query.size);
function getQueryVariables(query) {
query = query.substring(1);
var result = {};
var vars = query.split('&');
var pair;
for (var i = 0; i < vars.length; i++) {
pair = vars[i].split('=');
result[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1]);
}
return result;
}
</script>
</body>
</html>