##// END OF EJS Templates
Don't require category or target version when they are not available (#20583)....
Don't require category or target version when they are not available (#20583). git-svn-id: http://svn.redmine.org/redmine/trunk@14733 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13045:cc688bb1b114
r14351:68620da79ab5
Show More
_revisions.html.erb
51 lines | 2.3 KiB | text/plain | TextLexer
Toshi MARUYAMA
scm: git: mercurial: not show revision graph in sub directory (#5501)...
r7902 <% show_revision_graph = ( @repository.supports_revision_graph? && path.blank? ) %>
Etienne Massip
Moved revision graph holder div out of the table structure....
r8733 <%= if show_revision_graph && revisions && revisions.any?
indexed_commits, graph_space = index_commits(revisions, @repository.branches) do |scmid|
url_for(
:controller => 'repositories',
:action => 'revision',
:id => project,
:repository_id => @repository.identifier_param,
:rev => scmid)
end
render :partial => 'revision_graph',
:locals => {
:commits => indexed_commits,
:space => graph_space
}
end %>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag(
Etienne Massip
Use of local variable for consistency....
r8731 {:controller => 'repositories', :action => 'diff', :id => project,
Toshi MARUYAMA
code layout cleanup app/views/repositories/_revisions.html.erb...
r8583 :repository_id => @repository.identifier_param, :path => to_path_param(path)},
:method => :get
) do %>
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <table class="list changesets">
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 <thead><tr>
<th>#</th>
Jean-Philippe Lang
Added the ability to view a file diff with free to/from revision selection....
r522 <th></th>
<th></th>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 <th><%= l(:label_date) %></th>
Jean-Philippe Lang
Slight modifications on revisions table...
r405 <th><%= l(:field_author) %></th>
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 <th><%= l(:field_comments) %></th>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 </tr></thead>
<tbody>
Jean-Philippe Lang
SCM:...
r2744 <% show_diff = revisions.size > 1 %>
Jean-Philippe Lang
Added the ability to view a file diff with free to/from revision selection....
r522 <% line_num = 1 %>
Jean-Philippe Lang
Fixed: log is not displayed when browsing a copy in a svn repository....
r830 <% revisions.each do |changeset| %>
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <tr class="changeset <%= cycle 'odd', 'even' %>">
Toshi MARUYAMA
scm: fix revision graph left padding...
r9438 <% id_style = (show_revision_graph ? "padding-left:#{(graph_space + 1) * 20}px" : nil) %>
<%= content_tag(:td, :class => 'id', :style => id_style) do %>
<%= link_to_revision(changeset, @repository) %>
<% end %>
Toshi MARUYAMA
Backport r13313 from rails-4.1 to trunk....
r13045 <td class="checkbox"><%= radio_button_tag('rev', changeset.identifier, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('#cbto-#{line_num+1}').prop('checked',true);") if show_diff && (line_num < revisions.size) %></td>
<td class="checkbox"><%= radio_button_tag('rev_to', changeset.identifier, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('#cb-#{line_num}').prop('checked')) {$('#cb-#{line_num-1}').prop('checked',true);}") if show_diff && (line_num > 1) %></td>
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <td class="committed_on"><%= format_time(changeset.committed_on) %></td>
Toshi MARUYAMA
Rails4: replace ActionView::Helpers::TextHelper#truncate by String#truncate at app/views/repositories/_revisions.html.erb...
r12563 <td class="author"><%= changeset.author.to_s.truncate(30) %></td>
Etienne Massip
Integrated revision graph into scmid column....
r8730 <td class="comments"><%= textilizable(truncate_at_line_break(changeset.comments)) %></td>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 </tr>
Jean-Philippe Lang
Added the ability to view a file diff with free to/from revision selection....
r522 <% line_num += 1 %>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 <% end %>
</tbody>
Jean-Philippe Lang
Added the ability to view a file diff with free to/from revision selection....
r522 </table>
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <%= submit_tag(l(:label_view_diff), :name => nil) if show_diff %>
Jean-Philippe Lang
Added the ability to view a file diff with free to/from revision selection....
r522 <% end %>