2007-12-20 22:10:24 +03:00
|
|
|
<div class="contextual">
|
2010-10-27 20:27:06 +04:00
|
|
|
<%= link_to(l(:button_edit), {:action => 'edit', :id => @page.title}, :class => 'icon icon-edit') %>
|
2011-08-06 04:48:39 +04:00
|
|
|
<%= link_to(l(:label_history),
|
|
|
|
{:action => 'history', :id => @page.title}, :class => 'icon icon-history') %>
|
2007-12-20 22:10:24 +03:00
|
|
|
</div>
|
|
|
|
|
2011-07-04 23:56:38 +04:00
|
|
|
<%= wiki_page_breadcrumb(@page) %>
|
|
|
|
|
|
|
|
<h2><%=h @page.pretty_title %></h2>
|
2007-12-20 22:10:24 +03:00
|
|
|
|
|
|
|
<p>
|
2011-08-06 04:48:39 +04:00
|
|
|
<%= l(:label_version) %> <%= link_to h(@annotate.content.version),
|
2011-11-19 02:24:50 +04:00
|
|
|
:action => 'show', :project_id => @project,
|
|
|
|
:id => @page.title, :version => @annotate.content.version %>
|
2011-08-06 04:48:39 +04:00
|
|
|
<em>(<%= h(@annotate.content.author ?
|
|
|
|
@annotate.content.author.name : l(:label_user_anonymous))
|
|
|
|
%>, <%= format_time(@annotate.content.updated_on) %>)</em>
|
2007-12-20 22:10:24 +03:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<% colors = Hash.new {|k,v| k[v] = (k.size % 12) } %>
|
|
|
|
|
2010-03-14 16:22:50 +03:00
|
|
|
<table class="filecontent annotate">
|
2007-12-20 22:10:24 +03:00
|
|
|
<tbody>
|
|
|
|
<% line_num = 1 %>
|
|
|
|
<% @annotate.lines.each do |line| -%>
|
|
|
|
<tr class="bloc-<%= colors[line[0]] %>">
|
|
|
|
<th class="line-num"><%= line_num %></th>
|
2011-08-06 04:48:39 +04:00
|
|
|
<td class="revision"><%= link_to line[0], :controller => 'wiki',
|
|
|
|
:action => 'show', :project_id => @project,
|
|
|
|
:id => @page.title, :version => line[0] %></td>
|
2007-12-20 22:10:24 +03:00
|
|
|
<td class="author"><%= h(line[1]) %></td>
|
2008-12-23 03:16:26 +03:00
|
|
|
<td class="line-code"><pre><%=h line[2] %></pre></td>
|
2007-12-20 22:10:24 +03:00
|
|
|
</tr>
|
|
|
|
<% line_num += 1 %>
|
|
|
|
<% end -%>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= stylesheet_link_tag 'scm' %>
|
|
|
|
<% end %>
|