Skip to content
Patron of Jenkins program
Groovy CSS HTML
Branch: master
Clone or download

Latest commit

Fetching latest commit…
Cannot retrieve the latest commit at this time.

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.gitignore
Jenkinsfile
README.md
build.groovy
message.html
messages.xml
patron.css

README.md

Patron of Jenkins

This program defines a donation level to the Jenkins project, called "Patron of Jenkins," for donations at or above $750. To show appreciation to patrons of Jenkins, we will allow them to display messages on our website in a non-obtrusive way. See Wiki page for more details of the program.

This repository maintains the source code, master data, and a program that generates the actual messages that follow the specified format. Once the donation is confirmed, Daniel Beck updates the file to include your message.

This then gets processed by Jenkins-on-Jenkins to be uploaded into the production server.

Wiki implementation

Jenkins Wiki shows patron messages through the "Page Templates" where the following code block is inserted:

<script>
if (Math.random()*7<1) {
  document.write("<div align='center'><div style='width: 568px; color: #888; text-align:right; font-size:10px'>Message from a Patron of Jenkins</div><iframe src='https://jenkins-infra.github.io/patron/message.html' width=568 height=75 style='border: 1px solid #ccc; overflow:hidden'></iframe></div>");
}
</script>

Deployment

  1. ./build.groovy
  2. git checkout gh-pages
  3. cp output/* .
  4. git add *_0.html
  5. git commit -a
  6. git push
You can’t perform that action at this time.