stable

Clone or download

Read-only

Add the 30last jobs status in git admin settings

This is part of story #7897 trigger a jenkins polling on git push In git admin settings, in Hooks tab you should see a list of last launched job for repository Change-Id: Ib051bca93dab7c96e9ed23b37f79d6b2fe8f88c3

Modified Files

Name
M plugins/git/hooks/post-receive.php +7 −7 Go to diff View file
M plugins/git/www/themes/default/css/style.less +7 −0 Go to diff View file
M plugins/hudson_git/db/install.sql +8 −0 Go to diff View file
A plugins/hudson_git/db/mysql/updates/2016/201604071042_create_hudson_git_job.php +50 −0 Go to diff View file
M plugins/hudson_git/db/uninstall.sql +1 −0 Go to diff View file
M plugins/hudson_git/include/HudsonGit/Hook/HookController.php +25 −10 Go to diff View file
M plugins/hudson_git/include/HudsonGit/Hook/HookPresenter.php +17 −1 Go to diff View file
M plugins/hudson_git/include/HudsonGit/Hook/HookTriggerController.php +26 −4 Go to diff View file
A plugins/hudson_git/include/HudsonGit/Job/CannotCreateJobException.php +32 −0 Go to diff View file
A plugins/hudson_git/include/HudsonGit/Job/Job.php +68 −0 Go to diff View file
A plugins/hudson_git/include/HudsonGit/Job/JobDao.php +53 −0 Go to diff View file
A plugins/hudson_git/include/HudsonGit/Job/JobManager.php +63 −0 Go to diff View file
A plugins/hudson_git/include/HudsonGit/PollingResponse.php +48 −0 Go to diff View file
A plugins/hudson_git/include/HudsonGit/PollingResponseFactory.php +42 −0 Go to diff View file
M plugins/hudson_git/include/autoload.php +9 −3 Go to diff View file
M plugins/hudson_git/include/hudson_gitPlugin.class.php +11 −4 Go to diff View file
M plugins/hudson_git/site-content/en_US/hudson_git.tab +5 −0 Go to diff View file
M plugins/hudson_git/site-content/fr_FR/hudson_git.tab +5 −0 Go to diff View file
M plugins/hudson_git/templates/hook.mustache +24 −0 Go to diff View file
M plugins/hudson_svn/include/hudson_svnPlugin.class.php +7 −4 Go to diff View file
M src/common/Jenkins/Client.class.php +20 −14 Go to diff View file