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
6c10d2b7
Commit
6c10d2b7
authored
Mar 04, 2015
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove strophe.muc.js completely. closes #307
parent
df724788
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
6 additions
and
1176 deletions
+6
-1176
converse.js
converse.js
+6
-1
main.js
main.js
+0
-2
non_amd.html
non_amd.html
+0
-1
src/deps-full.js
src/deps-full.js
+0
-1
src/deps-no-otr.js
src/deps-no-otr.js
+0
-1
src/deps-website-no-otr.js
src/deps-website-no-otr.js
+0
-1
src/deps-website.js
src/deps-website.js
+0
-1
src/strophe.muc.js
src/strophe.muc.js
+0
-1168
No files found.
converse.js
View file @
6c10d2b7
...
...
@@ -175,6 +175,11 @@
// Add Strophe Namespaces
Strophe
.
addNamespace
(
'
CHATSTATES
'
,
'
http://jabber.org/protocol/chatstates
'
);
Strophe
.
addNamespace
(
'
MUC_ADMIN
'
,
Strophe
.
NS
.
MUC
+
"
#admin
"
);
Strophe
.
addNamespace
(
'
MUC_OWNER
'
,
Strophe
.
NS
.
MUC
+
"
#owner
"
);
Strophe
.
addNamespace
(
'
MUC_REGISTER
'
,
"
jabber:iq:register
"
);
Strophe
.
addNamespace
(
'
MUC_ROOMCONF
'
,
Strophe
.
NS
.
MUC
+
"
#roomconfig
"
);
Strophe
.
addNamespace
(
'
MUC_USER
'
,
Strophe
.
NS
.
MUC
+
"
#user
"
);
Strophe
.
addNamespace
(
'
REGISTER
'
,
'
jabber:iq:register
'
);
Strophe
.
addNamespace
(
'
XFORM
'
,
'
jabber:x:data
'
);
...
...
@@ -2427,7 +2432,7 @@
createChatRoomMessage
:
function
(
text
)
{
var
msgid
=
converse
.
connection
.
getUniqueId
();
var
msg
=
$msg
({
to
:
this
.
getRoomJIDAndNick
(
),
to
:
this
.
model
.
get
(
'
jid
'
),
from
:
converse
.
connection
.
jid
,
type
:
'
groupchat
'
,
id
:
msgid
...
...
main.js
View file @
6c10d2b7
...
...
@@ -36,7 +36,6 @@ require.config({
"
strophe-websocket
"
:
"
components/strophejs/src/websocket
"
,
"
strophe-polyfill
"
:
"
components/strophejs/src/polyfills
"
,
"
strophe.disco
"
:
"
components/strophejs-plugins/disco/strophe.disco
"
,
"
strophe.muc
"
:
"
src/strophe.muc
"
,
"
strophe.roster
"
:
"
src/strophe.roster
"
,
"
strophe.vcard
"
:
"
src/strophe.vcard
"
,
"
text
"
:
'
components/requirejs-text/text
'
,
...
...
@@ -169,7 +168,6 @@ require.config({
'
crypto.sha256
'
:
{
deps
:
[
'
crypto.core
'
]
},
'
bigint
'
:
{
deps
:
[
'
crypto
'
]
},
'
strophe.disco
'
:
{
deps
:
[
'
strophe
'
]
},
'
strophe.muc
'
:
{
deps
:
[
'
strophe
'
]
},
'
strophe.register
'
:
{
deps
:
[
'
strophe
'
]
},
'
strophe.roster
'
:
{
deps
:
[
'
strophe
'
]
},
'
strophe.vcard
'
:
{
deps
:
[
'
strophe
'
]
}
...
...
non_amd.html
View file @
6c10d2b7
...
...
@@ -33,7 +33,6 @@
<script
type=
"text/javascript"
src=
"src/otr.js"
></script>
<script
type=
"text/javascript"
src=
"components/strophe/strophe.min.js"
></script>
<script
type=
"text/javascript"
src=
"src/strophe.roster.js"
></script>
<script
type=
"text/javascript"
src=
"components/strophe.muc/index.js"
></script>
<script
type=
"text/javascript"
src=
"components/strophejs-plugins/vcard/strophe.vcard.js"
></script>
<script
type=
"text/javascript"
src=
"components/strophejs-plugins/disco/strophe.disco.js"
></script>
<script
type=
"text/javascript"
src=
"components/underscore/underscore.js"
></script>
...
...
src/deps-full.js
View file @
6c10d2b7
...
...
@@ -8,7 +8,6 @@ define("converse-dependencies", [
"
jquery.browser
"
,
"
typeahead
"
,
"
strophe
"
,
"
strophe.muc
"
,
"
strophe.roster
"
,
"
strophe.vcard
"
,
"
strophe.disco
"
...
...
src/deps-no-otr.js
View file @
6c10d2b7
...
...
@@ -7,7 +7,6 @@ define("converse-dependencies", [
"
jquery.browser
"
,
"
typeahead
"
,
"
strophe
"
,
"
strophe.muc
"
,
"
strophe.roster
"
,
"
strophe.vcard
"
,
"
strophe.disco
"
...
...
src/deps-website-no-otr.js
View file @
6c10d2b7
...
...
@@ -9,7 +9,6 @@ define("converse-dependencies", [
"
jquery.easing
"
,
// XXX: Can be removed, only for https://conversejs.org
"
typeahead
"
,
"
strophe
"
,
"
strophe.muc
"
,
"
strophe.roster
"
,
"
strophe.vcard
"
,
"
strophe.disco
"
...
...
src/deps-website.js
View file @
6c10d2b7
...
...
@@ -5,7 +5,6 @@ define("converse-dependencies", [
"
otr
"
,
"
moment
"
,
"
strophe
"
,
"
strophe.muc
"
,
"
strophe.roster
"
,
"
strophe.vcard
"
,
"
strophe.disco
"
,
...
...
src/strophe.muc.js
deleted
100644 → 0
View file @
df724788
This diff is collapsed.
Click to expand it.
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