annotate mod_conversejs/templates/template.js @ 4326:f6fdefc5c6ac

mod_roster_command: Fix subscription when the "user JID" is a bare domain. Do not attempt to update the roster when the user is bare domain (e.g. a component), since they don't have rosters and the attempt results in an error: $ prosodyctl mod_roster_command subscribe proxy.example.com contact@example.com xxxxxxxxxxFailed to execute command: Error: /usr/lib/prosody/core/rostermanager.lua:104: attempt to concatenate local 'username' (a nil value) stack traceback: /usr/lib/prosody/core/rostermanager.lua:104: in function 'load_roster' /usr/lib/prosody/core/rostermanager.lua:305: in function 'set_contact_pending_out' mod_roster_command.lua:44: in function 'subscribe'
author Boris Grozev <boris@jitsi.org>
date Tue, 05 Jan 2021 13:15:00 -0600
parents 13b065432bf2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3598
1921ae4449b8 mod_conversejs: Separate out templates into separate configurable files (breaks 0.9 compat)
Kim Alvefur <zash@zash.se>
parents:
diff changeset
1 if(typeof converse == 'undefined') {
4227
13b065432bf2 mod_conversejs: Comment on what's going on in JS template
Kim Alvefur <zash@zash.se>
parents: 4165
diff changeset
2 /*
13b065432bf2 mod_conversejs: Comment on what's going on in JS template
Kim Alvefur <zash@zash.se>
parents: 4165
diff changeset
3 * This shows the content of <noscript> if there's a problem
13b065432bf2 mod_conversejs: Comment on what's going on in JS template
Kim Alvefur <zash@zash.se>
parents: 4165
diff changeset
4 * loading converse.js for some reason
13b065432bf2 mod_conversejs: Comment on what's going on in JS template
Kim Alvefur <zash@zash.se>
parents: 4165
diff changeset
5 */
3598
1921ae4449b8 mod_conversejs: Separate out templates into separate configurable files (breaks 0.9 compat)
Kim Alvefur <zash@zash.se>
parents:
diff changeset
6 var div = document.createElement("div");
1921ae4449b8 mod_conversejs: Separate out templates into separate configurable files (breaks 0.9 compat)
Kim Alvefur <zash@zash.se>
parents:
diff changeset
7 var noscript = document.getElementsByTagName("noscript")[0];
1921ae4449b8 mod_conversejs: Separate out templates into separate configurable files (breaks 0.9 compat)
Kim Alvefur <zash@zash.se>
parents:
diff changeset
8 div.innerHTML = noscript.innerText;
1921ae4449b8 mod_conversejs: Separate out templates into separate configurable files (breaks 0.9 compat)
Kim Alvefur <zash@zash.se>
parents:
diff changeset
9 document.body.appendChild(div);
1921ae4449b8 mod_conversejs: Separate out templates into separate configurable files (breaks 0.9 compat)
Kim Alvefur <zash@zash.se>
parents:
diff changeset
10 } else {
4227
13b065432bf2 mod_conversejs: Comment on what's going on in JS template
Kim Alvefur <zash@zash.se>
parents: 4165
diff changeset
11 /*
13b065432bf2 mod_conversejs: Comment on what's going on in JS template
Kim Alvefur <zash@zash.se>
parents: 4165
diff changeset
12 * converse.js should have loaded, so we initialize it with
13b065432bf2 mod_conversejs: Comment on what's going on in JS template
Kim Alvefur <zash@zash.se>
parents: 4165
diff changeset
13 * the settings generated by Prosody. This uses sprintf-style
13b065432bf2 mod_conversejs: Comment on what's going on in JS template
Kim Alvefur <zash@zash.se>
parents: 4165
diff changeset
14 * formatting to insert the settigs as a JSON object.
13b065432bf2 mod_conversejs: Comment on what's going on in JS template
Kim Alvefur <zash@zash.se>
parents: 4165
diff changeset
15 */
3598
1921ae4449b8 mod_conversejs: Separate out templates into separate configurable files (breaks 0.9 compat)
Kim Alvefur <zash@zash.se>
parents:
diff changeset
16 converse.initialize(%s);
1921ae4449b8 mod_conversejs: Separate out templates into separate configurable files (breaks 0.9 compat)
Kim Alvefur <zash@zash.se>
parents:
diff changeset
17 }