Skip to content
This repository was archived by the owner on Nov 21, 2024. It is now read-only.

Commit cd048fd

Browse files
committed
Merge branch 'dev'
Update version to 2.0.0
2 parents a9dcafe + 7e43947 commit cd048fd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+7751
-14889
lines changed

.editorconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
root = true
4+
5+
[*]
6+
end_of_line = lf
7+
insert_final_newline = true
8+
indent_style = tab
9+
indent_size = 4
10+
charset = utf-8
11+
trim_trailing_whitespace = true

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
res/notify.m4a binary
2+
res/notify.ogg binary
3+
res/notify.mp3 binary

.gitignore

+9-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,12 @@ example/.htaccess
55
.idea
66
.ndproj/Data
77
.ndproj/Menu.txt
8-
node_modules
8+
node_modules
9+
bower_components
10+
candy.bundle.*
11+
candy.min.*
12+
libs.bundle.*
13+
libs.min.*
14+
.vagrant
15+
*.log
16+
lcov.info

.gitmodules

-12
This file was deleted.

.jshintrc

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,7 @@
88
"undef": true,
99
"unused": true,
1010
"trailing": true,
11-
"maxdepth": 4
12-
}
11+
"maxdepth": 5,
12+
"laxcomma": true,
13+
"browser": true
14+
}

.travis.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
language: node_js
2+
node_js:
3+
- '0.10'
4+
env:
5+
global:
6+
- SAUCE_USERNAME: candy-chat-ci
7+
- SAUCE_ACCESS_KEY: 6c3e7f58-b230-4b91-8bcb-290cf28c1457
8+
- CANDY_VAGRANT: false
9+
before_script:
10+
- sudo apt-get update
11+
- sudo apt-get install -y nginx
12+
- sudo mkdir -p /usr/share/nginx/html
13+
- sudo cp ${TRAVIS_BUILD_DIR}/devbox/nginx-default.conf /etc/nginx/sites-available/default
14+
- sudo /etc/init.d/nginx restart
15+
- sudo ln -fs ${TRAVIS_BUILD_DIR} /usr/share/nginx/html/candy
16+
- sudo ln -fs ${TRAVIS_BUILD_DIR}/devbox/index.html /usr/share/nginx/html/index.html
17+
- sudo apt-get install -y naturaldocs
18+
- npm install -g grunt-cli bower
19+
- npm install
20+
- bower install
21+
script:
22+
- grunt ci

CONTRIBUTING.md

100644100755
+20-10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
## Learn & listen
99

