Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

jenkins-infra/patron

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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