├── .bowerrc ├── .gitignore ├── Gruntfile.coffee ├── MIT-LICENSE ├── Procfile ├── README.md ├── app ├── controller.js ├── errors.js ├── models.js ├── sse.js └── views │ ├── board.jade │ ├── help.jade │ ├── index.jade │ ├── layout.jade │ └── login.jade ├── assets ├── app.coffee ├── collections │ ├── lines.coffee │ └── postits.coffee ├── css │ ├── board.styl │ ├── font-awesome.styl │ ├── generic.styl │ ├── pages.styl │ └── persona-buttons.css ├── helpers │ ├── colors.coffee │ ├── dnd.coffee │ ├── fontsize.coffee │ └── touch.coffee ├── js │ ├── index.js │ └── login.js ├── models │ ├── board.coffee │ ├── line.coffee │ ├── postit.coffee │ └── viewport.coffee ├── source.coffee ├── templates │ ├── board.hbs │ ├── line.hbs │ ├── postit.hbs │ └── trash.hbs └── views │ ├── board.coffee │ ├── line.coffee │ ├── lines.coffee │ ├── postit.coffee │ ├── postits.coffee │ └── trash.coffee ├── bower.json ├── config ├── deploy.rb.example ├── nginx │ ├── koalab.lo │ └── koalab.lo.jerome └── server.json.example ├── koalab.js ├── package.json └── public ├── apple-touch-icon.png ├── favicon.png ├── fonts ├── FontAwesome.woff └── IndieFlower.woff ├── images ├── background.png ├── diagonale.png ├── home │ └── screenshot.png ├── horizontal.png ├── koala.png ├── koalab-logo.png ├── note_bleu.png ├── note_bleu_roll.png ├── note_jaune.png ├── note_jaune_roll.png ├── note_rose.png ├── note_rose_roll.png ├── note_vert.png ├── note_vert_roll.png ├── resize.png ├── trait.png └── vertical.png └── screenshots └── board.png /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node koalab.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/README.md -------------------------------------------------------------------------------- /app/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/app/controller.js -------------------------------------------------------------------------------- /app/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/app/errors.js -------------------------------------------------------------------------------- /app/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/app/models.js -------------------------------------------------------------------------------- /app/sse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/app/sse.js -------------------------------------------------------------------------------- /app/views/board.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/app/views/board.jade -------------------------------------------------------------------------------- /app/views/help.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/app/views/help.jade -------------------------------------------------------------------------------- /app/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/app/views/index.jade -------------------------------------------------------------------------------- /app/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/app/views/layout.jade -------------------------------------------------------------------------------- /app/views/login.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/app/views/login.jade -------------------------------------------------------------------------------- /assets/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/app.coffee -------------------------------------------------------------------------------- /assets/collections/lines.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/collections/lines.coffee -------------------------------------------------------------------------------- /assets/collections/postits.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/collections/postits.coffee -------------------------------------------------------------------------------- /assets/css/board.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/css/board.styl -------------------------------------------------------------------------------- /assets/css/font-awesome.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/css/font-awesome.styl -------------------------------------------------------------------------------- /assets/css/generic.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/css/generic.styl -------------------------------------------------------------------------------- /assets/css/pages.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/css/pages.styl -------------------------------------------------------------------------------- /assets/css/persona-buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/css/persona-buttons.css -------------------------------------------------------------------------------- /assets/helpers/colors.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/helpers/colors.coffee -------------------------------------------------------------------------------- /assets/helpers/dnd.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/helpers/dnd.coffee -------------------------------------------------------------------------------- /assets/helpers/fontsize.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/helpers/fontsize.coffee -------------------------------------------------------------------------------- /assets/helpers/touch.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/helpers/touch.coffee -------------------------------------------------------------------------------- /assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/js/index.js -------------------------------------------------------------------------------- /assets/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/js/login.js -------------------------------------------------------------------------------- /assets/models/board.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/models/board.coffee -------------------------------------------------------------------------------- /assets/models/line.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/models/line.coffee -------------------------------------------------------------------------------- /assets/models/postit.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/models/postit.coffee -------------------------------------------------------------------------------- /assets/models/viewport.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/models/viewport.coffee -------------------------------------------------------------------------------- /assets/source.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/source.coffee -------------------------------------------------------------------------------- /assets/templates/board.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/templates/board.hbs -------------------------------------------------------------------------------- /assets/templates/line.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/templates/line.hbs -------------------------------------------------------------------------------- /assets/templates/postit.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/templates/postit.hbs -------------------------------------------------------------------------------- /assets/templates/trash.hbs: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /assets/views/board.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/views/board.coffee -------------------------------------------------------------------------------- /assets/views/line.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/views/line.coffee -------------------------------------------------------------------------------- /assets/views/lines.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/views/lines.coffee -------------------------------------------------------------------------------- /assets/views/postit.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/views/postit.coffee -------------------------------------------------------------------------------- /assets/views/postits.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/views/postits.coffee -------------------------------------------------------------------------------- /assets/views/trash.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/assets/views/trash.coffee -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/bower.json -------------------------------------------------------------------------------- /config/deploy.rb.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/config/deploy.rb.example -------------------------------------------------------------------------------- /config/nginx/koalab.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/config/nginx/koalab.lo -------------------------------------------------------------------------------- /config/nginx/koalab.lo.jerome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/config/nginx/koalab.lo.jerome -------------------------------------------------------------------------------- /config/server.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/config/server.json.example -------------------------------------------------------------------------------- /koalab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/koalab.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/package.json -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/fonts/FontAwesome.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/fonts/FontAwesome.woff -------------------------------------------------------------------------------- /public/fonts/IndieFlower.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/fonts/IndieFlower.woff -------------------------------------------------------------------------------- /public/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/background.png -------------------------------------------------------------------------------- /public/images/diagonale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/diagonale.png -------------------------------------------------------------------------------- /public/images/home/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/home/screenshot.png -------------------------------------------------------------------------------- /public/images/horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/horizontal.png -------------------------------------------------------------------------------- /public/images/koala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/koala.png -------------------------------------------------------------------------------- /public/images/koalab-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/koalab-logo.png -------------------------------------------------------------------------------- /public/images/note_bleu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/note_bleu.png -------------------------------------------------------------------------------- /public/images/note_bleu_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/note_bleu_roll.png -------------------------------------------------------------------------------- /public/images/note_jaune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/note_jaune.png -------------------------------------------------------------------------------- /public/images/note_jaune_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/note_jaune_roll.png -------------------------------------------------------------------------------- /public/images/note_rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/note_rose.png -------------------------------------------------------------------------------- /public/images/note_rose_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/note_rose_roll.png -------------------------------------------------------------------------------- /public/images/note_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/note_vert.png -------------------------------------------------------------------------------- /public/images/note_vert_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/note_vert_roll.png -------------------------------------------------------------------------------- /public/images/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/resize.png -------------------------------------------------------------------------------- /public/images/trait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/trait.png -------------------------------------------------------------------------------- /public/images/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/images/vertical.png -------------------------------------------------------------------------------- /public/screenshots/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/af83/koalab/HEAD/public/screenshots/board.png --------------------------------------------------------------------------------