##// END OF EJS Templates
Adds checkboxes toggle links on permissions report....
Adds checkboxes toggle links on permissions report. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1770 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1634:de3d5a88e4c7
r1769:6ad989f82887
Show More
revision.rhtml
71 lines | 2.6 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="contextual">
Jean-Philippe Lang
* Added links to previous and next revisions on revision view (patch by Cyril Mougel slightly edited)...
r925 &#171;
<% unless @changeset.previous.nil? -%>
<%= link_to l(:label_previous), :controller => 'repositories', :action => 'revision', :id => @project, :rev => @changeset.previous.revision %>
<% else -%>
<%= l(:label_previous) %>
<% end -%>
|
<% unless @changeset.next.nil? -%>
<%= link_to l(:label_next), :controller => 'repositories', :action => 'revision', :id => @project, :rev => @changeset.next.revision %>
<% else -%>
<%= l(:label_next) %>
<% end -%>
&#187;&nbsp;
Jean-Philippe Lang
Fixes quick jump to a revision....
r1597 <% form_tag({:controller => 'repositories', :action => 'revision', :id => @project, :rev => nil}, :method => :get) do %>
Jean-Philippe Lang
* Added links to previous and next revisions on revision view (patch by Cyril Mougel slightly edited)...
r925 <%= text_field_tag 'rev', @rev, :size => 5 %>
Jean-Philippe Lang
Fixes quick jump to a revision....
r1597 <%= submit_tag 'OK', :name => nil %>
Jean-Philippe Lang
* Added links to previous and next revisions on revision view (patch by Cyril Mougel slightly edited)...
r925 <% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
Jean-Philippe Lang
Merged Git support branch (r1200 to r1226)....
r1222 <h2><%= l(:label_revision) %> <%= format_revision(@changeset.revision) %></h2>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556 <p><% if @changeset.scmid %>ID: <%= @changeset.scmid %><br /><% end %>
Jean-Philippe Lang
Strip out email address from authors in repository screens (#814)....
r1194 <em><%= @changeset.committer.to_s.split('<').first %>, <%= format_time(@changeset.committed_on) %></em></p>
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 <%= textilizable @changeset.comments %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470 <% if @changeset.issues.any? %>
<h3><%= l(:label_related_issues) %></h3>
<ul>
<% @changeset.issues.each do |issue| %>
<li><%= link_to_issue issue %>: <%=h issue.subject %></li>
<% end %>
</ul>
<% end %>
Jean-Philippe Lang
Added a link on revision screen to see the entire diff for the revision....
r480 <h3><%= l(:label_attachment_plural) %></h3>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div style="float:right;">
<div class="square action_A"></div> <div style="float:left;"><%= l(:label_added) %>&nbsp;</div>
<div class="square action_M"></div> <div style="float:left;"><%= l(:label_modified) %>&nbsp;</div>
<div class="square action_D"></div> <div style="float:left;"><%= l(:label_deleted) %>&nbsp;</div>
</div>
Jean-Philippe Lang
Added a link on revision screen to see the entire diff for the revision....
r480 <p><%= link_to(l(:label_view_diff), :action => 'diff', :id => @project, :path => "", :rev => @changeset.revision) if @changeset.changes.any? %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <table class="list">
<tbody>
Jean-Philippe Lang
Fixed: performance issue on RepositoriesController#revisions when a changeset has a great number of changes (eg. 100,000)....
r532 <% @changes.each do |change| %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <tr class="<%= cycle 'odd', 'even' %>">
Jean-Philippe Lang
Makes changes link to entries on the revision view....
r1538 <td><div class="square action_<%= change.action %>"></div>
Jean-Philippe Lang
Revision view: do not display links for deleted files....
r1560 <% if change.action == "D" -%>
<%= change.path -%>
<% else -%>
Jean-Philippe Lang
Fixes links to entries on the revision view (Rails 2.1 compatibility) (#1600)....
r1634 <%= link_to change.path, :action => 'entry', :id => @project, :path => to_path_param(change.relative_path), :rev => @changeset.revision -%>
Jean-Philippe Lang
Revision view: do not display links for deleted files....
r1560 <% end -%>
Jean-Philippe Lang
Makes changes link to entries on the revision view....
r1538 <%= "(#{change.revision})" unless change.revision.blank? %></td>
Jean-Philippe Lang
removed hard coded strings in views...
r388 <td align="right">
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 <% if change.action == "M" %>
Jean-Philippe Lang
Merged Rails 2.1 compatibility branch....
r1609 <%= link_to l(:label_view_diff), :action => 'diff', :id => @project, :path => to_path_param(change.relative_path), :rev => @changeset.revision %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
</td>
</tr>
<% end %>
</tbody>
</table>
Jean-Philippe Lang
New setting added to specify how many objects should be displayed on most paginated lists....
r1013 <p class="pagination"><%= pagination_links_full @changes_pages %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<% content_for :header_tags do %>
<%= stylesheet_link_tag "scm" %>
Jean-Philippe Lang
Fixed: performance issue on RepositoriesController#revisions when a changeset has a great number of changes (eg. 100,000)....
r532 <% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title("#{l(:label_revision)} #{@changeset.revision}") -%>