-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathglossary-header.html
340 lines (287 loc) · 9.97 KB
/
glossary-header.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
<!DOCTYPE html>
<html>
<head>
<!-- prettify js and CSS -->
<link rel="stylesheet" href="{{ site.baseurl }}/resources/css/prettify.css" type="text/css" />
<script src="{{ site.baseurl }}/resources/js/vendor/prettify/prettify.js" type="text/javascript" ></script>
<!-- jquery js -->
<script src="{{ site.baseurl }}/resources/js/jquery.js" type="text/javascript" ></script>
<script src="{{ site.baseurl }}/resources/js/effects.core.js" type="text/javascript" ></script>
<script src="{{ site.baseurl }}/resources/js/effects.highlight.js" type="text/javascript" ></script>
<!-- Bootstrap JS and CSS -->
<link rel="stylesheet" href="{{ site.baseurl }}/resources/css/bootstrap.css" type="text/css" />
<script src="{{ site.baseurl }}/resources/js/bootstrap-dropdown.js" type="text/javascript" ></script>
<script src="{{ site.baseurl }}/resources/js/bootstrap-dropdown-app.js" type="text/javascript" ></script>
<!-- Base stylesheet for all pages -->
<link rel="stylesheet" href="{{ site.baseurl }}/resources/css/base.css" type="text/css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.css" />
<link rel="stylesheet" href="{{ site.baseurl }}/resources/css/search.css" type="text/css" />
<!-- table of contents js -->
<script src="{{ site.baseurl }}/resources/js/toc.js" type="text/javascript" ></script>
<!-- reformat lists, add id of glossary term to li -->
<script type="text/javascript">
jQuery(document).ready(function($) {
$("li h4").each(function() {
var h4Id = $(this).attr('id');
$(this).parent().attr('id',h4Id);
});
});
</script>
<!-- google analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-574683-5']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- prettyprint js to prepend generated pre/code tags -->
<script type="text/javascript">
function styleCode()
{
if (typeof disableStyleCode != "undefined")
{
return;
}
var a = false;
$("pre code").parent().each(function()
{
if (!$(this).hasClass("prettyprint"))
{
$(this).addClass("prettyprint lang-scala linenums");
a = true
}
});
if (a) { prettyPrint() }
}
</script>
<!-- text filtering -->
<script type="text/javascript">
$(window).load(function(){
$('#filter-glossary-terms').focus();
$("#filter-glossary-terms").keydown(function(){
// Retrieve the input field text and reset the count to zero
var filter = $(this).val(), count = 0;
// Loop through the comment list
$("#glossary ul li").each(function(){
// If the name of the glossary term does not contain the text phrase fade it out
if ( jQuery(this).find("h4").text().search(new RegExp(filter, "i")) < 0) {
$(this).fadeOut();
// Show the list item if the phrase matches and increase the count by 1
} else {
$(this).show();
count++;
}
});
// Update the count
var numberItems = count;
$("#filter-count").text("Found "+count+" occurrences.");
});
});
</script>
<script type="text/javascript">
jQuery(document).ready(function($) {
// Scroll to glossary term specified by hash on page load
hash = window.location.hash;
if (hash != '') {
$('html,body').animate({scrollTop:$('li '+hash).offset().top}, 500);
$('html,body').animate({scrollTop:$('li '+hash).offset().top-=50}, 500);
$('li '+hash+',li '+hash+'+ p').effect("highlight", {color: "#FFCC85"}, 3000);
}
// Set scroll animation for glossary term links within page
$("#glossary a[href^='#']").click(function(event) {
event.preventDefault();
$('html,body').animate({scrollTop:$('li '+this.hash).offset().top}, 500);
$('html,body').animate({scrollTop:$('li '+this.hash).offset().top-=50}, 500);
$('li '+this.hash+',li '+this.hash+'+ p').effect("highlight", {color: "#FFCC85"}, 3000);
window.location.hash = this.hash;
});
});
</script>
<style type="text/css">
html, body {
padding-top: 0px;
height: 100%;
-webkit-box-shadow: inset 0 10px 50px rgba(0,0,0,.6);
-moz-box-shadow: inset 0 10px 50px rgba(0,0,0,.6);
/* box-shadow: inset 0 10px 30px rgba(0,0,0,.3);*/
}
.scrollingmenu {
width: 940px;
margin-left: auto;
margin-right: auto;
height: 70px;
zoom: 1;
}
.scrollingmenu h1 {
padding-bottom: 30px;
color: #ffffff;
font-size: 42px;
line-height: 1;
text-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.container {
min-height: 100%;
}
.bottom {
min-height: 100%;
background-color: #ffffff;
padding-top: 20px;
border-top: 1px solid #8e397d;
}
.bottom h1,h2,h3 {
text-shadow: 0 1px 2px rgba(255,255,255,.5);
}
.bottom h1,h2,h3 a {
color: #404040;
text-shadow: 0 1px 2px rgba(255,255,255,.5);
}
.bottom small {
color: #808080;
text-shadow: 0 1px 1px rgba(255,255,255,.5);
}
.bottom p.under {
color: #808080;
text-shadow: 0 1px 1px rgba(255,255,255,.5);
font-size: 18px;
line-height: 36px;
margin-top: -25px;
}
.bottom ul {
margin: -4px 0 4px 25px;
list-style: none;
}
.bottom ul li {
margin-bottom: 6px;
}
.bottom ul li p {
color: #606060;
}
.bottom ul li h4 {
line-height: 24px;
padding-bottom: 4px;
}
.bottom table {
border-top: 0px;
border-left: 0px;
border-right: 0px;
}
.bottom table thead {
border: 0px;
}
.bottom table tbody {
border: 0px;
}
.bottom table th, .bottom table td {
padding: 0 0 0 20px;
line-height: 20px;
border-left: 0px;
}
.page-header-index{margin-bottom:17px;border-bottom:1px solid #808080;-webkit-box-shadow:0 1px 0 rgba(255, 255, 255, 0.5);-moz-box-shadow:0 1px 0 rgba(255, 255, 255, 0.5);box-shadow:0 1px 0 rgba(255, 255, 255, 0.5);}
p.contents {
margin-left: 15px;
font-weight: bold;
font-size: 16px;
}
div#toc ul {
list-style: none;
padding-bottom: 20px;
margin-top: 10px;
}
div#toc ul a {
display: block;
list-style: none;
line-height: 13px;
font-size: 13px;
color: #0069D6;
font-weight: bold;
width: 100%;
}
div#scroller-anchor {
width: inherit;
}
div#scroller {
width: inherit;
}
div#scroller h6 {
padding-left: 14px;
}
p#about {
margin-top: -8px;
padding-left: 14px;
}
input, textarea, select, .uneditable-input {
width: 165px;
}
.bottom p.under {
color: #808080;
text-shadow: 0 1px 1px rgba(255,255,255,.5);
font-size: 18px;
line-height: 36px;
margin-top: -25px;
}
.filterbar {
position: relative;
padding: 7px 15px;
margin-left: 10px;
margin-bottom: 24px;
color: #404040;
background-color: #bcbcbc;
background-repeat: repeat-x;
background-image: -khtml-gradient(linear, left top, left bottom, from(#dddddd), to(#bcbcbc));
background-image: -moz-linear-gradient(top, #dddddd, #bcbcbc);
background-image: -ms-linear-gradient(top, #dddddd, #bcbcbc);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dddddd), color-stop(100%, #bcbcbc));
background-image: -webkit-linear-gradient(top, #dddddd, #bcbcbc);
background-image: -o-linear-gradient(top, #dddddd, #bcbcbc);
background-image: linear-gradient(top, #dddddd, #bcbcbc);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#bcbcbc', GradientType=0);
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
border-color: #bcbcbc #bcbcbc #808080;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
border-width: 1px;
border-style: solid;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.filterbar input{
background-color:#ffffff;
background-color:rgba(255, 255, 255, 1);
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
font-size:normal;
font-weight:13px;
line-height:1;
padding:4px 9px;
color:#404040;
border:1px solid #808080;
-webkit-border-radius:4px;
-moz-border-radius:4px;
border-radius:4px;
-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.4);
-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.4);
box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255,0.4);
-webkit-transition:none;
-moz-transition:none;
-ms-transition:none;
-o-transition:none;
transition:none;
}
.filterbar input:-moz-placeholder {color:#e6e6e6;}
.filterbar .title {
font-size: 16px;
font-weight: bold;
color: #404040;
text-shadow: 0 1px 0 rgba(255,255,255,.5);
margin-right: 8px;
}
</style>
</head>
<body>