stable

Clone or download

Read-only

Merge commit 'refs/changes/39/5139/8' of ssh://gerrit.tuleap.net:29418/tuleap into HEAD

* ssh://gerrit.tuleap.net:29418/tuleap: story #8826: Pull request angular app first step Change-Id: I37117644528aca71f89e38f38bdf29d2d0766895

Modified Files

Name
M plugins/pullrequest/include/PullRequest/PullRequestPresenter.php +5 −5 Go to diff View file
M plugins/pullrequest/include/pullrequestPlugin.class.php +9 −1 Go to diff View file
M plugins/pullrequest/site-content/en_US/pullrequest.tab +0 −2 Go to diff View file
M plugins/pullrequest/site-content/fr_FR/pullrequest.tab +0 −2 Go to diff View file
M plugins/pullrequest/templates/index.mustache +7 −3 Go to diff View file
A plugins/pullrequest/www/js/angular/.gitignore +10 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/Gruntfile.js +526 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/bower.json +19 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/build.config.js +89 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/karma/karma-unit.tpl.js +68 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/module.prefix +1 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/module.suffix +1 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/package.json +35 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/po/fr.po +88 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/po/template.pot +65 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/app-config.js +9 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/app-controller.js +28 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/app.js +11 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/app.spec.js +14 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/error-modal/error-modal-controller.js +28 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/error-modal/error-modal-service.js +39 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/error-modal/error-modal.less +7 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/error-modal/error-modal.tpl.html +20 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/file-diff/file-diff-config.js +21 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/file-diff/file-diff-controller.js +47 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/file-diff/file-diff-directive.js +13 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/file-diff/file-diff-rest-service.js +31 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/file-diff/file-diff.less +9 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/file-diff/file-diff.tpl.html +3 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/comments/comments-controller.js +59 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/comments/comments-directive.js +13 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/comments/comments-rest-service.js +44 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/comments/comments-service.js +42 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/comments/comments.less +56 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/comments/comments.tpl.html +26 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/files/files-controller.js +34 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/files/files-directive.js +13 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/files/files-rest-service.js +31 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/files/files.less +44 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/files/files.tpl.html +10 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/pull-request-config.js +27 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/pull-request-controller.js +51 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/pull-request-directive.js +13 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/pull-request-rest-service.js +45 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/pull-request.less +43 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-request/pull-request.tpl.html +37 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-requests/pull-requests-config.js +20 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-requests/pull-requests-controller.js +75 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-requests/pull-requests-directive.js +13 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-requests/pull-requests-rest-service.js +28 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-requests/pull-requests.less +42 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/pull-requests/pull-requests.tpl.html +26 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/shared-properties/shared-properties-service.js +50 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/app/shared-properties/shared-properties.js +1 −0 Go to diff View file
A plugins/pullrequest/www/js/angular/src/assets/loader-mini.gif Binary file Go to diff View file
A plugins/pullrequest/www/js/angular/src/assets/loader.gif Binary file Go to diff View file
A plugins/pullrequest/www/js/angular/src/less/main.less +8 −0 Go to diff View file
A plugins/pullrequest/www/themes/FlamingParrot/css/style.less +75 −0 Go to diff View file
A plugins/pullrequest/www/themes/default/css/style.less +28 −0 Go to diff View file