-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #708 from Martin-Gleiss/develop
Release v3.2.1
- Loading branch information
Showing
29 changed files
with
470 additions
and
537 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/** | ||
* ----------------------------------------------------------------------------- | ||
* @package smartVISU | ||
* @author Wolfram v. Hülsen | ||
* @copyright 2022 | ||
* @license GPL [http://www.gnu.de] | ||
* ----------------------------------------------------------------------------- | ||
*/ | ||
|
||
/** visualizes the most relevant parameters of the websocekt connection | ||
* good e.g. on smartphones where no browser console is available | ||
*/ | ||
|
||
{% extends "rooms.html" %} | ||
|
||
{% block content %} | ||
<h1>Display Connection Details</h1> | ||
|
||
<h2>Configuration Parameters</h2> | ||
<ul> | ||
<li>driver name: <span id="line1"></span></li> | ||
<li>sv.driver.address: <span id="line2"></span></li> | ||
<li>sv.config.driver.port: <span id="line3"></span></li> | ||
<li>sv.config.driver.tlsport: <span id="line4"></span></li> | ||
<li>sv.config.svHostname: <span id="line5"></span></li> | ||
|
||
</ul> | ||
<h2>Location Info</h2> | ||
<ul> | ||
<li>location.host: <span id="line6"></span></li> | ||
<li>location.hostname: <span id="line7"></span></li> | ||
<li>location.protocol: <span id="line8"></span></li> | ||
</ul> | ||
|
||
<h2>Websocket Parameters</h2> | ||
<ul> | ||
<li>io.address: <span id="line9"></span></li> | ||
<li>io.port: <span id="line10"></span></li> | ||
<li>Websocket URL: <span id="line11"></span></li> | ||
</ul> | ||
|
||
<span id="line12"></span><br /> | ||
<span id="line13"></span><br /> | ||
|
||
<script> | ||
$('#line1').text(sv.config.driver.name); | ||
$('#line2').text(sv.config.driver.address); | ||
$('#line3').text(sv.config.driver.port); | ||
$('#line4').text(sv.config.driver.tlsport); | ||
$('#line5').text(sv.config.svHostname); | ||
$('#line6').text(location.host); | ||
$('#line7').text(location.hostname); | ||
$('#line8').text(location.protocol); | ||
$('#line9').text(io.address); | ||
$('#line10').text(io.port); | ||
$('#line11').text(io.socket.url); | ||
|
||
</script> | ||
|
||
|
||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.