Skip to content

Commit

Permalink
Make self_only feed the last linked feed. ...
Browse files Browse the repository at this point in the history
Feeds are supposed to appear in order of precedence. "Self only" is only
meant to accommodate special use cases and should be least preferred.
  • Loading branch information
sjuxax committed Jan 22, 2012
1 parent fac0eed commit 037eeff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion raggregate/templates/base/base.mak
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<script type="text/javascript" src="${static_base}jquery-1.7.min.js"></script>
% if 'atom.enabled' in request.registry.settings and request.registry.settings['atom.enabled'] == 'true':
<link href="${request.route_url('atom_combined')}" type="application/atom+xml" rel="alternate" title="${site_name} all content" />
<link href="${request.route_url('atom_self_story')}" type="application/atom+xml" rel="alternate" title="${site_name} self only" />
<link href="${request.route_url('atom_story')}" type="application/atom+xml" rel="alternate" title="${site_name} stories" />
<link href="${request.route_url('atom_comment')}" type="application/atom+xml" rel="alternate" title="${site_name} comments" />
<link href="${request.route_url('atom_self_story')}" type="application/atom+xml" rel="alternate" title="${site_name} self only" />
% endif
</head>
<style type="text/css">
Expand Down

0 comments on commit 037eeff

Please sign in to comment.