##// END OF EJS Templates
Adds custom fields functional tests....
Adds custom fields functional tests. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2268 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2004:79c33bbc838f
r2266:b4640a0904db
Show More
revision.rhtml
57 lines | 1.9 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
Maps repository users to Redmine users (#1383)....
r2004 <span class="author"><%= authoring(@changeset.committed_on, @changeset.author) %></span></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
Render the commit changes list as a tree (#1896)....
r1868 <ul id="changes-legend">
<li class="change change-A"><%= l(:label_added) %></li>
<li class="change change-M"><%= l(:label_modified) %></li>
<li class="change change-C"><%= l(:label_copied) %></li>
<li class="change change-R"><%= l(:label_renamed) %></li>
<li class="change change-D"><%= l(:label_deleted) %></li>
</ul>
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
Render the commit changes list as a tree (#1896)....
r1868
<div class="changeset-changes">
<%= render_changeset_changes %>
</div>
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}") -%>