10+
[![Gitter chat](https://badges.gitter.im/candy-chat.png)](https://gitter.im/candy-chat)
11+
1012
* [Mailing list](http://groups.google.com/group/candy-chat)
1113
* yes, non-gmail users can signup as well
1214
* [FAQ](https://github.com/candy-chat/candy/wiki/Frequently-Asked-Questions)
@@ -21,8 +23,7 @@ A few hopefully helpful hints to contributing to Candy
2123
#### Using vagrant
2224
1. [Fork](https://help.github.com/articles/fork-a-repo) Candy
2325
2. [Install Vagrant](http://vagrantup.com/)
24-
3. Follow instructions [for Candy Vagrant](https://github.com/candy-chat/vagrant)
25-
4. Change the remote in the `candy` and `candy-plugins` repos: `git remote set-url origin git://github.com/YOURNAME/candy` (or candy-plugins)
26+
3. Run `vagrant up`.
2627
5. Create a branch based on the `dev` branch (`git checkout -B my-awesome-feature`)
2728
6. Run `grunt watch` to automatically run jshint (syntax checker) and the build of `candy.bundle.js` and `candy.min.js` while developing.
2829
7. Make your changes, fix eventual *jshint* errors & push them back to your fork
@@ -34,13 +35,22 @@ Please note that you should have a working XMPP server to test your changes (the
3435

3536
1. [Fork](https://help.github.com/articles/fork-a-repo) Candy
3637
2. Clone your fork
37-
2. Checkout out `dev` branch (`git checkout dev`) & Update git submodules `git submodule update --init`
38-
3. Install [Node.js](http://nodejs.org/)
39-
4. Install [Grunt](http://gruntjs.com/) (`npm install -g grunt-cli`)
40-
5. Install npm dependencies (`npm install` in candy root directory)
41-
6. Create a branch based on the `dev` branch (`git checkout -B my-awesome-feature`)
42-
7. Run `grunt watch` to automatically run jshint (syntax checker) and the build of `candy.bundle.js` and `candy.min.js` while developing.
43-
8. Make your changes, fix eventual *jshint* errors & push them back to your fork
44-
9. Create a [pull request](https://help.github.com/articles/using-pull-requests)
38+
3. Checkout out `dev` branch (`git checkout dev`)
39+
4. Install [Node.js](http://nodejs.org/)
40+
5. Install [Grunt](http://gruntjs.com/) (`npm install -g grunt-cli`)
41+
6. Install [Bower](http://bower.io/) (`npm install -g bower`)
42+
7. Install npm dependencies (`npm install` in candy root directory)
43+
8. Install bower dependencies (`bower install` in candy root directory)
44+
9. Create a branch based on the `dev` branch (`git checkout -B my-awesome-feature`)
45+
10. Run `grunt watch` to automatically run jshint (syntax checker) and the build of `candy.bundle.js` and `candy.min.js` while developing.
46+
11. Make your changes, fix eventual *jshint* errors & push them back to your fork
47+
12. Create a [pull request](https://help.github.com/articles/using-pull-requests)
4548

4649
In case you have any questions, don't hesitate to ask on the [Mailing list](http://groups.google.com/group/candy-chat).
50+
51+
### Running tests
52+
53+
* Tests are run using [Intern](http://theintern.io).
54+
* `grunt` and `grunt watch` will each run unit tests in Chrome on Linux (for fast feedback).
55+
* `grunt test` will run both unit and integration tests in a variety of environments. Tests are run using Selenium Standalone and Phantom.JS while developing, and on Sauce Labs in CI or using `grunt test`.
56+
* If you don't want to use the Vagrant box to run Selenium/PhantomJS, set `CANDY_VAGRANT='false'` to run tests.

Gruntfile.js

+82-21
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
'use strict';
22

3+
var localInternConfig = process.env.CANDY_VAGRANT === 'false' ? 'tests/intern.local' : 'tests/intern.vagrant';
4+
35
module.exports = function(grunt) {
46

57
// Project configuration.
68
grunt.initConfig({
79
pkg: grunt.file.readJSON('package.json'),
8-
910
jshint: {
10-
all: ['Gruntfile.js', './src/**/*.js'],
11+
all: ['Gruntfile.js', './src/**/*.js', './tests/**/*.js'],
1112
options: {
1213
jshintrc: "./.jshintrc",
1314
reporter: require('jshint-stylish')
@@ -30,8 +31,11 @@ module.exports = function(grunt) {
3031
'src/candy.js', 'src/core.js', 'src/view.js',
3132
'src/util.js', 'src/core/action.js',
3233
'src/core/chatRoom.js', 'src/core/chatRoster.js',
33-
'src/core/chatUser.js', 'src/core/event.js',
34-
'src/view/observer.js', 'src/view/pane.js',
34+
'src/core/chatUser.js', 'src/core/contact.js',
35+
'src/core/event.js', 'src/view/observer.js',
36+
'src/view/pane/chat.js', 'src/view/pane/message.js',
37+
'src/view/pane/privateRoom.js', 'src/view/pane/room.js',
38+
'src/view/pane/roster.js', 'src/view/pane/window.js',
3539
'src/view/template.js', 'src/view/translation.js'
3640
]
3741
},
@@ -53,14 +57,15 @@ module.exports = function(grunt) {
5357
},
5458
libs: {
5559
files: {
56-
'libs/libs.bundle.js': [
57-
'libs/strophejs/strophe.js',
58-
'libs/strophejs-plugins/muc/strophe.muc.js',
59-
'libs/strophejs-plugins/disco/strophe.disco.js',
60-
'libs/strophejs-plugins/caps/strophe.caps.jsonly.js',
61-
'libs/mustache.js/mustache.js',
62-
'libs/jquery-i18n/jquery.i18n.js',
63-
'libs/dateformat/dateFormat.js'
60+
'libs.bundle.js': [
61+
'bower_components/strophe/strophe.js',
62+
'bower_components/strophejs-plugins/muc/strophe.muc.js',
63+
'bower_components/strophejs-plugins/roster/strophe.roster.js',
64+
'bower_components/strophejs-plugins/disco/strophe.disco.js',
65+
'bower_components/strophejs-plugins/caps/strophe.caps.jsonly.js',
66+
'bower_components/mustache/mustache.js',
67+
'bower_components/jquery-i18n/jquery.i18n.js',
68+
'vendor_libs/dateformat/dateFormat.js'
6469
]
6570
},
6671
options: {
@@ -73,23 +78,38 @@ module.exports = function(grunt) {
7378
},
7479
'libs-min': {
7580
files: {
76-
'libs/libs.min.js': ['libs/libs.bundle.js']
81+
'libs.min.js': ['libs.bundle.js']
7782
}
7883
}
7984
},
8085
watch: {
86+
clear: {
87+
files: ['src/*.js', 'src/**/*.js', 'tests/**/*.js'],
88+
tasks: ['clear']
89+
},
90+
grunt: {
91+
files: ['Gruntfile.js']
92+
},
8193
bundle: {
82-
files: ['src/*.js', 'src/**/*.js'],
83-
tasks: ['jshint', 'uglify:bundle', 'uglify:min', 'notify:bundle']
94+
files: ['src/**/*.js'],
95+
tasks: ['todo:src', 'jshint', 'uglify:bundle', 'uglify:min', 'notify:bundle', 'intern:unit']
8496
},
8597
libs: {
86-
files: ['libs/*/**/*.js'],
98+
files: ['bower_components/*/**/*.js', 'vendor_libs/*/**/*.js'],
8799
tasks: ['uglify:libs', 'uglify:libs-min', 'notify:libs']
100+
},
101+
tests: {
102+
files: ['tests/candy/unit/**/*.js'],
103+
tasks: ['todo:tests', 'jshint', 'intern:unit']
104+
},
105+
functional_tests: {
106+
files: ['tests/candy/functional/**/*.js'],
107+
tasks: ['todo:tests', 'jshint', 'intern:functional']
88108
}
89109
},
90110
natural_docs: {
91111
all: {
92-
bin: process.env.NATURALDOCS_DIR + '/NaturalDocs',
112+
bin: process.env.NATURALDOCS_DIR ? process.env.NATURALDOCS_DIR + '/NaturalDocs' : 'naturaldocs',
93113
flags: ['-r'],
94114
inputs: ['./src'],
95115
output: './docs',
@@ -98,7 +118,7 @@ module.exports = function(grunt) {
98118
},
99119
clean: {
100120
bundle: ['./candy.bundle.js', './candy.bundle.map', './candy.min.js'],
101-
libs: ['./libs/libs.bundle.js', './libs/libs.bundle.map', './libs/libs.min.js'],
121+
libs: ['./libs.bundle.js', './libs.bundle.map', './libs.min.js'],
102122
docs: ['./docs']
103123
},
104124
mkdir: {
@@ -129,6 +149,41 @@ module.exports = function(grunt) {
129149
message: 'JsHint & bundling done'
130150
}
131151
}
152+
},
153+
intern: {
154+
all: {
155+
options: {
156+
runType: 'runner',
157+
config: 'tests/intern'
158+
}
159+
},
160+
unit: {
161+
options: {
162+
runType: 'runner',
163+
config: localInternConfig,
164+
functionalSuites: []
165+
}
166+
},
167+
functional: {
168+
options: {
169+
runType: 'runner',
170+
config: localInternConfig,
171+
suites: []
172+
}
173+
}
174+
},
175+
coveralls: {
176+
options: {
177+
force: true // prevent from failing CI build if coveralls is down etc.
178+
},
179+
all: {
180+
src: 'lcov.info',
181+
}
182+
},
183+
todo: {
184+
options: {},
185+
src: ['src/**/*.js'],
186+
tests: ['tests/**/*.js']
132187
}
133188
});
134189

@@ -140,10 +195,16 @@ module.exports = function(grunt) {
140195
grunt.loadNpmTasks('grunt-mkdir');
141196
grunt.loadNpmTasks('grunt-notify');
142197
grunt.loadNpmTasks('grunt-sync-pkg');
198+
grunt.loadNpmTasks('intern');
199+
grunt.loadNpmTasks('grunt-clear');
200+
grunt.loadNpmTasks('grunt-coveralls');
201+
grunt.loadNpmTasks('grunt-todo');
143202

203+
grunt.registerTask('test', ['intern:all']);
204+
grunt.registerTask('ci', ['todo', 'jshint', 'build', 'intern:all', 'coveralls:all', 'docs']);
205+
grunt.registerTask('build', ['uglify:libs', 'uglify:libs-min', 'uglify:bundle', 'uglify:min']);
144206
grunt.registerTask('default', [
145-
'jshint', 'uglify:libs', 'uglify:libs-min',
146-
'uglify:bundle', 'uglify:min', 'notify:default'
207+
'jshint', 'build', 'notify:default', 'intern:unit'
147208
]);
148209
grunt.registerTask('docs', ['mkdir:docs', 'natural_docs', 'notify:docs']);
149-
};
210+
};

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Candy — a JavaScript-based multi-user chat client
22
==================================================
33

4+
[![Build Status](https://travis-ci.org/candy-chat/candy.png?branch=dev)](https://travis-ci.org/candy-chat/candy)
5+
[![Coverage Status](https://coveralls.io/repos/candy-chat/candy/badge.png?branch=dev)](https://coveralls.io/r/candy-chat/candy)
6+
47
Visit the official project page: http://candy-chat.github.io/candy
58

69
Features
@@ -11,7 +14,7 @@ Features
1114
- 100% well-documented JavaScript source code
1215
- Built for Jabber (XMPP), using famous technologies
1316
- Used and approved in a productive environment with up to 400 concurrent users
14-
- Works with all major web browsers including IE7
17+
- Works with all major web browsers including IE9
1518

1619
Plugins
1720
-------
@@ -20,6 +23,6 @@ If you wish to add new functionality (to your candy installation) or contribute
2023
Support & Community
2124
-------------------
2225
Take a look at our [FAQ](https://github.com/candy-chat/candy/wiki/Frequently-Asked-Questions). If it doesn't solve your questions, you're welcome to join our [Mailinglist on Google Groups](http://groups.google.com/group/candy-chat).
23-
You don't need to have a Gmail account for it.
26+
You don't need to have a Gmail account for it.
2427

2528
[![githalytics.com alpha](https://cruel-carlota.pagodabox.com/a41a8075608abeaf99db685d7ef29cf6 "githalytics.com")](http://githalytics.com/candy-chat/candy)

Vagrantfile

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# -*- mode: ruby -*-
2+
# vi: set ft=ruby :
3+
4+
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
5+
VAGRANTFILE_API_VERSION = "2"
6+
7+
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
8+
config.vm.box = "ubuntu/trusty64"
9+
config.vm.network :forwarded_port, guest: 80, host: 8080
10+
config.vm.network :forwarded_port, guest: 5280, host: 5280
11+
config.vm.network :forwarded_port, guest: 4444, host: 4444
12+
config.vm.network :private_network, ip: '192.168.88.4'
13+
14+
config.vm.provision :shell, :path => "devbox/provisioning.sh"
15+
16+
config.vm.provider "virtualbox" do |v|
17+
v.name = "candy"
18+
v.customize ["modifyvm", :id, "--memory", 768]
19+
end
20+
end

bower.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,12 @@
2929
"bower_components",
3030
"test",
3131
"tests"
32-
]
33-
}
32+
],
33+
"dependencies": {
34+
"jquery": "~1.10.2",
35+
"strophe": "1.1.3",
36+
"strophejs-plugins": "benlangfeld/strophejs-plugins#30fb089457addc37e01d69c3536dee868a90a9ad",
37+
"mustache": "0.3.0",
38+
"jquery-i18n": "1.1.1"
39+
}
40+
}

0 commit comments

Comments
 (0)