stable

Clone or download

Read-only

Merge 'gerrit #6151' into stable/master

* commit 'eaa3580': request #9312 Replication from gerrit server does not work over http

Modified Files

Name
M plugins/git/db/install.sql +1 −0 Go to diff View file
A plugins/git/db/mysql/updates/2016/201607061503_add_replication_password_for_git_remote_server.php +63 −0 Go to diff View file
M plugins/git/include/Git.class.php +10 −6 Go to diff View file
M plugins/git/include/Git/AdminGerritController.class.php +28 −15 Go to diff View file
M plugins/git/include/Git/HTTP/CommandFactory.class.php +51 −13 Go to diff View file
M plugins/git/include/Git/HTTP/CommandGitolite.class.php +2 −2 Go to diff View file
M plugins/git/include/Git/HTTP/CommandGitolite3.class.php +2 −2 Go to diff View file
M plugins/git/include/Git/RemoteServer/Dao.class.php +99 −17 Go to diff View file
A plugins/git/include/Git/RemoteServer/Gerrit/ReplicationHTTPUser.php +47 −0 Go to diff View file
A plugins/git/include/Git/RemoteServer/Gerrit/ReplicationHTTPUserAuthenticator.php +81 −0 Go to diff View file
M plugins/git/include/Git/RemoteServer/GerritServer.class.php +42 −14 Go to diff View file
M plugins/git/include/Git/RemoteServer/GerritServerFactory.class.php +15 −3 Go to diff View file
M plugins/git/include/Git/RemoteServer/GerritServerPresenter.class.php +21 −18 Go to diff View file
M plugins/git/include/autoload.php +4 −2 Go to diff View file
M plugins/git/include/events/SystemEvent_GIT_GERRIT_ADMIN_KEY_DUMP.class.php +2 −4 Go to diff View file
M plugins/git/templates/admin-plugin-gerrit-server.mustache +9 −0 Go to diff View file
M plugins/git/tests/Git/AdminGerritControllerTest.php +75 −44 Go to diff View file
M plugins/git/tests/Git/Driver/Gerrit/GerritDriverFactoryTest.php +4 −1 Go to diff View file
M plugins/git/tests/Git/Driver/Gerrit/ProjectCreatorTest.php +1 −0 Go to diff View file
M plugins/git/tests/Git/Driver/Gerrit/RemoteSSHCommandTest.php +3 −0 Go to diff View file
M plugins/git/tests/Git/RemoteServer/GerritServerFactoryTest.php +16 −11 Go to diff View file
M plugins/git/tests/Git/RemoteServer/GerritServerTest.php +92 −78 Go to diff View file
M plugins/git/tests/builders/aGerritServer.php +2 −1 Go to diff View file
M plugins/git/tests/events/SystemEvent_GIT_GERRIT_ADMIN_KEY_DUMPTest.php +1 −0 Go to diff View file
M plugins/git/tests/rest/GitDataBuilder.php +4 −2 Go to diff View file