diff options
Diffstat (limited to 'app/views/wiki/special_date_index.rhtml')
-rw-r--r-- | app/views/wiki/special_date_index.rhtml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/app/views/wiki/special_date_index.rhtml b/app/views/wiki/special_date_index.rhtml index ac68f809e..6717ebc85 100644 --- a/app/views/wiki/special_date_index.rhtml +++ b/app/views/wiki/special_date_index.rhtml @@ -17,9 +17,14 @@ <%= render :partial => 'sidebar' %> <% end %> -<div class="contextual"> <% unless @pages.empty? %> -<%= l(:label_export_to) %> <%= link_to 'HTML', {:action => 'special', :page => 'export'}, :class => 'icon icon-html' %> +<p class="other-formats"> +<%= l(:label_export_to) %> +<span><%= link_to 'Atom', {:controller => 'projects', :action => 'activity', :id => @project, :show_wiki_pages => 1, :format => 'atom', :key => User.current.rss_key}, :class => 'feed' %></span> +<span><%= link_to 'HTML', {:action => 'special', :page => 'export'}, :class => 'html' %></span> +</p> +<% end %> + +<% content_for :header_tags do %> +<%= auto_discovery_link_tag(:atom, :controller => 'projects', :action => 'activity', :id => @project, :show_wiki_pages => 1, :format => 'atom', :key => User.current.rss_key) %> <% end %> -</div> - |