##// END OF EJS Templates
scm: git: mercurial: add a new feature of revision graph (#5501)...
scm: git: mercurial: add a new feature of revision graph (#5501) Contributed by Jan Topiński. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7725 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7605:5d98eb6ece85
r7605:5d98eb6ece85
Show More
_revisions.html.erb
55 lines | 2.4 KiB | text/plain | TextLexer
Jean-Philippe Lang
Merged Rails 2.1 compatibility branch....
r1609 <% form_tag({:controller => 'repositories', :action => 'diff', :id => @project, :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>
Toshi MARUYAMA
scm: git: mercurial: add a new feature of revision graph (#5501)...
r7605 <% if @repository.supports_revision_graph? %>
<th></th>
<% end %>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 <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: git: mercurial: add a new feature of revision graph (#5501)...
r7605 <% if @repository.supports_revision_graph? %>
<% if line_num == 1 %>
<td class="revision_graph" rowspan="<%= revisions.size %>">
<% href_base = Proc.new {|x| url_for(:controller => 'repositories',
:action => 'revision',
:id => project,
:rev => x) } %>
<%= render :partial => 'revision_graph',
:locals => {
:commits => index_commits(
revisions,
@repository.branches,
href_base
)
} %>
</td>
<% end %>
<% end %>
Toshi MARUYAMA
Changing revision label and identifier at SCM adapter level (#3724, #6092)...
r4493 <td class="id"><%= link_to_revision(changeset, project) %></td>
<td class="checkbox"><%= radio_button_tag('rev', changeset.identifier, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('cbto-#{line_num+1}').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}').checked==true) {$('cb-#{line_num-1}').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
scm: view: add #to_s to changeset.author (#5501)...
r7519 <td class="author"><%= h truncate(changeset.author.to_s, :length => 30) %></td>
Toshi MARUYAMA
scm: git: mercurial: add a new feature of revision graph (#5501)...
r7605 <% if @repository.supports_revision_graph? %>
<td class="comments_nowrap">
<%= textilizable(truncate(truncate_at_line_break(changeset.comments, 0), :length => 90)) %>
</td>
<% else %>
<td class="comments"><%= textilizable(truncate_at_line_break(changeset.comments)) %></td>
<% end %>
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 %>