Make any request for a changeset feed with a page argument redirect to the version with no page argument and ensure that any RSS links on the HTML version of the changeset list don't have a page argument.
12 lines
450 B
Text
12 lines
450 B
Text
<h1><%= @heading %></h1>
|
|
<p><%= @description %></p>
|
|
|
|
<%= render :partial => 'changeset_paging_nav' %>
|
|
<%= render :partial => 'changesets', :locals => { :showusername => !params.has_key?(:display_name) } %>
|
|
<%= render :partial => 'changeset_paging_nav' %>
|
|
|
|
<%= atom_link_to params.merge({ :page => nil, :format => :atom }) %>
|
|
|
|
<% content_for :head do %>
|
|
<%= auto_discovery_link_tag :atom, params.merge({ :page => nil, :format => :atom }) %>
|
|
<% end %>
|