-
Notifications
You must be signed in to change notification settings - Fork 2.8k
/
index.html
229 lines (218 loc) · 10.6 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
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
<!doctype html>
<!--
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html ng-controller="MainCtrl" class="no-js">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="utf-8" />
<title ng-bind="$root.pageTitle">Zeppelin</title>
<!-- disable caches for all browser -->
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="cache-control" content="no-store" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<meta name="description" content="" />
<meta name="viewport" content="width=device-width" />
<!-- ACE CSS autocomplition issue workarounds -->
<style type="text/css">
div.ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line { z-index: -1 !important; }
</style>
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<!-- build:css(.) styles/vendor.css -->
<!-- npm:css -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" href="node_modules/nvd3/build/nv.d3.css" />
<link rel="stylesheet" href="node_modules/perfect-scrollbar/src/perfect-scrollbar.css" />
<link rel="stylesheet" href="node_modules/ng-sortable/dist/ng-sortable.css" />
<link rel="stylesheet" href="node_modules/angular-xeditable/dist/css/xeditable.css" />
<link rel="stylesheet" href="node_modules/highlight.js/styles/github.css" />
<link rel="stylesheet" href="node_modules/ng-toast/dist/ngToast.css" />
<link rel="stylesheet" href="node_modules/bootstrap3-dialog/dist/css/bootstrap-dialog.min.css" />
<link rel="stylesheet" href="node_modules/jquery-ui/themes/base/all.css" />
<link rel="stylesheet" href="node_modules/select2/dist/css/select2.css" />
<!-- endnpm -->
<!-- endbuild -->
<!-- build:css(.tmp) styles/main.css -->
<link rel="stylesheet" href="components/navbar/navbar.css" />
<link rel="stylesheet" href="app/home/home.css" />
<link rel="stylesheet" href="app/search/search.css" />
<link rel="stylesheet" href="app/notebook/notebook.css" />
<link rel="stylesheet" href="app/notebook/paragraph/paragraph.css" />
<link rel="stylesheet" href="app/notebook/paragraph/result/result.css" />
<link rel="stylesheet" href="app/notebook/paragraph/result/display-table.css" />
<link rel="stylesheet" href="app/jobmanager/jobmanager.css" />
<link rel="stylesheet" href="app/interpreter/interpreter.css" />
<link rel="stylesheet" href="app/helium/helium.css" />
<link rel="stylesheet" href="app/credential/credential.css" />
<link rel="stylesheet" href="app/configuration/configuration.css" />
<link rel="stylesheet" href="fonts/font-awesome.min.css" />
<link rel="stylesheet" href="fonts/simple-line-icons.css" />
<link rel="stylesheet" href="fonts/custom-font.css" />
<link rel="stylesheet" href="fonts/google-fonts.css" />
<!-- endbuild -->
<link rel="stylesheet" ng-href="assets/styles/looknfeel/{{looknfeel}}.css" />
<link rel="stylesheet" href="assets/styles/printMode.css" />
<style>
/* This is kept here puropsly to show preloader */
#pre-loader {
height: 100%;
min-height: 100%;
background-color: #ECF0F1;
width: 100%;
position: fixed;
top: 0px;
margin-left: -8px;
z-index: 99
}
.pre-loader-content {
position: absolute;
top: 45%;
left: 50%
}
.loader {
border: 4px solid #666666;
border-top: 4px solid #3071A9;
border-radius: 50%;
width: 30px;
height: 30px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body ng-class="{'bodyAsIframe': asIframe}">
<div id="pre-loader">
<div class="pre-loader-content">
<div class="loader"></div>
<div style="margin-top: 5px; margin-left: -10px;">Loading ...</div>
</div>
</div>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<toast></toast>
<div ng-include src="'components/navbar/navbar.html'"></div>
<!-- Add your site or application content here -->
<div id="main" class="container">
<div ng-view></div>
</div>
<!-- global :: dialogs -->
<div ng-include src="'app/notebook/shortcut.html'"></div>
<div ng-controller="NoteCreateCtrl as noteCreateCtrl">
<div id="note-modal-container" ng-include src="'components/note-create/note-create.html'"></div>
</div>
<div ng-controller="NoteImportCtrl as noteImportCtrl">
<div id="note-import-container" ng-include src="'components/note-import/note-import.html'"></div>
</div>
<div ng-controller="LoginCtrl">
<div id="login-container" ng-include src="'components/login/login.html'"></div>
</div>
<div ng-controller="NoteRenameCtrl">
<div ng-include src="'components/note-rename/note-rename.html'"></div>
</div>
<!-- build:js(.) scripts/oldieshim.js -->
<!--[if lt IE 9]>
<script src="node_modules/es5-shim/es5-shim.js"></script>
<script src="node_modules/json3/lib/json3.min.js"></script>
<![endif]-->
<!-- endbuild -->
<script type="text/x-mathjax-config">
var config = {
extensions: ["tex2jax.js"],
jax: ["input/TeX", "output/HTML-CSS"],
tex2jax: {
inlineMath: [ ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true
},
"HTML-CSS": { availableFonts: ["TeX"] },
messageStyle: "none"
}
// add root only if it's not dev mode
if (Number(location.port) !== WEB_PORT) {
const origin = window.location.origin;
const pathname = window.location.pathname;
config.root = window.location.origin + (
// remove trailing slash
pathname.charAt(pathname.length - 1) === '/' ?
pathname.slice(0, -1) :
pathname
);
}
MathJax.Hub.Config(config);
</script>
<!-- build:js(.) scripts/vendor.js -->
<!-- npm:js -->
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/angular/angular.js"></script>
<script src="node_modules/json3/lib/json3.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.js"></script>
<script src="node_modules/angular-cookies/angular-cookies.js"></script>
<script src="node_modules/angular-sanitize/angular-sanitize.js"></script>
<script src="node_modules/angular-animate/angular-animate.js"></script>
<script src="node_modules/angular-touch/angular-touch.js"></script>
<script src="node_modules/angular-route/angular-route.js"></script>
<script src="node_modules/angular-resource/angular-resource.js"></script>
<script src="node_modules/angular-ui-bootstrap/dist/ui-bootstrap-tpls.js"></script>
<script src="node_modules/angular-websocket/angular-websocket.min.js"></script>
<script src="node_modules/ace-builds/src-noconflict/ace.js"></script>
<script src="node_modules/ace-builds/src-noconflict/mode-scala.js"></script>
<script src="node_modules/ace-builds/src-noconflict/mode-python.js"></script>
<script src="node_modules/ace-builds/src-noconflict/mode-sql.js"></script>
<script src="node_modules/ace-builds/src-noconflict/mode-markdown.js"></script>
<script src="node_modules/ace-builds/src-noconflict/mode-pig.js"></script>
<script src="node_modules/ace-builds/src-noconflict/mode-sh.js"></script>
<script src="node_modules/ace-builds/src-noconflict/mode-r.js"></script>
<script src="node_modules/ace-builds/src-noconflict/mode-sparql.js"></script>
<script src="node_modules/ace-builds/src-noconflict/keybinding-emacs.js"></script>
<script src="node_modules/ace-builds/src-noconflict/ext-language_tools.js"></script>
<script src="node_modules/ace-builds/src-noconflict/theme-chrome.js"></script>
<script src="node_modules/ace-builds/src-noconflict/mode-javascript.js"></script>
<script src="node_modules/angular-ui-ace/src/ui-ace.js"></script>
<script src="node_modules/jquery.scrollTo/jquery.scrollTo.js"></script>
<script src="node_modules/d3/d3.js"></script>
<script src="node_modules/nvd3/build/nv.d3.js"></script>
<script src="node_modules/jquery-ui/dist/jquery-ui.js"></script>
<script src="node_modules/angular-dragdrop/src/angular-dragdrop.js"></script>
<script src="node_modules/perfect-scrollbar/src/perfect-scrollbar.js"></script>
<script src="node_modules/ng-sortable/dist/ng-sortable.js"></script>
<script src="node_modules/angular-elastic/elastic.js"></script>
<script src="node_modules/angular-elastic-input/dist/angular-elastic-input.min.js"></script>
<script src="node_modules/angular-xeditable/dist/js/xeditable.js"></script>
<script src="node_modules/highlight.js/lib/highlight.js"></script>
<script src="node_modules/lodash/index.js"></script>
<script src="node_modules/angular-filter/dist/angular-filter.js"></script>
<script src="node_modules/ng-toast/dist/ngToast.js"></script>
<script src="node_modules/ng-focus-if/focusIf.js"></script>
<script src="node_modules/bootstrap3-dialog/dist/js/bootstrap-dialog.min.js"></script>
<script src="node_modules/select2/dist/js/select2.js"></script>
<script src="node_modules/mathjax/MathJax.js"></script>
<script src="node_modules/clipboard/dist/clipboard.js"></script>
<script src="node_modules/ngclipboard/dist/ngclipboard.js"></script>
<script src="node_modules/diff/dist/diff.js"></script>
<script src="node_modules/ng-infinite-scroll/build/ng-infinite-scroll.js"></script>
<script src="node_modules/jszip/dist/jszip.js"></script>
<script src="node_modules/excel-builder/dist/excel-builder.dist.js"></script>
<!-- endnpm -->
<!-- endbuild -->
</body>
</html>