kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
17 years ago
|
<div class="contextual">
|
||
14 years ago
|
<%= link_to(l(:button_edit), {:action => 'edit', :id => @page.title}, :class => 'icon icon-edit') %>
|
||
|
<%= link_to(l(:label_history), {:action => 'history', :id => @page.title}, :class => 'icon icon-history') %>
|
||
17 years ago
|
</div>
|
||
|
|
||
13 years ago
|
<h2><%= h(@page.pretty_title) %></h2>
|
||
17 years ago
|
|
||
|
<p>
|
||
13 years ago
|
<%= l(:label_version) %> <%= link_to h(@annotate.content.version), :action => 'show', :id => @page.title, :version => @annotate.content.version %>
|
||
13 years ago
|
<em>(<%= h(@annotate.content.author ? @annotate.content.author.name : l(:label_user_anonymous)) %>, <%= format_time(@annotate.content.updated_on) %>)</em>
|
||
17 years ago
|
</p>
|
||
|
|
||
|
<% colors = Hash.new {|k,v| k[v] = (k.size % 12) } %>
|
||
|
|
||
15 years ago
|
<table class="filecontent annotate">
|
||
17 years ago
|
<tbody>
|
||
|
<% line_num = 1 %>
|
||
|
<% @annotate.lines.each do |line| -%>
|
||
|
<tr class="bloc-<%= colors[line[0]] %>">
|
||
|
<th class="line-num"><%= line_num %></th>
|
||
14 years ago
|
<td class="revision"><%= link_to line[0], :controller => 'wiki', :action => 'show', :project_id => @project, :id => @page.title, :version => line[0] %></td>
|
||
17 years ago
|
<td class="author"><%= h(line[1]) %></td>
|
||
16 years ago
|
<td class="line-code"><pre><%=h line[2] %></pre></td>
|
||
17 years ago
|
</tr>
|
||
|
<% line_num += 1 %>
|
||
|
<% end -%>
|
||
|
</tbody>
|
||
|
</table>
|