stable
Clone or download
Read-only
Packaging specific to the plugin has been removed. This is part of request #10662: Pullrequest code should be integrated into Tuleap repository Change-Id: I2f288a5b5a2af543bc4c0f0bb28fe73f7a9c13f9
Modified Files
Name | ||||
---|---|---|---|---|
A | plugins/pullrequest/README.mkd | +2 | −0 | Go to diff View file |
A | plugins/pullrequest/VERSION | +1 | −0 | Go to diff View file |
A | plugins/pullrequest/build-manifest.json | +20 | −0 | Go to diff View file |
A | plugins/pullrequest/db/install.sql | +63 | −0 | Go to diff View file |
A | plugins/pullrequest/db/mysql/updates/2016/201602151010_add_plugin_pullrequest_comments_table.php | +50 | −0 | Go to diff View file |
A | plugins/pullrequest/db/mysql/updates/2016/201604181056_add_title_and_description_for_pull_requests.php | +45 | −0 | Go to diff View file |
A | plugins/pullrequest/db/mysql/updates/2016/201604260945_add_post_date_for_comments.php | +45 | −0 | Go to diff View file |
A | plugins/pullrequest/db/mysql/updates/2016/201604291015_add_plugin_pullrequest_inline_comments_table.php | +58 | −0 | Go to diff View file |
A | plugins/pullrequest/db/mysql/updates/2016/201605131519_add_repo_dest_id_for_pull_requests.php | +45 | −0 | Go to diff View file |
A | plugins/pullrequest/db/mysql/updates/2016/201605310945_add_timeline_event_table.php | +51 | −0 | Go to diff View file |
A | plugins/pullrequest/db/mysql/updates/2016/201605311559_add_merge_status_for_pull_requests.php | +45 | −0 | Go to diff View file |
A | plugins/pullrequest/db/mysql/updates/2016/201606131624_add_last_build_status_and_date_for_pull_requests.php | +48 | −0 | Go to diff View file |
A | plugins/pullrequest/db/mysql/updates/2016/201608091537_add_system_references.php | +63 | −0 | Go to diff View file |
A | plugins/pullrequest/db/mysql/updates/2017/201708220958_create_pullrequest_label.php | +50 | −0 | Go to diff View file |
A | plugins/pullrequest/db/uninstall.sql | +8 | −0 | Go to diff View file |
A | plugins/pullrequest/etc/logrotate.syslog.dist | +7 | −0 | Go to diff View file |
A | plugins/pullrequest/etc/sudoers.d/gitolite-access-command | +3 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/AdditionalActionsPresenter.php | +99 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/AdditionalHelpTextPresenter.php | +64 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/AdditionalInfoPresenter.php | +65 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Authorization/AccessControlVerifier.php | +76 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Comment/Comment.php | +75 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Comment/Dao.php | +70 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Comment/Factory.php | +87 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Comment/PaginatedComments.php | +48 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Criterion/ISearchOnStatus.php | +26 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Criterion/StatusAll.php | +32 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Criterion/StatusClosed.php | +32 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Criterion/StatusOpen.php | +32 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Dao.php | +266 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Exception/InvalidBuildStatusException.php | +31 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Exception/MalformedQueryParameterException.php | +30 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Exception/PullRequestAlreadyExistsException.php | +31 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Exception/PullRequestAnonymousUserException.php | +31 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Exception/PullRequestCannotBeAbandoned.php | +27 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Exception/PullRequestCannotBeCreatedException.php | +31 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Exception/PullRequestCannotBeMerged.php | +27 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Exception/PullRequestNotCreatedException.php | +31 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Exception/PullRequestNotFoundException.php | +31 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Exception/PullRequestRepositoryMigratedOnGerritException.php | +31 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Exception/UnknownBranchNameException.php | +32 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Exception/UnknownReferenceException.php | +31 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Factory.php | +243 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/FileNullDiff.php | +49 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/FileUniDiff.php | +67 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/FileUniDiffBuilder.php | +100 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/GetCreatePullRequest.php | +57 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/GitExec.php | +275 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/InlineComment/Dao.php | +88 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/InlineComment/InlineComment.php | +118 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/InlineComment/InlineCommentCreator.php | +76 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/InlineComment/InlineCommentUpdater.php | +83 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Label/LabelsCurlyCoatedRetriever.php | +51 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Label/PullRequestLabelDao.php | +134 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Logger.php | +37 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/PullRequest.php | +185 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/PullRequestCloser.php | +153 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/PullRequestCount.php | +58 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/PullRequestCreator.php | +144 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/PullRequestMerger.php | +154 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/PullRequestPresenter.php | +64 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/PullRequestUpdater.php | +177 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/ResourcesInjector.class.php | +34 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/CommentPOSTRepresentation.php | +30 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/CommentRepresentation.php | +55 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/GitRepositoryReference.php | +42 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/MimeDetector.php | +127 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PaginatedCommentsRepresentations.php | +48 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PaginatedCommentsRepresentationsBuilder.php | +61 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PaginatedTimelineRepresentation.php | +38 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PaginatedTimelineRepresentationBuilder.php | +98 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestFileRepresentation.php | +52 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestFileRepresentationFactory.php | +58 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestFileUniDiffRepresentation.php | +70 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestInlineCommentPOSTRepresentation.php | +40 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestInlineCommentRepresentation.php | +57 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestInlineCommentRepresentationBuilder.php | +64 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestLineUniDiffRepresentation.php | +54 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestPATCHRepresentation.php | +40 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestPOSTRepresentation.php | +53 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestReference.php | +44 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestRepresentation.php | +249 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestRepresentationFactory.php | +70 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestShortStatRepresentation.php | +42 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestsResource.php | +1017 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/QueryToCriterionConverter.php | +65 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/RepositoryPullRequestRepresentation.php | +37 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/RepositoryResource.php | +129 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/TimelineEventRepresentation.php | +75 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/REST/v1/TimelineInlineCommentRepresentation.php | +79 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Reference/ProjectReferenceRetriever.php | +41 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Reference/Reference.php | +52 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Reference/ReferenceDao.php | +42 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Reference/ReferenceFactory.php | +79 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Router.php | +196 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/ShortStat.php | +56 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Timeline/Dao.php | +53 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Timeline/Factory.php | +90 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Timeline/PaginatedTimeline.php | +48 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Timeline/TimelineEvent.php | +89 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Timeline/TimelineEventCreator.php | +56 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/Tooltip/Presenter.php | +59 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequest/UniDiffLine.php | +68 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequestPluginDescriptor.class.php | +34 | −0 | Go to diff View file |
A | plugins/pullrequest/include/PullRequestPluginInfo.class.php | +30 | −0 | Go to diff View file |
A | plugins/pullrequest/include/autoload.php | +106 | −0 | Go to diff View file |
A | plugins/pullrequest/include/constants.php | +21 | −0 | Go to diff View file |
A | plugins/pullrequest/include/pullrequestPlugin.class.php | +509 | −0 | Go to diff View file |
A | plugins/pullrequest/site-content/en_US/pullrequest.tab | +41 | −0 | Go to diff View file |
A | plugins/pullrequest/site-content/fr_FR/pullrequest.tab | +41 | −0 | Go to diff View file |
A | plugins/pullrequest/templates/additional-actions.mustache | +44 | −0 | Go to diff View file |
A | plugins/pullrequest/templates/additional-help-text.mustache | +14 | −0 | Go to diff View file |
A | plugins/pullrequest/templates/additional-info.mustache | +6 | −0 | Go to diff View file |
A | plugins/pullrequest/templates/index.mustache | +14 | −0 | Go to diff View file |
A | plugins/pullrequest/templates/tooltip.mustache | +14 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/Authorization/AccessControlVerifierTest.php | +95 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/FileUniDiffBuilderTest.php | +148 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/GitExecTest.php | +284 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/InlineComment/InlineCommentUpdaterTest.php | +203 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/InlineComment/bootstrap.php | +23 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/PullRequestCloserTest.php | +393 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/PullRequestUpdaterTest.php | +146 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/Reference/ReferenceFactoryTest.php | +107 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/bootstrap.php | +23 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/rest/DatabaseInitialization.class.php | +54 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/rest/PullRequest/PullRequestsCommentsTest.php | +88 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/rest/PullRequest/PullRequestsLabelsTest.php | +138 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/rest/PullRequest/PullRequestsTest.php | +114 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/rest/PullRequestDataBuilder.php | +36 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/rest/bootstrap.php | +22 | −0 | Go to diff View file |
A | plugins/pullrequest/tests/rest/init_test_data.php | +23 | −0 | Go to diff View file |
A | plugins/pullrequest/www/index.php | +30 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/.editorconfig | +17 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/.eslintrc.json | +233 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/.gitignore | +11 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/Gruntfile.js | +546 | −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 | +90 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/karma/karma-unit.tpl.js | +59 | −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-lock.json | +4746 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/package.json | +43 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/po/fr.po | +213 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/po/template.pot | +171 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/app-config.js | +14 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/app-controller.js | +40 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/app-controller.spec.js | +41 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/app.js | +12 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/button-back/button-back-controller.js | +16 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/button-back/button-back-directive.js | +13 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/button-back/button-back.tpl.html | +14 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/dashboard/_dashboard.scss | +54 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/dashboard/dashboard-config.js | +16 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/dashboard/dashboard-controller.js | +85 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/dashboard/dashboard-controller.spec.js | +108 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/dashboard/dashboard-directive.js | +13 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/dashboard/dashboard.tpl.html | +44 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/dashboard/pull-request-collection-rest-service.js | +124 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/dashboard/pull-request-collection-rest-service.spec.js | +257 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/dashboard/pull-request-collection-service.js | +134 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/dashboard/pull-request-collection-service.spec.js | +202 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/dashboard/pull-request-summary/_pull-request-summary.scss | +74 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/dashboard/pull-request-summary/pull-request-summary-controller.js | +48 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/dashboard/pull-request-summary/pull-request-summary-controller.spec.js | +54 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/dashboard/pull-request-summary/pull-request-summary-directive.js | +15 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/dashboard/pull-request-summary/pull-request-summary.tpl.html | +42 | −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.tpl.html | +18 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/file-diff/_file-diff.scss | +172 | −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 | +22 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/file-diff/file-diff-directive.js | +139 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/file-diff/file-diff-rest-service.js | +50 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/file-diff/file-diff.tpl.html | +11 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/file-diff/inline-comment/_inline-comment.scss | +49 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/file-diff/inline-comment/inline-comment-directive.js | +13 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/file-diff/inline-comment/inline-comment.tpl.html | +11 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/files/_files.scss | +111 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/files/filepaths-service.js | +34 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/files/files-config.js | +21 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/files/files-controller.js | +63 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/files/files-directive.js | +13 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/files/files-rest-service.js | +33 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/files/files.tpl.html | +28 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/labels/labels-directive.js | +42 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/main.scss | +11 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/_overview.scss | +161 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/merge-modal/_merge-modal.scss | +5 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/merge-modal/merge-modal-controller.js | +28 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/merge-modal/merge-modal-service.js | +27 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/merge-modal/merge-modal.tpl.html | +14 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/overview-config.js | +24 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/overview-controller.js | +120 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/overview-directive.js | +13 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/overview.tpl.html | +124 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/timeline/_timeline.scss | +147 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/timeline/timeline-controller.js | +55 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/timeline/timeline-directive.js | +13 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/timeline/timeline-rest-service.js | +47 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/timeline/timeline-service.js | +96 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/timeline/timeline-service.spec.js | +208 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/overview/timeline/timeline.tpl.html | +44 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request-refs/_pull-request-refs.scss | +14 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request-refs/pull-request-refs-controller.js | +29 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request-refs/pull-request-refs-controller.spec.js | +56 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request-refs/pull-request-refs.directive.js | +16 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request-refs/pull-request-refs.tpl.html | +16 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request/_pull-request.scss | +34 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request/header/header-controller.js | +20 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request/header/header-directive.js | +12 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request/header/header.tpl.html | +4 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request/pull-request-config.js | +16 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request/pull-request-controller.js | +63 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request/pull-request-controller.spec.js | +100 | −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 | +53 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request/pull-request-rest-service.spec.js | +75 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request/pull-request-service.js | +53 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request/pull-request-service.spec.js | +46 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/pull-request/pull-request.tpl.html | +15 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/resize/resize-directive.js | +48 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/resize/resize.js | +2 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/shared-properties/shared-properties-service.js | +79 | −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/app/tooltip-service.js | +21 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/tuleap-username/_tuleap-username.scss | +11 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/tuleap-username/tuleap-username-directive.js | +14 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/tuleap-username/tuleap-username.tpl.html | +8 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/user-rest-service.js | +35 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/angular/src/app/user-rest-service.spec.js | +66 | −0 | Go to diff View file |
A | plugins/pullrequest/www/js/move-button-back.js | +39 | −0 | Go to diff View file |
A | plugins/pullrequest/www/themes/FlamingParrot/css/style.scss | +132 | −0 | Go to diff View file |
A | plugins/pullrequest/www/themes/default/css/style.scss | +38 | −0 | Go to diff View file |
M | tests/Jenkinsfile | +1 | −0 | Go to diff View file |
M | tools/rpm/Makefile | +5 | −1 | Go to diff View file |
M | tools/rpm/tuleap.rhel6.spec | +20 | −0 | Go to diff View file |
A | www/js/angular/src/assets/loader-mini.gif | Binary file | Go to diff View file | |
A | www/js/angular/src/assets/loader.gif | Binary file | Go to diff View file |