2016-07-22 14:27:33 +02:00
|
|
|
var config;
|
|
|
|
if (typeof(require) === 'undefined') {
|
|
|
|
/* XXX: Hack to work around r.js's stupid parsing.
|
|
|
|
* We want to save the configuration in a variable so that we can reuse it in
|
|
|
|
* tests/main.js.
|
|
|
|
*/
|
2017-02-27 11:34:57 +01:00
|
|
|
// eslint-disable-next-line
|
2016-07-22 14:27:33 +02:00
|
|
|
require = { // jshint ignore:line
|
|
|
|
config: function (c) {
|
|
|
|
config = c;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
require.config({
|
|
|
|
baseUrl: '.',
|
|
|
|
paths: {
|
2016-08-23 11:35:34 +02:00
|
|
|
"almond": "node_modules/almond/almond",
|
2017-02-14 11:19:01 +01:00
|
|
|
"awesomplete": "node_modules/awesomplete/awesomplete",
|
2016-08-11 18:54:31 +02:00
|
|
|
"backbone": "node_modules/backbone/backbone",
|
2017-04-21 15:52:16 +02:00
|
|
|
"backbone.noconflict": "src/backbone.noconflict",
|
2016-08-11 18:54:31 +02:00
|
|
|
"backbone.browserStorage": "node_modules/backbone.browserStorage/backbone.browserStorage",
|
|
|
|
"backbone.overview": "node_modules/backbone.overview/backbone.overview",
|
|
|
|
"eventemitter": "node_modules/otr/build/dep/eventemitter",
|
2017-04-05 11:01:31 +02:00
|
|
|
"es6-promise": "node_modules/es6-promise/dist/es6-promise",
|
2016-08-11 18:54:31 +02:00
|
|
|
"jquery": "node_modules/jquery/dist/jquery",
|
2017-04-21 15:52:16 +02:00
|
|
|
"jquery.noconflict": "src/jquery.noconflict",
|
2016-08-11 18:54:31 +02:00
|
|
|
"jquery.browser": "node_modules/jquery.browser/dist/jquery.browser",
|
2017-01-26 18:13:07 +01:00
|
|
|
"jquery.easing": "node_modules/jquery-easing/jquery.easing.1.3.umd", // XXX: Only required for https://conversejs.org website
|
2017-02-10 08:55:44 +01:00
|
|
|
"pluggable": "node_modules/pluggable.js/dist/pluggable",
|
2016-10-20 12:46:31 +02:00
|
|
|
"polyfill": "src/polyfill",
|
2016-12-07 20:45:29 +01:00
|
|
|
"sizzle": "node_modules/jquery/sizzle/dist/sizzle",
|
2017-02-25 22:17:46 +01:00
|
|
|
"strophe": "node_modules/strophe.js/strophe",
|
2017-02-16 12:49:21 +01:00
|
|
|
"strophe.disco": "node_modules/strophejs-plugin-disco/strophe.disco",
|
|
|
|
"strophe.ping": "node_modules/strophejs-plugin-ping/strophe.ping",
|
|
|
|
"strophe.rsm": "node_modules/strophejs-plugin-rsm/strophe.rsm",
|
|
|
|
"strophe.vcard": "node_modules/strophejs-plugin-vcard/strophe.vcard",
|
2016-09-23 13:10:23 +02:00
|
|
|
"text": "node_modules/text/text",
|
2016-07-22 14:27:33 +02:00
|
|
|
"typeahead": "components/typeahead.js/index",
|
2017-01-26 10:08:43 +01:00
|
|
|
"lodash": "node_modules/lodash/lodash",
|
2017-06-07 09:15:22 +02:00
|
|
|
"lodash.converter": "3rdparty/lodash.fp",
|
2017-04-21 15:52:16 +02:00
|
|
|
"lodash.noconflict": "src/lodash.noconflict",
|
2017-02-02 23:38:16 +01:00
|
|
|
"underscore": "src/underscore-shim",
|
2016-07-22 14:27:33 +02:00
|
|
|
"utils": "src/utils",
|
2017-01-26 10:08:43 +01:00
|
|
|
|
2016-07-22 14:27:33 +02:00
|
|
|
// Converse
|
2017-02-27 11:09:15 +01:00
|
|
|
"converse": "src/converse",
|
2017-06-13 21:07:42 +02:00
|
|
|
"inverse": "src/inverse",
|
2017-02-27 08:42:17 +01:00
|
|
|
|
2016-06-27 23:50:38 +02:00
|
|
|
"converse-bookmarks": "src/converse-bookmarks",
|
2016-07-22 14:27:33 +02:00
|
|
|
"converse-chatview": "src/converse-chatview",
|
|
|
|
"converse-controlbox": "src/converse-controlbox",
|
2017-04-21 12:20:26 +02:00
|
|
|
"converse-core": "src/converse-core",
|
2016-07-22 14:27:33 +02:00
|
|
|
"converse-dragresize": "src/converse-dragresize",
|
|
|
|
"converse-headline": "src/converse-headline",
|
2017-06-13 21:07:42 +02:00
|
|
|
"converse-inverse": "src/converse-inverse",
|
2016-07-22 14:27:33 +02:00
|
|
|
"converse-mam": "src/converse-mam",
|
|
|
|
"converse-minimize": "src/converse-minimize",
|
|
|
|
"converse-muc": "src/converse-muc",
|
2017-02-16 15:52:18 +01:00
|
|
|
"converse-muc-embedded": "src/converse-muc-embedded",
|
2016-07-22 14:27:33 +02:00
|
|
|
"converse-notification": "src/converse-notification",
|
|
|
|
"converse-otr": "src/converse-otr",
|
|
|
|
"converse-ping": "src/converse-ping",
|
|
|
|
"converse-register": "src/converse-register",
|
2017-04-29 13:30:47 +02:00
|
|
|
"converse-roomslist": "src/converse-roomslist",
|
2016-07-22 14:27:33 +02:00
|
|
|
"converse-rosterview": "src/converse-rosterview",
|
2017-04-21 12:20:26 +02:00
|
|
|
"converse-singleton": "src/converse-singleton",
|
2016-07-22 14:27:33 +02:00
|
|
|
"converse-vcard": "src/converse-vcard",
|
|
|
|
|
|
|
|
// Off-the-record-encryption
|
2017-02-15 20:33:47 +01:00
|
|
|
// "bigint": "node_modules/otr/build/dep/bigint",
|
|
|
|
"bigint": "3rdparty/bigint",
|
2017-02-14 16:34:32 +01:00
|
|
|
"crypto": "node_modules/otr/build/dep/crypto",
|
2016-08-11 18:54:31 +02:00
|
|
|
"salsa20": "node_modules/otr/build/dep/salsa20",
|
2017-02-14 16:34:32 +01:00
|
|
|
"otr": "node_modules/otr/build/otr",
|
2016-07-22 14:27:33 +02:00
|
|
|
|
|
|
|
// Locales paths
|
|
|
|
"locales": "src/locales",
|
2016-08-11 18:54:31 +02:00
|
|
|
"jed": "node_modules/jed/jed",
|
2016-07-22 14:27:33 +02:00
|
|
|
"af": "locale/af/LC_MESSAGES/converse.json",
|
|
|
|
"ca": "locale/ca/LC_MESSAGES/converse.json",
|
|
|
|
"de": "locale/de/LC_MESSAGES/converse.json",
|
|
|
|
"es": "locale/es/LC_MESSAGES/converse.json",
|
|
|
|
"fr": "locale/fr/LC_MESSAGES/converse.json",
|
|
|
|
"he": "locale/he/LC_MESSAGES/converse.json",
|
|
|
|
"hu": "locale/hu/LC_MESSAGES/converse.json",
|
|
|
|
"id": "locale/id/LC_MESSAGES/converse.json",
|
|
|
|
"it": "locale/it/LC_MESSAGES/converse.json",
|
|
|
|
"ja": "locale/ja/LC_MESSAGES/converse.json",
|
|
|
|
"nb": "locale/nb/LC_MESSAGES/converse.json",
|
|
|
|
"nl": "locale/nl/LC_MESSAGES/converse.json",
|
|
|
|
"pl": "locale/pl/LC_MESSAGES/converse.json",
|
|
|
|
"pt_BR": "locale/pt_BR/LC_MESSAGES/converse.json",
|
|
|
|
"ru": "locale/ru/LC_MESSAGES/converse.json",
|
|
|
|
"uk": "locale/uk/LC_MESSAGES/converse.json",
|
|
|
|
"zh": "locale/zh/LC_MESSAGES/converse.json",
|
|
|
|
|
2017-01-26 10:35:17 +01:00
|
|
|
"moment_with_locales": "3rdparty/moment_locales",
|
2016-07-22 14:27:33 +02:00
|
|
|
},
|
|
|
|
|
2017-04-06 21:55:52 +02:00
|
|
|
packages: [{
|
2017-05-01 12:40:29 +02:00
|
|
|
'name': 'moment',
|
2017-04-06 21:55:52 +02:00
|
|
|
// This location is relative to baseUrl. Choose bower_components
|
|
|
|
// or node_modules, depending on how moment was installed.
|
2017-05-01 12:40:29 +02:00
|
|
|
'location': 'node_modules/moment',
|
|
|
|
'main': 'moment'
|
|
|
|
}, {
|
|
|
|
'name': 'tpl',
|
|
|
|
'location': 'node_modules/lodash-template-loader',
|
|
|
|
'main': 'loader'
|
2017-04-06 21:55:52 +02:00
|
|
|
}],
|
|
|
|
|
2016-07-22 14:27:33 +02:00
|
|
|
map: {
|
2017-04-21 15:52:16 +02:00
|
|
|
// '*' means all modules will get the '*.noconflict' version
|
|
|
|
// as their dependency.
|
2017-01-26 18:13:07 +01:00
|
|
|
'*': {
|
2017-04-21 15:52:16 +02:00
|
|
|
'jquery': 'jquery.noconflict',
|
|
|
|
'backbone': 'backbone.noconflict',
|
2017-04-23 19:17:46 +02:00
|
|
|
'lodash': 'lodash.noconflict'
|
2017-02-02 23:38:16 +01:00
|
|
|
},
|
2017-04-21 15:52:16 +02:00
|
|
|
// '*.noconflict' wants the real module
|
|
|
|
// If this line was not here, there would
|
2016-07-22 14:27:33 +02:00
|
|
|
// be an unresolvable cyclic dependency.
|
2017-04-21 15:52:16 +02:00
|
|
|
'backbone.noconflict': { 'backbone': 'backbone' },
|
|
|
|
'jquery.noconflict': { 'jquery': 'jquery' },
|
|
|
|
'lodash.noconflict': { 'lodash': 'lodash' }
|
2016-07-22 14:27:33 +02:00
|
|
|
},
|
|
|
|
|
2017-01-26 18:13:07 +01:00
|
|
|
lodashLoader: {
|
2016-07-22 14:27:33 +02:00
|
|
|
// Configuration for requirejs-tpl
|
|
|
|
// Use Mustache style syntax for variable interpolation
|
2017-06-14 17:14:35 +02:00
|
|
|
root: "src/templates/",
|
2016-07-22 14:27:33 +02:00
|
|
|
templateSettings: {
|
2017-06-14 17:14:35 +02:00
|
|
|
"escape": /\{\{\{([\s\S]+?)\}\}\}/g,
|
|
|
|
"evaluate": /\{\[([\s\S]+?)\]\}/g,
|
|
|
|
"interpolate": /\{\{([\s\S]+?)\}\}/g
|
2016-07-22 14:27:33 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// define module dependencies for modules not using define
|
|
|
|
shim: {
|
2017-05-01 12:40:29 +02:00
|
|
|
'awesomplete': { exports: 'Awesomplete' }
|
2016-07-22 14:27:33 +02:00
|
|
|
}
|
|
|
|
});
|