diff options
Diffstat (limited to 'app/views/repositories/revisions.rhtml')
-rw-r--r-- | app/views/repositories/revisions.rhtml | 80 |
1 files changed, 40 insertions, 40 deletions
diff --git a/app/views/repositories/revisions.rhtml b/app/views/repositories/revisions.rhtml index bc5a192b2..8e300a9da 100644 --- a/app/views/repositories/revisions.rhtml +++ b/app/views/repositories/revisions.rhtml @@ -1,41 +1,41 @@ -<div class="contextual">
-<% form_tag do %>
-<p><%= l(:label_revision) %>: <%= text_field_tag 'rev', @rev, :size => 5 %>
-<%= submit_tag 'OK' %></p>
-<% end %>
-</div>
-
-<h2><%= render :partial => 'navigation', :locals => { :path => @path, :kind => @entry.kind, :revision => @rev } %></h2>
-
-<% if @entry.is_file? %>
-<h3><%=h @entry.name %></h3>
-<p><%= link_to 'Download', {:action => 'entry', :id => @project, :path => @path, :rev => @rev, :format => 'raw' }, :class => "icon file" %> (<%= number_to_human_size @entry.size %>)</p>
-<% end %>
-
-<h3>Revisions</h3>
-
-<table class="list">
-<thead><tr>
-<th>#</th>
-<th><%= l(:field_author) %></th>
-<th><%= l(:label_date) %></th>
-<th><%= l(:field_description) %></th>
-<th></th>
-</tr></thead>
-<tbody>
-<% @revisions.each do |revision| %>
-<tr class="<%= cycle 'odd', 'even' %>">
-<th align="center"><%= link_to revision.identifier, :action => 'revision', :id => @project, :rev => revision.identifier %></th>
-<td align="center"><em><%=h revision.author %></em></td>
-<td align="center"><%= format_time(revision.time) %></td>
-<td style="width:70%"><%= textilizable(revision.message) %></td>
-<td align="center"><%= link_to 'Diff', :action => 'diff', :id => @project, :path => @path, :rev => revision.identifier if @entry.is_file? && revision != @revisions.last %></td>
-</tr>
-<% end %>
-</tbody>
-</table>
-<p><%= lwr(:label_modification, @revisions.length) %></p>
-
-<% content_for :header_tags do %>
-<%= stylesheet_link_tag "scm" %>
+<div class="contextual"> +<% form_tag do %> +<p><%= l(:label_revision) %>: <%= text_field_tag 'rev', @rev, :size => 5 %> +<%= submit_tag 'OK' %></p> +<% end %> +</div> + +<h2><%= render :partial => 'navigation', :locals => { :path => @path, :kind => @entry.kind, :revision => @rev } %></h2> + +<% if @entry.is_file? %> +<h3><%=h @entry.name %></h3> +<p><%= link_to 'Download', {:action => 'entry', :id => @project, :path => @path, :rev => @rev, :format => 'raw' }, :class => "icon file" %> (<%= number_to_human_size @entry.size %>)</p> +<% end %> + +<h3>Revisions</h3> + +<table class="list"> +<thead><tr> +<th>#</th> +<th><%= l(:field_author) %></th> +<th><%= l(:label_date) %></th> +<th><%= l(:field_description) %></th> +<th></th> +</tr></thead> +<tbody> +<% @revisions.each do |revision| %> +<tr class="<%= cycle 'odd', 'even' %>"> +<th align="center"><%= link_to revision.identifier, :action => 'revision', :id => @project, :rev => revision.identifier %></th> +<td align="center"><em><%=h revision.author %></em></td> +<td align="center"><%= format_time(revision.time) %></td> +<td style="width:70%"><%= textilizable(revision.message) %></td> +<td align="center"><%= link_to 'Diff', :action => 'diff', :id => @project, :path => @path, :rev => revision.identifier if @entry.is_file? && revision != @revisions.last %></td> +</tr> +<% end %> +</tbody> +</table> +<p><%= lwr(:label_modification, @revisions.length) %></p> + +<% content_for :header_tags do %> +<%= stylesheet_link_tag "scm" %> <% end %>
\ No newline at end of file |