Skip to content

Commit

Permalink
Add a <link> for the RSS feed to layout.html
Browse files Browse the repository at this point in the history
I'd like to propose a small change to the layout.html template. The
change allows browsers to know that there is an RSS feed available for
the web page(s) created by the buildbot to show build status and
history.

This is as simple as adding a <link> tag in the <head>, like this:

   <link rel="alternate" type="application/rss+xml" title="RSS" href="rss">

This allows browsers (such as Safari) to know that an RSS feed is
available - in Safari's case an RSS badge will be showing in the
location bar.
  • Loading branch information
Matisse Enzer authored and Dustin J. Mitchell committed Aug 18, 2010
1 parent ea9c2a8 commit 776b431
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions master/buildbot/status/web/templates/layout.html
Expand Up @@ -14,6 +14,7 @@
{% endif %}
<title>{{ title|e }}</title>
<link rel="stylesheet" href="{{ stylesheet }}" type="text/css" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="rss">
{% endblock %}
</head>
<body class="interface">
Expand Down

0 comments on commit 776b431

Please sign in to comment.