|
<html>
|
|
<head>
|
|
<!--
|
|
<title>Converse</title>
|
|
-->
|
|
<title>Converse Chat StuRa HTW Dresden</title>
|
|
<meta charset="utf-8"/>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<!--
|
|
<meta name="description" content="Converse XMPP/Jabber Chat"/>
|
|
-->
|
|
<meta name="description" content="Converse XMPP/Jabber Chat StuRa HTW Dresden"/>
|
|
<meta name="author" content="JC Brand" />
|
|
<!--
|
|
<meta name="keywords" content="xmpp chat webchat converse.js" />
|
|
-->
|
|
<meta name="keywords" content="xmpp chat webchat converse.js stura.htw.dresden.de" />
|
|
<!--
|
|
<link rel="shortcut icon" type="image/ico" href="/dist/favicon.ico"/>
|
|
-->
|
|
<link rel="shortcut icon" type="image/ico" href="https://www.stura.htw-dresden.de/favicon.ico"/>
|
|
<!--
|
|
<script type="text/javascript" src="inverse-analytics.js"></script>
|
|
-->
|
|
<!--
|
|
<noscript><p><img src="//stats.opkode.com/piwik.php?idsite=5" style="border:0;" alt="" /></p></noscript>
|
|
-->
|
|
<noscript><p></p></noscript>
|
|
<!--
|
|
<link rel="manifest" href="./manifest.json">
|
|
-->
|
|
<!--
|
|
<link type="text/css" rel="stylesheet" media="screen" href="/dist/converse.min.css" />
|
|
-->
|
|
<link type="text/css" rel="stylesheet" media="screen" href="https://cdn.conversejs.org/dist/converse.min.css">
|
|
<script src="https://cdn.conversejs.org/3rdparty/libsignal-protocol.min.js"></script>
|
|
<!--
|
|
<script src="/dist/converse.min.js"></script>
|
|
-->
|
|
<script src="https://cdn.conversejs.org/dist/converse.min.js" charset="utf-8"></script>
|
|
</head>
|
|
<!--
|
|
<body class="converse-fullscreen">
|
|
-->
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run the Converse.js chat app.</noscript>
|
|
<!--
|
|
<div id="conversejs-bg"></div>
|
|
-->
|
|
</body>
|
|
<script>
|
|
converse.initialize({
|
|
view_mode: 'fullscreen',
|
|
// // view_mode: 'embedded',
|
|
// No point in logging out when we have auto_login as true.
|
|
//// allow_logout: false,
|
|
// Doesn't make sense to allow because only roster contacts can be invited
|
|
allow_muc_invitations: false,
|
|
// Contacts from other servers cannot, be added and anonymous users don't know one another's JIDs, so disabling.
|
|
allow_contact_requests: false,
|
|
authentication: 'anonymous',
|
|
auto_login: true,
|
|
auto_join_rooms: [
|
|
'stura-htw-dresden@chat.c3d2.de',
|
|
],
|
|
//// notify_all_room_messages: [
|
|
//// 'stura-htw-dresden@chat.c3d2.de',
|
|
//// ],
|
|
// Please use this connection manager only for testing purposes
|
|
//// bosh_service_url: 'https://conversejs.org/http-bind/',
|
|
bosh_service_url: 'https://jabber.c3d2.de/http-bind/',
|
|
// XMPP server which allows anonymous login (doesn't allow chatting with other XMPP servers).
|
|
jid: 'anon.jabber.c3d2.de',
|
|
keepalive: true,
|
|
// Federation is disabled, so no use in showing the MUC server.
|
|
hide_muc_server: true,
|
|
play_sounds: true,
|
|
show_controlbox_by_default: true,
|
|
strict_plugin_dependencies: false,
|
|
});
|
|
</script>
|
|
</html>
|