stable
Clone or download
Read-only
Merge commit 'refs/changes/83/3183/3' of ssh://gerrit.tuleap.net:29418/tuleap into HEAD
* ssh://gerrit.tuleap.net:29418/tuleap: Check that manifest files contain all data Update manifest when gitolite-admin repo is updated Update manifest on repository deletion Update manifest on repository update story #7522: Tuleap generates grokmirror manifest files Change-Id: Ia3d6558790d09daf22362977f24592cfc85a18c1
Modified Files
Name | ||||
---|---|---|---|---|
M | plugins/git/bin/gl-rename-project.php | +4 | −2 | Go to diff View file |
M | plugins/git/etc/config.inc.dist | +0 | −4 | Go to diff View file |
A | plugins/git/include/Git/Mirror/ManifestFileGenerator.class.php | +173 | −0 | Go to diff View file |
M | plugins/git/include/Git/Mirror/ManifestManager.class.php | +42 | −41 | Go to diff View file |
M | plugins/git/include/Git/Mirror/Mirror.class.php | +4 | −0 | Go to diff View file |
M | plugins/git/include/Git/Mirror/MirrorDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git/Mirror/MirrorDataMapper.class.php | +14 | −0 | Go to diff View file |
A | plugins/git/include/Git/SystemCheck.class.php | +59 | −0 | Go to diff View file |
M | plugins/git/include/Git/SystemEventManager.class.php | +0 | −1 | Go to diff View file |
M | plugins/git/include/GitActions.class.php | +5 | −2 | Go to diff View file |
M | plugins/git/include/GitRepository.class.php | +6 | −2 | Go to diff View file |
M | plugins/git/include/GitRepositoryGitoliteAdmin.class.php | +1 | −0 | Go to diff View file |
M | plugins/git/include/Git_GitoliteDriver.class.php | +10 | −0 | 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_REPO_DELETE.class.php | +17 | −8 | Go to diff View file |
M | plugins/git/include/events/SystemEvent_GIT_REPO_UPDATE.class.php | +11 | −1 | Go to diff View file |
M | plugins/git/include/gitPlugin.class.php | +13 | −5 | Go to diff View file |
A | plugins/git/tests/Git/Mirror/ManifestFileGeneratorTest.php | +270 | −0 | Go to diff View file |
A | plugins/git/tests/Git/Mirror/ManifestManagerTest.php | +125 | −0 | Go to diff View file |
A | plugins/git/tests/Git/Mirror/_fixtures/.gitkeep | +0 | −0 | Go to diff View file |
A | plugins/git/tests/Git/SystemCheckTest.php | +58 | −0 | Go to diff View file |
M | plugins/git/tests/Git/SystemEventManagerTest.php | +1 | −14 | Go to diff View file |
M | plugins/git/tests/Git_GitoliteDriverTest.php | +13 | −1 | Go to diff View file |
M | plugins/git/tests/Git_GitoliteTestCase.class.php | +13 | −1 | Go to diff View file |
M | plugins/git/tests/events/SystemEvent_GIT_REPO_DELETETest.php | +27 | −15 | Go to diff View file |
M | plugins/git/tests/events/SystemEvent_GIT_REPO_UPDATETest.php | +16 | −4 | Go to diff View file |