Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
a49c1f55
Commit
a49c1f55
authored
Oct 21, 2018
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Strophe.js, strophe plugins and backbone.browserStorage
parent
a7577930
Changes
9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
846 additions
and
1081 deletions
+846
-1081
.travis.yml
.travis.yml
+1
-1
dist/converse.js
dist/converse.js
+371
-511
package-lock.json
package-lock.json
+463
-553
package.json
package.json
+7
-9
src/converse-core.js
src/converse-core.js
+1
-1
src/converse-mam.js
src/converse-mam.js
+1
-1
src/converse-ping.js
src/converse-ping.js
+1
-1
src/utils/core.js
src/utils/core.js
+1
-1
webpack.config.js
webpack.config.js
+0
-3
No files found.
.travis.yml
View file @
a49c1f55
...
...
@@ -6,7 +6,7 @@ cache:
addons
:
chrome
:
stable
node_js
:
-
6
-
"
9"
install
:
make stamp-npm
before_script
:
make serve_bg
script
:
make check
...
...
dist/converse.js
View file @
a49c1f55
This diff is collapsed.
Click to expand it.
package-lock.json
View file @
a49c1f55
This diff is collapsed.
Click to expand it.
package.json
View file @
a49c1f55
...
...
@@ -32,15 +32,14 @@
"browser"
:
"*"
},
"devDependencies"
:
{
"
@babel/cli
"
:
"
^7.0.0-beta.48
"
,
"
@babel/core
"
:
"
^7.0.0-beta.48
"
,
"
@babel/preset-env
"
:
"
^7.0.0-beta.48
"
,
"
@babel/preset-es2015
"
:
"
^7.0.0-beta.49
"
,
"
@babel/cli
"
:
"
^7.1.0
"
,
"
@babel/core
"
:
"
^7.1.0
"
,
"
@babel/preset-env
"
:
"
^7.1.0
"
,
"
@fortawesome/fontawesome-free
"
:
"
5.3.1
"
,
"
awesomplete-avoid-xss
"
:
"
^1.1.2
"
,
"
babel-loader
"
:
"
^8.0.0
-beta.3
"
,
"
babel-loader
"
:
"
^8.0.0
"
,
"
backbone
"
:
"
1.3.3
"
,
"
backbone.browserStorage
"
:
"
jcbrand/Backbone.browserStorage#78e4a58f7cee10cad6af4fd5f3213331a396aa5a
"
,
"
backbone.browserStorage
"
:
"
0.0.4
"
,
"
backbone.nativeview
"
:
"
^0.3.3
"
,
"
backbone.overview
"
:
"
1.0.2
"
,
"
backbone.vdomview
"
:
"
1.0.1
"
,
...
...
@@ -78,10 +77,9 @@
"
sinon
"
:
"
^2.1.0
"
,
"
sizzle
"
:
"
^2.3.3
"
,
"
snabbdom
"
:
"
0.7.1
"
,
"
strophe.js
"
:
"
strophe/strophejs#a2692dcfdaf7d591254ac73f3d8584992b6f8da7
"
,
"
strophejs-plugin-ping
"
:
"
0.0.1
"
,
"
strophejs-plugin-ping
"
:
"
0.0.3
"
,
"
strophejs-plugin-register
"
:
"
0.0.1
"
,
"
strophejs-plugin-rsm
"
:
"
0.0.
1
"
,
"
strophejs-plugin-rsm
"
:
"
0.0.
2
"
,
"
twemoji
"
:
"
^11.0.1
"
,
"
uglify-es
"
:
"
^3.0.24
"
,
"
urijs
"
:
"
^1.19.1
"
,
...
...
src/converse-core.js
View file @
a49c1f55
...
...
@@ -13,7 +13,7 @@
"
i18n
"
,
"
utils/core
"
,
"
moment
"
,
"
strophe
"
,
"
strophe
.js
"
,
"
pluggable
"
,
"
backbone.noconflict
"
,
"
backbone.nativeview
"
,
...
...
src/converse-mam.js
View file @
a49c1f55
...
...
@@ -12,7 +12,7 @@
define
([
"
sizzle
"
,
"
converse-core
"
,
"
converse-disco
"
,
"
strophe
.
rsm
"
"
strophe
js-plugin-
rsm
"
],
factory
);
}(
this
,
function
(
sizzle
,
converse
)
{
"
use strict
"
;
...
...
src/converse-ping.js
View file @
a49c1f55
...
...
@@ -8,7 +8,7 @@
* as specified in XEP-0199 XMPP Ping.
*/
(
function
(
root
,
factory
)
{
define
([
"
converse-core
"
,
"
strophe
.
ping
"
],
factory
);
define
([
"
converse-core
"
,
"
strophe
js-plugin-
ping
"
],
factory
);
}(
this
,
function
(
converse
)
{
"
use strict
"
;
// Strophe methods for building stanzas
...
...
src/utils/core.js
View file @
a49c1f55
...
...
@@ -15,7 +15,7 @@
"
fast-text-encoding
"
,
"
lodash.noconflict
"
,
"
backbone
"
,
"
strophe
"
,
"
strophe
.js
"
,
"
uri
"
,
"
templates/audio.html
"
,
"
templates/file.html
"
,
...
...
webpack.config.js
View file @
a49c1f55
...
...
@@ -106,9 +106,6 @@ const config = {
"
snabbdom-eventlisteners
"
:
path
.
resolve
(
__dirname
,
"
node_modules/snabbdom/dist/snabbdom-eventlisteners
"
),
"
snabbdom-props
"
:
path
.
resolve
(
__dirname
,
"
node_modules/snabbdom/dist/snabbdom-props
"
),
"
snabbdom-style
"
:
path
.
resolve
(
__dirname
,
"
node_modules/snabbdom/dist/snabbdom-style
"
),
"
strophe
"
:
path
.
resolve
(
__dirname
,
"
node_modules/strophe.js/dist/strophe
"
),
"
strophe.ping
"
:
path
.
resolve
(
__dirname
,
"
node_modules/strophejs-plugin-ping/strophe.ping
"
),
"
strophe.rsm
"
:
path
.
resolve
(
__dirname
,
"
node_modules/strophejs-plugin-rsm/strophe.rsm
"
),
"
tovnode
"
:
path
.
resolve
(
__dirname
,
"
node_modules/snabbdom/dist/tovnode
"
),
"
underscore
"
:
path
.
resolve
(
__dirname
,
"
src/underscore-shim
"
),
"
uri
"
:
path
.
resolve
(
__dirname
,
"
node_modules/urijs/src/URI
"
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment