stable

Clone or download

Read-only

Merge commit 'refs/changes/24/5124/19' of ssh://gerrit.tuleap.net:29418/tuleap into stable

* ssh://gerrit.tuleap.net:29418/tuleap: story #8826: Create pull requests from a git repository

Modified Files

Name
M plugins/git/include/GitPresenters/RepositoryClonePresenter.class.php +5 −1 Go to diff View file
M plugins/git/include/GitViews/ShowRepo/Content.class.php +16 −2 Go to diff View file
M plugins/git/include/constants.php +10 −0 Go to diff View file
M plugins/git/templates/repository_clone.mustache +1 −0 Go to diff View file
A plugins/pullrequest/include/PullRequest/AdditionalActionsPresenter.php +84 −0 Go to diff View file
M plugins/pullrequest/include/PullRequest/Dao.php +12 −0 Go to diff View file
A plugins/pullrequest/include/PullRequest/Exception/PullRequestAlreadyExistsException.php +25 −0 Go to diff View file
A plugins/pullrequest/include/PullRequest/Exception/PullRequestCannotBeCreatedException.php +25 −0 Go to diff View file
M plugins/pullrequest/include/PullRequest/GitExec.php +6 −0 Go to diff View file
A plugins/pullrequest/include/PullRequest/PullRequestCreator.php +99 −0 Go to diff View file
A plugins/pullrequest/include/PullRequest/Router.php +165 −0 Go to diff View file
M plugins/pullrequest/include/autoload.php +8 −3 Go to diff View file
M plugins/pullrequest/include/pullrequestPlugin.class.php +50 −5 Go to diff View file
M plugins/pullrequest/site-content/en_US/pullrequest.tab +7 −0 Go to diff View file
M plugins/pullrequest/site-content/fr_FR/pullrequest.tab +7 −0 Go to diff View file
A plugins/pullrequest/templates/additional-actions.mustache +39 −0 Go to diff View file
M plugins/pullrequest/tests/GitExecTest.php +16 −0 Go to diff View file
A plugins/pullrequest/www/index.php +30 −0 Go to diff View file