dev

Forked from tuleap/dev

Clone or download

Read-only

Create the angular application for Kanban

This task is part of story #7577 display a Kanban cardwall This is the minial angular structure for the Kanban view Change-Id: I98dae75cae10052f30792cc6d6e9f02c4493e0b0

Modified Files

Name
M .gitignore +1 −0 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/AgileDashboardController.class.php +9 −0 Go to diff View file
A plugins/agiledashboard/include/AgileDashboard/KanbanPresenter.class.php +30 −0 Go to diff View file
M plugins/agiledashboard/include/AgileDashboardRouter.class.php +11 −7 Go to diff View file
M plugins/agiledashboard/include/autoload.php +3 −2 Go to diff View file
M plugins/agiledashboard/site-content/en_US/agiledashboard.tab +1 −0 Go to diff View file
M plugins/agiledashboard/site-content/fr_FR/agiledashboard.tab +1 −0 Go to diff View file
M plugins/agiledashboard/templates/home.mustache +1 −1 Go to diff View file
A plugins/agiledashboard/templates/kanban.mustache +5 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/.bowerrc +4 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/.gitignore +9 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/CHANGELOG.md +102 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/Gruntfile.js +528 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/bower.json +12 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/build.config.js +81 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/changelog.tpl +23 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/karma/karma-unit.tpl.js +63 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/module.prefix +1 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/module.suffix +1 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/package.json +32 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/po/README.mkd +26 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/po/fr.po +16 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/po/template.pot +9 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/.htaccess +2 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/app/app-config.js +18 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/app/app-kanban-controller.js +10 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/app/app-kanban.spec.js +5 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/app/app-main-controller.js +17 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/app/app.js +7 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/app/kanban.tpl.html +1 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/assets/animate.min.css +6 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/less/main.less +2 −0 Go to diff View file