X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/789c6343d947da2cd38b20a70c08d4c116cea082..72b05157ae4d59177cd2fb667c42328b203374f1:/app/views/trace/_trace_header.rhtml diff --git a/app/views/trace/_trace_header.rhtml b/app/views/trace/_trace_header.rhtml index 179b79c32..cab6f7124 100644 --- a/app/views/trace/_trace_header.rhtml +++ b/app/views/trace/_trace_header.rhtml @@ -1,15 +1,26 @@

<%= h(@title) %>

-RSS -<% if @user.nil? or @display_name.nil? or @user.display_name != @display_name %> - | <%= link_to 'See just your traces, or upload a trace', :action => 'mine' %> -<% end %> -<% if @tag or @display_name %> - | <%= link_to 'See all traces', :controller => 'trace', :action => 'list' %> -<% end %> -<% if @tag and @user and @user.display_name == @display_name %> - | <%= link_to 'See all your traces', :controller => 'trace', :action => 'mine' %> +<% content_for :head do %> +<%= auto_discovery_link_tag :atom, :action => 'georss', :display_name => @display_name, :tag => @tag %> <% end %> -
-
+

+ <%= rss_link_to :action => 'georss', :display_name => @display_name, :tag => @tag %> + <% if @user.nil? or @display_name.nil? or @user.display_name != @display_name %> + | <%= link_to 'See just your traces, or upload a trace', :action => 'mine' %> + <% end %> + <% if @tag or @display_name %> + | <%= link_to 'See all traces', :controller => 'trace', :action => 'list' %> + <% end %> + <% if @tag and @user and @user.display_name == @display_name %> + | <%= link_to 'See all your traces', :controller => 'trace', :action => 'mine' %> + <% end %> +

+ +<% if @user and @user.traces.count(:conditions => ["inserted=?", false]) > 4 %> +

+ You have <%= @user.traces.count(:conditions => ["inserted=?", false]) %> traces + waiting for upload. Please consider waiting for these to finish before + uploading any more, so as not to block the queue for other users. +

+<% end %>