New BOSH service address
Conflicts: docs/doctrees/index.doctree docs/html/_sources/index.txt docs/html/index.html docs/html/searchindex.js
This commit is contained in:
parent
01d8047fc2
commit
a9da15bb2f
Binary file not shown.
@ -43,7 +43,7 @@ bottom of your page (after the closing *</body>* element).
|
||||
converse.initialize({
|
||||
auto_list_rooms: false,
|
||||
auto_subscribe: false,
|
||||
bosh_service_url: 'https://bind.opkode.im', // Please use this connection manager only for testing purposes
|
||||
bosh_service_url: 'https://bind.conversejs.org', // Please use this connection manager only for testing purposes
|
||||
hide_muc_server: false,
|
||||
i18n: locales.en, // Refer to ./locale/locales.js to see which locales are supported
|
||||
prebind: false,
|
||||
@ -138,7 +138,7 @@ This is the job of a connection manager. A connection manager can be either a
|
||||
standalone application or part of an XMPP server. `ejabberd`_ for example,
|
||||
includes a connection manager (but you have to enable it).
|
||||
|
||||
The demo on the `Converse.js homepage`_ uses a a connection manager located at https://bind.opkode.im.
|
||||
The demo on the `Converse.js homepage`_ uses a a connection manager located at https://bind.conversejs.org.
|
||||
This connection manager is for testing purposes only, please don't use it in
|
||||
production.
|
||||
|
||||
@ -318,7 +318,7 @@ Converse.js/Strophe.js and Facebook's XMPP server. That is because Facebook's
|
||||
XMPP server doesn't support BOSH natively.
|
||||
|
||||
The BOSH connection manager that I make available for
|
||||
testing purposes (at https://bind.opkode.im) uses `Punjab <https://github.com/twonds/punjab>`_,
|
||||
testing purposes (at https://bind.conversejs.org) uses `Punjab <https://github.com/twonds/punjab>`_,
|
||||
although there are quite a few other options available as well.
|
||||
|
||||
When you configure Converse.js, via its ``initialize`` method, you must specify the
|
||||
@ -401,7 +401,9 @@ which depend on Node.js and npm (the Node package manager).
|
||||
If you don't have Node.js installed, you can download and install the latest
|
||||
version `here <https://nodejs.org/download>`_.
|
||||
|
||||
Once you have Node.js installed, run the following command inside the Converse.js
|
||||
Also make sure you have ``git`` installed. `Details <http://git-scm.com/book/en/Getting-Started-Installing-Git>`_.
|
||||
|
||||
Once you have *Node.js* and *git* installed, run the following command inside the Converse.js
|
||||
directory:
|
||||
|
||||
::
|
||||
@ -414,7 +416,7 @@ and then use Bower to install all of Converse.js's front-end dependencies.
|
||||
The front-end dependencies are those javascript files on which
|
||||
Converse.js directly depends and which will therefore be loaded in the browser.
|
||||
|
||||
If you are curious to know what these different dependencies are:
|
||||
If you are curious to know what the different dependencies are:
|
||||
|
||||
* Development dependencies:
|
||||
Take a look at whats under the *devDependencies* key in
|
||||
@ -424,7 +426,6 @@ If you are curious to know what these different dependencies are:
|
||||
See *dependencies* in
|
||||
`bower.json <https://github.com/jcbrand/converse.js/blob/master/bower.json>`_.
|
||||
|
||||
|
||||
.. Note:
|
||||
After running ```make dev```, you should now have a new directory *components*,
|
||||
which contains all the front-end dependencies of Converse.js.
|
||||
|
@ -169,7 +169,7 @@ bottom of your page (after the closing <em></body></em> element).</p>
|
||||
converse.initialize({
|
||||
auto_list_rooms: false,
|
||||
auto_subscribe: false,
|
||||
bosh_service_url: 'https://bind.opkode.im', // Please use this connection manager only for testing purposes
|
||||
bosh_service_url: 'https://bind.conversejs.org', // Please use this connection manager only for testing purposes
|
||||
hide_muc_server: false,
|
||||
i18n: locales.en, // Refer to ./locale/locales.js to see which locales are supported
|
||||
prebind: false,
|
||||
@ -236,7 +236,7 @@ protocols.</p>
|
||||
<p>This is the job of a connection manager. A connection manager can be either a
|
||||
standalone application or part of an XMPP server. <a class="reference external" href="http://www.ejabberd.im">ejabberd</a> for example,
|
||||
includes a connection manager (but you have to enable it).</p>
|
||||
<p>The demo on the <a class="reference external" href="http://conversejs.org">Converse.js homepage</a> uses a a connection manager located at <a class="reference external" href="https://bind.opkode.im">https://bind.opkode.im</a>.
|
||||
<p>The demo on the <a class="reference external" href="http://conversejs.org">Converse.js homepage</a> uses a a connection manager located at <a class="reference external" href="https://bind.conversejs.org">https://bind.conversejs.org</a>.
|
||||
This connection manager is for testing purposes only, please don’t use it in
|
||||
production.</p>
|
||||
<div class="section" id="overcoming-cross-domain-request-restrictions">
|
||||
@ -390,7 +390,7 @@ can be extended via <a class="reference external" href="http://github.com/stroph
|
||||
Converse.js/Strophe.js and Facebook’s XMPP server. That is because Facebook’s
|
||||
XMPP server doesn’t support BOSH natively.</p>
|
||||
<p>The BOSH connection manager that I make available for
|
||||
testing purposes (at <a class="reference external" href="https://bind.opkode.im">https://bind.opkode.im</a>) uses <a class="reference external" href="https://github.com/twonds/punjab">Punjab</a>,
|
||||
testing purposes (at <a class="reference external" href="https://bind.conversejs.org">https://bind.conversejs.org</a>) uses <a class="reference external" href="https://github.com/twonds/punjab">Punjab</a>,
|
||||
although there are quite a few other options available as well.</p>
|
||||
<p>When you configure Converse.js, via its <tt class="docutils literal"><span class="pre">initialize</span></tt> method, you must specify the
|
||||
<a class="reference internal" href="#bosh-service-url">bosh_service_url</a> value, which is to be your BOSH connection manager.</p>
|
||||
@ -452,7 +452,8 @@ follow the instructions below to create this folder and fetch Converse’s
|
||||
which depend on Node.js and npm (the Node package manager).</p>
|
||||
<p>If you don’t have Node.js installed, you can download and install the latest
|
||||
version <a class="reference external" href="https://nodejs.org/download">here</a>.</p>
|
||||
<p>Once you have Node.js installed, run the following command inside the Converse.js
|
||||
<p>Also make sure you have <tt class="docutils literal"><span class="pre">git</span></tt> installed. <a class="reference external" href="http://git-scm.com/book/en/Getting-Started-Installing-Git">Details</a>.</p>
|
||||
<p>Once you have <em>Node.js</em> and <em>git</em> installed, run the following command inside the Converse.js
|
||||
directory:</p>
|
||||
<div class="highlight-python"><pre>make dev</pre>
|
||||
</div>
|
||||
@ -460,7 +461,7 @@ directory:</p>
|
||||
and then use Bower to install all of Converse.js’s front-end dependencies.</p>
|
||||
<p>The front-end dependencies are those javascript files on which
|
||||
Converse.js directly depends and which will therefore be loaded in the browser.</p>
|
||||
<p>If you are curious to know what these different dependencies are:</p>
|
||||
<p>If you are curious to know what the different dependencies are:</p>
|
||||
<ul>
|
||||
<li><dl class="first docutils">
|
||||
<dt>Development dependencies:</dt>
|
||||
|
File diff suppressed because one or more lines are too long
@ -43,7 +43,7 @@ bottom of your page (after the closing *</body>* element).
|
||||
converse.initialize({
|
||||
auto_list_rooms: false,
|
||||
auto_subscribe: false,
|
||||
bosh_service_url: 'https://bind.opkode.im', // Please use this connection manager only for testing purposes
|
||||
bosh_service_url: 'https://bind.conversejs.org', // Please use this connection manager only for testing purposes
|
||||
hide_muc_server: false,
|
||||
i18n: locales.en, // Refer to ./locale/locales.js to see which locales are supported
|
||||
prebind: false,
|
||||
@ -138,7 +138,7 @@ This is the job of a connection manager. A connection manager can be either a
|
||||
standalone application or part of an XMPP server. `ejabberd`_ for example,
|
||||
includes a connection manager (but you have to enable it).
|
||||
|
||||
The demo on the `Converse.js homepage`_ uses a a connection manager located at https://bind.opkode.im.
|
||||
The demo on the `Converse.js homepage`_ uses a a connection manager located at https://bind.conversejs.org.
|
||||
This connection manager is for testing purposes only, please don't use it in
|
||||
production.
|
||||
|
||||
@ -318,7 +318,7 @@ Converse.js/Strophe.js and Facebook's XMPP server. That is because Facebook's
|
||||
XMPP server doesn't support BOSH natively.
|
||||
|
||||
The BOSH connection manager that I make available for
|
||||
testing purposes (at https://bind.opkode.im) uses `Punjab <https://github.com/twonds/punjab>`_,
|
||||
testing purposes (at https://bind.conversejs.org) uses `Punjab <https://github.com/twonds/punjab>`_,
|
||||
although there are quite a few other options available as well.
|
||||
|
||||
When you configure Converse.js, via its ``initialize`` method, you must specify the
|
||||
|
@ -193,7 +193,7 @@
|
||||
allow_otr: true,
|
||||
auto_list_rooms: false,
|
||||
auto_subscribe: false,
|
||||
bosh_service_url: 'https://bind.opkode.im', // Please use this connection manager only for testing purposes
|
||||
bosh_service_url: 'https://bind.conversejs.org', // 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
|
||||
|
@ -192,7 +192,7 @@
|
||||
converse.initialize({
|
||||
auto_list_rooms: false,
|
||||
auto_subscribe: false,
|
||||
bosh_service_url: 'https://bind.opkode.im', // Please use this connection manager only for testing purposes
|
||||
bosh_service_url: 'https://bind.conversejs.org', // Please use this connection manager only for testing purposes
|
||||
hide_muc_server: false,
|
||||
i18n: locales.en, // Refer to ./locale/locales.js to see which locales are supported
|
||||
prebind: false,
|
||||
|
Loading…
Reference in New Issue
Block a user