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
4b48e8ac
Commit
4b48e8ac
authored
Aug 05, 2013
by
JC Brand
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into gh-pages
parents
c62a4ae5
2d4a14ac
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
155 additions
and
128 deletions
+155
-128
CHANGES.rst
CHANGES.rst
+5
-0
converse.js
converse.js
+14
-6
converse.min.js
converse.min.js
+1
-1
index.html
index.html
+3
-3
spec/ChatRoomSpec.js
spec/ChatRoomSpec.js
+3
-4
spec/MainSpec.js
spec/MainSpec.js
+5
-6
test_minified.html
test_minified.html
+84
-76
tests_main.js
tests_main.js
+40
-32
No files found.
CHANGES.rst
View file @
4b48e8ac
Changelog
Changelog
=========
=========
0.5.2 (Unreleased)
------------------
- Important security update. Don't expose the Strophe connection object globally. [jcbrand]
0.5.1 (2013-08-04)
0.5.1 (2013-08-04)
------------------
------------------
...
...
converse.js
View file @
4b48e8ac
...
@@ -43,6 +43,7 @@
...
@@ -43,6 +43,7 @@
var
converse
=
{};
var
converse
=
{};
converse
.
initialize
=
function
(
settings
)
{
converse
.
initialize
=
function
(
settings
)
{
// Default values
// Default values
var
converse
=
this
;
this
.
animate
=
true
;
this
.
animate
=
true
;
this
.
auto_list_rooms
=
false
;
this
.
auto_list_rooms
=
false
;
this
.
auto_subscribe
=
false
;
this
.
auto_subscribe
=
false
;
...
@@ -54,15 +55,14 @@
...
@@ -54,15 +55,14 @@
this
.
xhr_user_search
=
false
;
this
.
xhr_user_search
=
false
;
_
.
extend
(
this
,
settings
);
_
.
extend
(
this
,
settings
);
var
__
=
$
.
proxy
(
function
(
str
)
{
var
__
=
function
(
str
)
{
var
t
=
this
.
i18n
.
translate
(
str
);
var
t
=
converse
.
i18n
.
translate
(
str
);
if
(
arguments
.
length
>
1
)
{
if
(
arguments
.
length
>
1
)
{
return
t
.
fetch
.
apply
(
t
,
[].
slice
.
call
(
arguments
,
1
));
return
t
.
fetch
.
apply
(
t
,
[].
slice
.
call
(
arguments
,
1
));
}
else
{
}
else
{
return
t
.
fetch
();
return
t
.
fetch
();
}
}
};
}
,
this
)
;
this
.
msg_counter
=
0
;
this
.
msg_counter
=
0
;
this
.
autoLink
=
function
(
text
)
{
this
.
autoLink
=
function
(
text
)
{
// Convert URLs into hyperlinks
// Convert URLs into hyperlinks
...
@@ -2646,7 +2646,7 @@
...
@@ -2646,7 +2646,7 @@
},
this
));
},
this
));
this
.
giveFeedback
(
__
(
'
Online Contacts
'
));
this
.
giveFeedback
(
__
(
'
Online Contacts
'
));
if
(
callback
)
{
if
(
callback
)
{
callback
();
callback
(
this
);
}
}
},
this
));
},
this
));
};
};
...
@@ -2664,5 +2664,13 @@
...
@@ -2664,5 +2664,13 @@
this
.
toggleControlBox
();
this
.
toggleControlBox
();
}
}
};
};
return
converse
;
return
{
'
initialize
'
:
function
(
settings
)
{
converse
.
initialize
(
settings
);
},
'
onConnected
'
:
function
(
connection
,
callback
)
{
// onConnected can only be called after initialize has been called.
converse
.
onConnected
(
connection
,
callback
);
}
};
}));
}));
converse.min.js
View file @
4b48e8ac
This source diff could not be displayed because it is too large. You can
view the blob
instead.
index.html
View file @
4b48e8ac
...
@@ -19,8 +19,8 @@
...
@@ -19,8 +19,8 @@
<h1
id=
"project_title"
><a
href=
"http://conversejs.org"
>
Converse.js
</a></h1>
<h1
id=
"project_title"
><a
href=
"http://conversejs.org"
>
Converse.js
</a></h1>
<h2
id=
"project_tagline"
>
An XMPP chat client for your website
</h2>
<h2
id=
"project_tagline"
>
An XMPP chat client for your website
</h2>
<section
id=
"downloads"
>
<section
id=
"downloads"
>
<a
class=
"zip_download_link"
href=
"https://github.com/jcbrand/converse.js/archive/v0.5.
1
.zip"
>
Download the latest release as a .zip file
</a>
<a
class=
"zip_download_link"
href=
"https://github.com/jcbrand/converse.js/archive/v0.5.
2
.zip"
>
Download the latest release as a .zip file
</a>
<a
class=
"tar_download_link"
href=
"https://github.com/jcbrand/converse.js/archive/v0.5.
1
.tar.gz"
>
Download the latest release as a tar.gz file
</a>
<a
class=
"tar_download_link"
href=
"https://github.com/jcbrand/converse.js/archive/v0.5.
2
.tar.gz"
>
Download the latest release as a tar.gz file
</a>
</section>
</section>
</header>
</header>
</div>
</div>
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
<div
id=
"main_content_wrap"
class=
"outer"
>
<div
id=
"main_content_wrap"
class=
"outer"
>
<section
id=
"main_content"
class=
"inner"
>
<section
id=
"main_content"
class=
"inner"
>
<p><strong>
Converse.js
</strong>
is an open source
,
webchat client, that
<p><strong>
Converse.js
</strong>
is an open source webchat client, that
runs in the browser and can be integrated into any website.
</p>
runs in the browser and can be integrated into any website.
</p>
<p>
It's similar to
<a
href=
"https://www.facebook.com/sitetour/chat.php"
target=
"_blank"
>
Facebook chat
</a>
, but also supports multi-user chatrooms.
</p>
<p>
It's similar to
<a
href=
"https://www.facebook.com/sitetour/chat.php"
target=
"_blank"
>
Facebook chat
</a>
, but also supports multi-user chatrooms.
</p>
...
...
spec/ChatRoomSpec.js
View file @
4b48e8ac
(
function
(
root
,
factory
)
{
(
function
(
root
,
factory
)
{
define
([
define
([
"
converse
"
,
"
mock
"
"
mock
"
],
function
(
converse
,
mock_connection
)
{
],
function
(
mock_connection
)
{
return
factory
(
converse
,
mock_connection
);
return
factory
(
mock_connection
);
}
}
);
);
}
(
this
,
function
(
converse
,
mock_connection
)
{
}
(
this
,
function
(
mock_connection
)
{
return
describe
(
"
ChatRooms
"
,
$
.
proxy
(
function
()
{
return
describe
(
"
ChatRooms
"
,
$
.
proxy
(
function
()
{
var
chatroom_names
=
[
var
chatroom_names
=
[
'
Dyon van de Wege
'
,
'
Thomas Kalb
'
,
'
Dirk Theissen
'
,
'
Felix Hofmann
'
,
'
Ka Lek
'
,
'
Anne Ebersbacher
'
'
Dyon van de Wege
'
,
'
Thomas Kalb
'
,
'
Dirk Theissen
'
,
'
Felix Hofmann
'
,
'
Ka Lek
'
,
'
Anne Ebersbacher
'
...
...
spec/MainSpec.js
View file @
4b48e8ac
(
function
(
root
,
factory
)
{
(
function
(
root
,
factory
)
{
define
([
define
([
"
converse
"
,
"
mock
"
"
mock
"
],
function
(
converse
,
mock_connection
)
{
],
function
(
mock_connection
)
{
return
factory
(
converse
,
mock_connection
);
return
factory
(
mock_connection
);
}
}
);
);
}
(
this
,
function
(
converse
,
mock_connection
)
{
}
(
this
,
function
(
mock_connection
)
{
return
describe
(
"
Converse.js
"
,
$
.
proxy
(
function
()
{
return
describe
(
"
Converse.js
"
,
function
()
{
// Names from http://www.fakenamegenerator.com/
// Names from http://www.fakenamegenerator.com/
var
req_names
=
[
var
req_names
=
[
'
Louw Spekman
'
,
'
Mohamad Stet
'
,
'
Dominik Beyer
'
'
Louw Spekman
'
,
'
Mohamad Stet
'
,
'
Dominik Beyer
'
...
@@ -651,5 +650,5 @@
...
@@ -651,5 +650,5 @@
},
converse
));
},
converse
));
},
converse
));
},
converse
));
},
converse
));
},
converse
));
}
,
converse
)
);
});
}));
}));
test_minified.html
View file @
4b48e8ac
...
@@ -7,8 +7,8 @@
...
@@ -7,8 +7,8 @@
<link
rel=
"shortcut icon"
type=
"image/png"
href=
"components/jasmine/images/jasmine_favicon.png"
>
<link
rel=
"shortcut icon"
type=
"image/png"
href=
"components/jasmine/images/jasmine_favicon.png"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"components/jasmine/src/html/jasmine.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"components/jasmine/src/html/jasmine.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
media=
"screen"
href=
"stylesheets/stylesheet.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
media=
"screen"
href=
"stylesheets/stylesheet.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
media=
"screen"
href=
"converse
-0.5.0
.min.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
media=
"screen"
href=
"converse.min.css"
>
<script
src=
"converse
-0.5.0
.min.js"
></script>
<script
src=
"converse.min.js"
></script>
<script
src=
"components/jasmine/lib/jasmine-core/jasmine.js"
></script>
<script
src=
"components/jasmine/lib/jasmine-core/jasmine.js"
></script>
<script
src=
"components/jasmine/lib/jasmine-core/jasmine-html.js"
></script>
<script
src=
"components/jasmine/lib/jasmine-core/jasmine-html.js"
></script>
<script
src=
"node_modules/jasmine-reporters/src/jasmine.console_reporter.js"
></script>
<script
src=
"node_modules/jasmine-reporters/src/jasmine.console_reporter.js"
></script>
...
@@ -33,11 +33,6 @@
...
@@ -33,11 +33,6 @@
</div>
</div>
<script>
<script>
require
([
'
converse
'
,
"
spec/MainSpec
"
,
"
spec/ChatRoomSpec
"
],
function
(
converse
)
{
var
mock_connection
=
{
var
mock_connection
=
{
'
muc
'
:
{
'
muc
'
:
{
'
listRooms
'
:
function
()
{},
'
listRooms
'
:
function
()
{},
...
@@ -81,7 +76,10 @@
...
@@ -81,7 +76,10 @@
'
items
'
:
function
()
{}
'
items
'
:
function
()
{}
}
}
};
};
require
([
"
jquery
"
,
"
converse
"
,
],
function
(
$
,
converse
)
{
// Set up converse.js
// Set up converse.js
window
.
localStorage
.
clear
();
window
.
localStorage
.
clear
();
converse
.
initialize
({
converse
.
initialize
({
...
@@ -90,8 +88,14 @@
...
@@ -90,8 +88,14 @@
auto_subscribe
:
false
,
auto_subscribe
:
false
,
animate
:
false
animate
:
false
});
});
converse
.
onConnected
(
mock_connection
);
converse
.
onConnected
(
mock_connection
,
function
(
converse
)
{
window
.
converse
=
converse
;
require
([
"
spec/MainSpec
"
,
"
spec/ChatRoomSpec
"
],
function
()
{
// Jasmine stuff
// Jasmine stuff
var
jasmineEnv
=
jasmine
.
getEnv
();
var
jasmineEnv
=
jasmine
.
getEnv
();
if
(
/PhantomJS/
.
test
(
navigator
.
userAgent
))
{
if
(
/PhantomJS/
.
test
(
navigator
.
userAgent
))
{
...
@@ -110,6 +114,10 @@
...
@@ -110,6 +114,10 @@
}
}
jasmineEnv
.
execute
();
jasmineEnv
.
execute
();
});
});
}
);
}
);
</script>
</script>
</body>
</body>
</html>
</html>
tests_main.js
View file @
4b48e8ac
...
@@ -60,13 +60,8 @@ require([
...
@@ -60,13 +60,8 @@ require([
"
jquery
"
,
"
jquery
"
,
"
converse
"
,
"
converse
"
,
"
mock
"
,
"
mock
"
,
"
jasmine-html
"
,
"
jasmine-html
"
"
jasmine-console-reporter
"
,
"
jasmine-junit-reporter
"
,
"
spec/MainSpec
"
,
"
spec/ChatRoomSpec
"
],
function
(
$
,
converse
,
mock_connection
,
jasmine
)
{
],
function
(
$
,
converse
,
mock_connection
,
jasmine
)
{
// Set up converse.js
// Set up converse.js
window
.
localStorage
.
clear
();
window
.
localStorage
.
clear
();
converse
.
initialize
({
converse
.
initialize
({
...
@@ -75,7 +70,16 @@ require([
...
@@ -75,7 +70,16 @@ require([
auto_subscribe
:
false
,
auto_subscribe
:
false
,
animate
:
false
animate
:
false
});
});
converse
.
onConnected
(
mock_connection
,
function
(
converse
)
{
window
.
converse
=
converse
;
require
([
"
jasmine-console-reporter
"
,
"
jasmine-junit-reporter
"
,
"
spec/MainSpec
"
,
"
spec/ChatRoomSpec
"
],
function
()
{
// Jasmine stuff
// Jasmine stuff
var
jasmineEnv
=
jasmine
.
getEnv
();
var
jasmineEnv
=
jasmine
.
getEnv
();
if
(
/PhantomJS/
.
test
(
navigator
.
userAgent
))
{
if
(
/PhantomJS/
.
test
(
navigator
.
userAgent
))
{
...
@@ -92,5 +96,9 @@ require([
...
@@ -92,5 +96,9 @@ require([
};
};
jasmineEnv
.
updateInterval
=
200
;
jasmineEnv
.
updateInterval
=
200
;
}
}
converse
.
onConnected
(
mock_connection
,
$
.
proxy
(
jasmineEnv
.
execute
,
jasmineEnv
));
jasmineEnv
.
execute
();
});
});
}
);
}
);
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