function toggle(showHideDiv, switchTextDiv) { var tog = document.getElementById(showHideDiv); var text = document.getElementById(switchTextDiv); if(tog.style.display == "block") { tog.style.display = "none"; text.innerHTML = "+"; } else { tog.style.display = "block"; text.innerHTML = "-"; } }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 20641 | Paul Allen | Copy main -> dev (jenkinsci/p4-plugin) | ||
//guest/perforce_software/p4jenkins/main/src/main/webapp/script.js | |||||
#1 | 15403 | Paul Allen |
Perforce triggered polling BETA. Perforce triggers on a change-submit and sends a POST to the endpoint http://${JENKINS}/p4/change with the data: {"change":"12345","p4port":"localhost:1666"} Note: ‘change’ is not used (yet), but ‘p4port’ MUST match the credential in the Jenkins Job. JENKINS-25249 |