chris@37:
Chris@1295: <%= watcher_link(@wiki, User.current) %>
chris@37:
chris@37:
chris@37: <%= l(:label_index_by_date) %>
chris@37:
chris@37: <% if @pages.empty? %>
chris@37: <%= l(:label_no_data) %>
chris@37: <% end %>
chris@37:
chris@37: <% @pages_by_date.keys.sort.reverse.each do |date| %>
chris@37: <%= format_date(date) %>
chris@37:
chris@37: <% @pages_by_date[date].each do |page| %>
Chris@909: - <%= link_to h(page.pretty_title), :action => 'show', :id => page.title, :project_id => page.project %>
chris@37: <% end %>
chris@37:
chris@37: <% end %>
chris@37:
chris@37: <% content_for :sidebar do %>
chris@37: <%= render :partial => 'sidebar' %>
chris@37: <% end %>
chris@37:
chris@37: <% unless @pages.empty? %>
chris@37: <% other_formats_links do |f| %>
Chris@909: <%= f.link_to 'Atom', :url => {:controller => 'activities', :action => 'index', :id => @project, :show_wiki_edits => 1, :key => User.current.rss_key} %>
Chris@1115: <% if User.current.allowed_to?(:export_wiki_pages, @project) %>
Chris@1115: <%= f.link_to('PDF', :url => {:action => 'export', :format => 'pdf'}) %>
Chris@1115: <%= f.link_to('HTML', :url => {:action => 'export'}) %>
Chris@1115: <% end %>
chris@37: <% end %>
chris@37: <% end %>
chris@37:
chris@37: <% content_for :header_tags do %>
Chris@441: <%= auto_discovery_link_tag(:atom, :controller => 'activities', :action => 'index', :id => @project, :show_wiki_edits => 1, :format => 'atom', :key => User.current.rss_key) %>
chris@37: <% end %>