-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathxstart.htm
99 lines (94 loc) · 3.92 KB
/
xstart.htm
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<base id='htmlbase' href="https://knxuf.github.io/xxAPI2/" target="_self">
<meta id="meta_viewport" name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" >
<meta name="apple-mobile-web-app-title" content="xxAPI²" >
<title>xxAPI²</title>
<link rel="apple-touch-icon apple-touch-icon-precomposed" href="img/xxAPI_57px.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="img/xxAPI_152px.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="img/xxAPI_144px.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="img/xxAPI_120px.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="img/xxAPI_72px.png">
<link rel="shortcut icon" href="img/favicon.ico">
<!-- Chrome -->
<link rel="icon" sizes="192x192" href="img/xxAPI_192px.png">
<link rel="icon" sizes="128x128" href="img/xxAPI_128px.png">
<!-- Tile icon for Win8 -->
<meta name="msapplication-TileImage" content="img/144x144.png">
<meta name="msapplication-TileColor" content="#f0f0f0">
<script type="text/javascript">
"use strict";
function fixbase() {
var _base = document.getElementById('htmlbase');
var _base_url = _base.href;
if (typeof Storage != 'undefined') {
var _version = localStorage.getItem('version') || null;
if (_version != null) {
_base_url += _version + '/';
_base.setAttribute('href', _base_url);
}
}
if (_base_url != location.href) {
var _elements = document.getElementsByTagName("link");
for ( var i = 0; i < _elements.length; i ++ ) {
// FIX href
_elements[i].setAttribute('href', _elements[i].href);
}
_elements = document.getElementsByName("msapplication-TileImage");
_elements[0].setAttribute('content', _base_url + _elements[0].content);
}
}
fixbase();
</script>
<script src="libs/jquery.min.js" type="text/javascript"></script>
<script src="xxapi2.js" type="text/javascript"></script>
</head>
<body>
<div id="VISUCONTAINER">
<div id="VISU"></div>
<div id="POPUP"></div>
</div>
</body>
</html>
<!--
/*
* Copyright 2015, KNX-User-Forum e.V.
*
* This file is part of xxAPI2.
*
* xxAPI2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* xxAPI2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with xxAPI2. If not, see <http://www.gnu.org/licenses/>.
*
* Diese Datei ist Teil von xxAPI2.
*
* xxAPI2 ist Freie Software: Sie können es unter den Bedingungen
* der GNU Lesser General Public License, wie von der Free Software Foundation,
* Version 3 der Lizenz oder (nach Ihrer Wahl) jeder späteren
* veröffentlichten Version, weiterverbreiten und/oder modifizieren.
*
* xxAPI2 wird in der Hoffnung, dass es nützlich sein wird, aber
* OHNE JEDE GEWÄHRLEISTUNG, bereitgestellt; sogar ohne die implizite
* Gewährleistung der MARKTFÄHIGKEIT oder EIGNUNG FÜR EINEN BESTIMMTEN ZWECK.
* Siehe die GNU Lesser General Public License für weitere Details.
*
* Sie sollten eine Kopie der GNU Lesser General Public License zusammen mit diesem
* Programm erhalten haben. Wenn nicht, siehe <http://www.gnu.org/licenses/>.
* https://github.com/knxuf/xxAPI2/blob/master/LICENSE
*
*/
-->