comparison .svn/pristine/d7/d71b9b00f65094cf8529cb2de333f24542a6b92b.svn-base @ 1298:4f746d8966dd redmine_2.3_integration

Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author Chris Cannam
date Fri, 14 Jun 2013 09:28:30 +0100
parents 622f24f53b42
children
comparison
equal deleted inserted replaced
1297:0a574315af3e 1298:4f746d8966dd
1 <div class="contextual">
2 <%= watcher_link(@wiki, User.current) %>
3 </div>
4
5 <h2><%= l(:label_index_by_title) %></h2>
6
7 <% if @pages.empty? %>
8 <p class="nodata"><%= l(:label_no_data) %></p>
9 <% end %>
10
11 <%= render_page_hierarchy(@pages_by_parent_id, nil, :timestamp => true) %>
12
13 <% content_for :sidebar do %>
14 <%= render :partial => 'sidebar' %>
15 <% end %>
16
17 <% unless @pages.empty? %>
18 <% other_formats_links do |f| %>
19 <%= f.link_to 'Atom',
20 :url => {:controller => 'activities', :action => 'index',
21 :id => @project, :show_wiki_edits => 1,
22 :key => User.current.rss_key} %>
23 <% if User.current.allowed_to?(:export_wiki_pages, @project) %>
24 <%= f.link_to('PDF', :url => {:action => 'export', :format => 'pdf'}) %>
25 <%= f.link_to('HTML', :url => {:action => 'export'}) %>
26 <% end %>
27 <% end %>
28 <% end %>
29
30 <% content_for :header_tags do %>
31 <%= auto_discovery_link_tag(
32 :atom, :controller => 'activities', :action => 'index',
33 :id => @project, :show_wiki_edits => 1, :format => 'atom',
34 :key => User.current.rss_key) %>
35 <% end %>