Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

Commit 30a520c

Browse files
committed
https a few links
1 parent b3d4a29 commit 30a520c

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

master/master.cfg

+4-4
Original file line numberDiff line numberDiff line change
@@ -2023,7 +2023,7 @@ authz_cfg=authz.Authz(
20232023

20242024

20252025
c['status'].append(html.WebStatus(
2026-
revlink='http://github.com/rust-lang/rust/commit/%s',
2026+
revlink='https://github.com/rust-lang/rust/commit/%s',
20272027
order_console_by_time=True,
20282028
#http_port="tcp:8010:interface=127.0.0.1",
20292029
http_port="tcp:8010:interface=127.0.0.1",
@@ -2136,7 +2136,7 @@ c['status'].append(BSKiller(lambda buildername: buildername.startswith('auto') a
21362136
from buildbot.status.status_push import HttpStatusPush
21372137

21382138
if env == "prod":
2139-
push_url = "http://buildbot.rust-lang.org/homu/buildbot"
2139+
push_url = "https://buildbot.rust-lang.org/homu/buildbot"
21402140
else:
21412141
push_url = "http://54.176.156.253/homu/buildbot"
21422142
c['status'].append(HttpStatusPush(
@@ -2152,15 +2152,15 @@ c['status'].append(HttpStatusPush(
21522152
# 'titleURL') and is embedded in the title of the waterfall HTML page.
21532153

21542154
c['title'] = "Rust"
2155-
c['titleURL'] = "http://rust-lang.org"
2155+
c['titleURL'] = "https://www.rust-lang.org"
21562156

21572157
# the 'buildbotURL' string should point to the location where the buildbot's
21582158
# internal web server (usually the html.WebStatus page) is visible. This
21592159
# typically uses the port number set in the Waterfall 'status' entry, but
21602160
# with an externally-visible host name which the buildbot cannot figure out
21612161
# without some help.
21622162

2163-
c['buildbotURL'] = "http://buildbot.rust-lang.org/"
2163+
c['buildbotURL'] = "https://buildbot.rust-lang.org/"
21642164

21652165
####### DB URL
21662166

master/templates/layout.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</head>
3030
<body class="interface">
3131
{% block header -%}
32-
<div class="header">
32+
<div class="header">
3333

3434
{% set branches = ['auto', 'try', 'snap-stage3', 'dist-snap'] %}
3535
{% set views = ['console', 'tgrid', 'grid', 'waterfall'] %}
@@ -66,7 +66,7 @@
6666
{% endif %}
6767
- <a href="{{ path_to_root }}json/help">JSON API</a>
6868
- <a href="{{ path_to_root }}about">About</a>
69-
<div class="auth">
69+
<div class="auth">
7070
{% if authz.authenticated(request) %}
7171
{{ authz.getUsernameHTML(request) }}
7272
|<a href="{{ path_to_root }}logout">Logout</a>
@@ -82,7 +82,7 @@
8282
</div>
8383

8484
<div>
85-
<img src="http://www.rust-lang.org/logos/rust-logo-128x128-blk.png"
85+
<img src="https://www.rust-lang.org/logos/rust-logo-128x128-blk.png"
8686
id="logo"/>
8787
<table class="branches">
8888
{{ branchlinks('all') }}
@@ -97,20 +97,20 @@
9797

9898
{%- block barecontent -%}
9999
<hr/>
100-
100+
101101
{% if alert_msg != "" %}
102-
<div class="alert">
102+
<div class="alert">
103103
{{ alert_msg }}
104104
</div>
105105
{% endif %}
106106

107107
<div class="content">
108-
{%- block content -%}
108+
{%- block content -%}
109109
{%- endblock -%}
110110
</div>
111111
{%- endblock -%}
112112

113-
{%- block footer -%}
113+
{%- block footer -%}
114114
<div class="footer" style="clear:both">
115115
<hr/>
116116
<a href="http://buildbot.net/">BuildBot</a> ({{version}})

0 commit comments

Comments
 (0)