Commit 4b48e8ac authored by JC Brand's avatar JC Brand

Merge branch 'master' into gh-pages

parents c62a4ae5 2d4a14ac
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)
------------------ ------------------
......
...@@ -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);
}
};
})); }));
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -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>
......
(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'
......
(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)); });
})); }));
...@@ -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>
...@@ -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();
}); });
}
);
}
);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment