-
Notifications
You must be signed in to change notification settings - Fork 9
/
header_fb.inc.php
213 lines (178 loc) · 7.75 KB
/
header_fb.inc.php
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
<?php
// This file is part of the Huygens Remote Manager
// Copyright and license notice: see license.txt
use hrm\Util;
use hrm\UtilV2;
use hrm\System;
require_once dirname(__FILE__) . '/inc/bootstrap.php';
?>
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<!-- Include jQuery -->
<script type="text/javascript" src="scripts/jquery-1.8.3.min.js"></script>
<?php
if (Util::using_IE()) {
echo '<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>';
}
?>
<title>Huygens Remote Manager</title>
<?php
$ico = 'images/hrm_custom.ico';
if (!file_exists($ico)) {
$ico = 'images/hrm.ico';
}
echo ' <link rel="SHORTCUT ICON" href="' . $ico . '"/>';
?>
<link rel="stylesheet" type="text/css" href="scripts/jqTree/jqtree.css">
<link rel="stylesheet" type="text/css" href="css/jqtree-custom.css">
<link rel="stylesheet" type="text/css" href="scripts/jquery-ui/jquery-ui-1.9.1.custom.css">
<!-- Fine uploader's css -->
<link rel="stylesheet" type="text/css" href="scripts/fineuploader/fine-uploader-new.css">
<link rel="stylesheet" type="text/css" href="css/custom_fineuploader.css?v=3.7">
<link rel="stylesheet" type="text/css" href="css/themes/custom_fineuploader_dark.css?v=3.7" title="dark">
<link rel="alternate stylesheet" type="text/css" href="css/themes/custom_fineuploader_light.css?v=3.7" title="light">
<!-- Theming support -->
<script type="text/javascript" src="scripts/theming.js"></script>
<script type="text/javascript" src="scripts/common.js"></script>
<!-- Include Fine Uploader -->
<!--<script src="scripts/fineuploader/jquery.fine-uploader.js"></script> -->
<!-- Fine Uploader Thumbnails template w/ customization
====================================================================== -->
<script type="text/template" id="qq-template-manual-trigger">
<div class="qq-uploader-selector qq-uploader" qq-drop-area-text="Drop files here">
<div class="qq-total-progress-bar-container-selector qq-total-progress-bar-container">
<div role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" class="qq-total-progress-bar-selector qq-progress-bar qq-total-progress-bar"></div>
</div>
<div class="qq-upload-drop-area-selector qq-upload-drop-area" qq-hide-dropzone>
<span class="qq-upload-drop-area-text-selector"></span>
</div>
<div class="buttons">
<div class="qq-upload-button-selector qq-upload-button">
<div>Select files</div>
</div>
<button type="button" id="trigger-upload" class="btn btn-primary">
<i class="icon-upload icon-white"></i>Upload
</button>
</div>
<span class="qq-drop-processing-selector qq-drop-processing">
<span>Processing dropped files...</span>
<span class="qq-drop-processing-spinner-selector qq-drop-processing-spinner"></span>
</span>
<ul class="qq-upload-list-selector qq-upload-list" aria-live="polite" aria-relevant="additions removals">
<li>
<div class="qq-progress-bar-container-selector">
<div role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" class="qq-progress-bar-selector qq-progress-bar"></div>
</div>
<span class="qq-upload-spinner-selector qq-upload-spinner"></span>
<img class="qq-thumbnail-selector" qq-max-size="100" qq-server-scale>
<span class="qq-upload-file-selector qq-upload-file"></span>
<span class="qq-edit-filename-icon-selector qq-edit-filename-icon" aria-label="Edit filename"></span>
<input class="qq-edit-filename-selector qq-edit-filename" tabindex="0" type="text">
<span class="qq-upload-size-selector qq-upload-size"></span>
<button type="button" class="qq-btn qq-upload-cancel-selector qq-upload-cancel">Cancel</button>
<button type="button" class="qq-btn qq-upload-retry-selector qq-upload-retry">Retry</button>
<button type="button" class="qq-btn qq-upload-delete-selector qq-upload-delete">Delete</button>
<span role="status" class="qq-upload-status-text-selector qq-upload-status-text"></span>
</li>
</ul>
<dialog class="qq-alert-dialog-selector">
<div class="qq-dialog-message-selector"></div>
<div class="qq-dialog-buttons">
<button type="button" class="qq-cancel-button-selector">Close</button>
</div>
</dialog>
<dialog class="qq-confirm-dialog-selector">
<div class="qq-dialog-message-selector"></div>
<div class="qq-dialog-buttons">
<button type="button" class="qq-cancel-button-selector">No</button>
<button type="button" class="qq-ok-button-selector">Yes</button>
</div>
</dialog>
<dialog class="qq-prompt-dialog-selector">
<div class="qq-dialog-message-selector"></div>
<input type="text">
<div class="qq-dialog-buttons">
<button type="button" class="qq-cancel-button-selector">Cancel</button>
<button type="button" class="qq-ok-button-selector">Ok</button>
</div>
</dialog>
</div>
</script>
<?php
if (isset($script)) {
if ( is_array( $script ) ) {
foreach ( $script as $current ) {
// Workaround for the lack of canvas in IE
if ( $current == "highcharts/excanvas.compiled.js" ) {
?>
<!--[if IE]>
<script type="text/javascript"
src="scripts/<?php echo $current ?>"></script>
<![endif]-->
<?php
} else {
?>
<script type="text/javascript"
src="scripts/<?php echo $current ?>"></script>
<?php
}
}
} else {
// Workaround for the lack of canvas in IE
if ( $script == "highcharts/excanvas.compiled.js" ) {
?>
<!--[if IE]>
<script type="text/javascript"
src="scripts/<?php echo $script ?>"></script>
<![endif]-->
<?php
} else {
?>
<script type="text/javascript"
src="scripts/<?php echo $script ?>"></script>
<?php
}
}
}
if (isset($generatedScript)) {
?>
<script type="text/javascript"><?php echo $generatedScript ?></script>
<?php
}
?>
<!-- Main stylesheets -->
<link rel="stylesheet" type="text/css" href="css/fonts.css?v=3.7">
<link rel="stylesheet" type="text/css" href="css/default.css?v=3.7">
<!-- Themes -->
<link rel="stylesheet" type="text/css" href="css/themes/dark.css?v=3.7" title="dark">
<link rel="alternate stylesheet" type="text/css" href="css/themes/light.css?v=3.7" title="light">
<!--[if lt IE 9]>
<h3>This browser is OBSOLETE and is known to have important issues with HRM.
Please upgrade to a later version of Internet Explorer or to a new
browser altogether.</h3>
<![endif]-->
<?php
$custom_css = "css/custom.css";
if (file_exists($custom_css)) {
echo ' <link rel="stylesheet" href="' . $custom_css . '">' . "\n";
}
?>
<script>
<!-- Apply the theme -->
apply_stored_or_default_theme();
</script>
</head>
<body>
<!--
// Use the great Tooltip JavaScript Library by Walter Zorn
-->
<script type="text/javascript" src="./scripts/wz_tooltip/wz_tooltip.js"></script>
<div id="basket">
<?php if (!isset($excludeTitle)) { ?>
<div id="title">
<h1>
Huygens Remote Manager
</h1>
</div>
<?php } ?>