diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-05 15:05:39 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-05 15:05:39 +0100 |
commit | dcbc9c0aee833e071ea542258452c62675b082be (patch) | |
tree | 6c969d88f4edd3b7df2363116e5e2027b2c3e53c /bin | |
parent | 70988212858663c22601e9b6039167499e96c26c (diff) | |
download | jenkins.debian.net-dcbc9c0aee833e071ea542258452c62675b082be.tar.xz |
reproducible: make wiki links open in a new tab
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 2 | ||||
-rwxr-xr-x | bin/reproducible_common.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 13e55ae9..7e118f0a 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -161,7 +161,7 @@ html_head_page = Template((tab*2).join(""" $suite_links <li><a href="/index_repo_stats.html">repositories overview</a></li> <li><a href="/reproducible.html">reproducible stats</a></li> - <li><a href="https://wiki.debian.org/ReproducibleBuilds">wiki</a></li> + <li><a href="https://wiki.debian.org/ReproducibleBuilds" target="_blank">wiki</a></li> </ul> </header>""".splitlines(True))) diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 5e9a9b71..a20afc39 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -141,7 +141,7 @@ write_page_header() { write_page "<title>$2</title></head>" write_page "<body><header><h2>$2</h2>" if [ "$1" = "$MAINVIEW" ] ; then - write_page "<p>These pages are showing the prospects of <a href=\"https://wiki.debian.org/ReproducibleBuilds\">reproducible builds of Debian packages</a>. The results shown were obtained from <a href=\"$JENKINS_URL/view/reproducible\">several jobs running on jenkins.debian.net</a>. Thanks to <a href=\"https://www.profitbricks.com\">Profitbricks</a> for donating the virtual machine this is running on!</p>" + write_page "<p>These pages are showing the prospects of <a href=\"https://wiki.debian.org/ReproducibleBuilds\" target=\"_blank\">reproducible builds of Debian packages</a>. The results shown were obtained from <a href=\"$JENKINS_URL/view/reproducible\">several jobs running on jenkins.debian.net</a>. Thanks to <a href=\"https://www.profitbricks.com\">Profitbricks</a> for donating the virtual machine this is running on!</p>" fi if [ "$1" = "dd-list" ] || [ "$1" = "stats" ] ; then write_page " Join <code>#debian-reproducible</code> on OFTC or <a href="mailto:reproducible-builds@lists.alioth.debian.org">send us an email</a> to get support for making sure your packages build reproducibly too!" @@ -179,7 +179,7 @@ write_page_header() { fi done fi - write_page "<li><a href=\"https://wiki.debian.org/ReproducibleBuilds\">wiki</a></li>" + write_page "<li><a href=\"https://wiki.debian.org/ReproducibleBuilds\" target=\"_blank\">wiki</a></li>" done write_page "</ul>" write_page "</header>" |