forked from conversejs/converse.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (79 loc) · 3.93 KB
/
index.html
File metadata and controls
97 lines (79 loc) · 3.93 KB
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
<!DOCTYPE html>
<html>
<head>
<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="description" content="Restore the Fourth SF Messaging System" />
<link rel="shortcut icon" type="image/x-icon" href="https://restorethefourthsf.com/wp-content/uploads/2013/06/favicon.ico"/>
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<link rel="stylesheet" type="text/css" media="screen" href="converse.css">
<script data-main="main" src="components/requirejs/require.js"></script>
<!--<script src="builds/converse.min.js"></script>-->
<title>Restore the Fourth SF Chat System</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<img src="https://restorethefourthsf.com/wp-content/uploads/2013/06/pic-10sfbay1.png" href="https://restorethefourthsf.com" alt="Restore the Fourth"/ style="width:140px;"> <h1 id="project_title"> Chat System</h1>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<h3>Is it secure?</h3>
<p>
Yes, you can trust that the Javascript being downloaded is
not being tampered with. This page itself is served by Restore The Fourth SF Bay Area via <a href="https://en.wikipedia.org/wiki/Transport_Layer_Security">TLS</a>
encrypted (i.e. served via <a href="https://en.wikipedia.org/wiki/HTTPS">HTTPS</a>).
This prevents malicious software from being delivered to your browser.
</p>
<p>
The chat system itself makes encrypted HTTPS requests to our <em> connection manager </em>, which will make an
SSL/TLS encrypted connection to our XMPP server.
</p>
<p> We strongly reccomend you use the OTR functionality to further protect the contents of your communications.</p>
<h3>How do I get an account? </h3>
<p>Accounts are only available to members of Restore the Fourth SF. Please attend a meeting or otherwise get involved to get an account.</p>
<h3>Limitations </h3>
<p> There appears to be a bug in the implementation of OTR in the web client which prevents OTR conversations between web clients and desktop/mobile clients. OTR conversations amongst Adium/Pidgin/ChatSecure or webclients work fine.</p>
<p><a href="https://github.com/jcbrand/converse.js/issues/107">Bug Report</a></p>
<h3>Instruction for Desktop clients</h3>
<p>We reccomend:</p>
<ul>
<li><a href="https://pidgin.im/"> Pidgin </a>(Linux/Windows) </li>
<li><a href="https://adium.im/"> Adium </a>(OS X) </li>
<li><a href="https://itunes.apple.com/us/app/chatsecure-encrypted-secure/id464200063?mt=8"> ChatSecure </a>(Iphone/Ipad) </li>
<li><a href="https://play.google.com/store/apps/details?id=info.guardianproject.otr.app.im"> ChatSecure </a>(Android) </li>
</ul>
<p>Username:username@restorethefourthsf.com </p>
<p>Server:restorethefourthsf.com </p>
<p>Port:5222 </p>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
For more information, checkout <a href="http://conversejs.org"> Converse.js</a>
</footer>
</div>
<div id="conversejs"></div>
</body>
<script>
require(['converse'], function (converse) {
converse.initialize({
allow_otr: true,
auto_list_rooms: false,
auto_subscribe: false,
bosh_service_url: 'https://restorethefourthsf.com/http-bind', // Please use this connection manager only for testing purposes
debug: true ,
hide_muc_server: false,
i18n: locales['en'], // Refer to ./locale/locales.js to see which locales are supported
prebind: false,
show_controlbox_by_default: true,
xhr_user_search: false,
});
});
</script>
</html>