patron/README.md

1.5 KiB

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, Lisa Wells 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 commit -a
  5. git push